-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 919 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
{
"name": "root",
"private": true,
"scripts": {
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf ./**/package-lock.json && npx lerna clean --yes",
"hoist": "npx lerna bootstrap --hoist --nohoist natural",
"postinstall": "npm run hoist",
"test": "lerna run test --concurrency=1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"commitizen": "3.1.0",
"cz-emoji": "1.1.2",
"eslint": "5.16.0",
"eslint-config-prettier": "4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-const-immutable": "^2.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "4.0.0",
"lerna": "^3.14.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.3"
}
}