forked from remoteinterview/zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 806 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",
"bootstrap": "cd packages/core && npm link && cd ../.. && lerna bootstrap",
"example": "zero example",
"exampletest": "zero test/www",
"test": "jest --maxWorkers 2 --verbose false"
},
"devDependencies": {
"@mdx-js/parcel-plugin-mdx": "^0.20.1",
"@mdx-js/tag": "^0.13.1-1",
"cheerio": "^1.0.0-rc.2",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.3",
"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"
]
}
}