forked from elastic/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 967 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
{
"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": "prettier --write \"packages/*/src/**/*.js\"",
"lint": "packages/node_modules/eslint/bin/eslint.js \"packages/*/src/**/*.js\"",
"changed": "lerna changed",
"sandbox": "cd examples/sandbox && npm start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/src/**/*.js": [
"prettier --write",
"packages/node_modules/eslint/bin/eslint.js",
"git add"
]
},
"devDependencies": {
"husky": "^1.3.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.0",
"prettier": "1.18.2"
}
}