-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1 KB
/
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
38
39
40
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna run build",
"start-storybook": "cd stories && npm run start",
"build-storybook": "cd stories && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,webpack}/**/*.{js,ts,tsx,json,css,md}": [
"prettier --config ./.prettierrc --write",
"git add"
],
"src/**/*.{ts,tsx}": [
"tslint --project ./tsconfig.json --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"husky": "^2.4.1",
"lerna": "^3.15.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"tslint": "^5.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2"
}
}