forked from elastic/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1023 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": "root",
"private": true,
"license": "Apache-2.0",
"scripts": {
"postinstall": "cd packages && npm install && cd .. && lerna bootstrap --no-ci",
"test": "lerna run test --stream --no-private",
"test-ci": "lerna run test-ci --stream --no-private",
"watch": "lerna run watch --parallel",
"build": "lerna run build --parallel --no-private",
"format": "packages/node_modules/eslint/bin/eslint.js --fix \"packages/*/src/**/*.js\"",
"lint": "packages/node_modules/eslint/bin/eslint.js \"packages/*/src/**/*.js\"",
"changed": "lerna changed",
"sandbox": "./bin/sandbox"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/src/**/*.js": [
"packages/node_modules/eslint/bin/eslint.js --fix",
"git add"
]
},
"devDependencies": {
"husky": "^1.3.0",
"lerna": "^4.0.0",
"lint-staged": "^9.2.0",
"prettier": "1.18.2"
},
"engines": {
"node": "14.17.0",
"npm": "^6.14.6"
}
}