-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·37 lines (37 loc) · 896 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "datalith",
"description": "Collection of React components to build cool data visualizations",
"version": "0.0.1",
"private": true,
"author": "Luca Falasco",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"postinstall": "yarn bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna exec -- yarn build",
"build-storybook": "cd packages/datalith-storybook && yarn build-storybook",
"start": "cd packages/datalith-storybook && yarn storybook",
"format": "prettier --write 'packages/*/src/**/{*.js,*.ts*,*.md}'"
},
"devDependencies": {
"husky": "^4.0.6",
"lerna": "^3.13.2",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts*": [
"prettier --write",
"git add"
]
}
}