forked from remoteinterview/zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 811 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
{
"name": "zero",
"private": true,
"scripts": {
"lerna": "lerna",
"jest": "jest",
"bootstrap": "cd packages/core && npm link && cd ../.. && lerna bootstrap",
"publish-beta": "lerna publish --dist-tag beta",
"publish-stable": "lerna publish --force-publish *",
"test": "jest --verbose false --runInBand"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"del": "^3.0.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"mkdirp": "^0.5.1",
"prettier": "^1.16.4",
"request-promise-native": "^1.0.5",
"wait-port": "^0.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,jsx}": [
"prettier --write",
"git add"
]
}
}