-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 951 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
38
39
40
41
{
"name": "openk9",
"version": "0.0.1",
"private": true,
"devDependencies": {
"husky": "^4.2.3",
"lerna": "^3.20.2",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.5.1"
},
"scripts": {
"build": "lerna run build && lerna run --stream build",
"docker-build": "lerna run --stream docker-build",
"publish": "lerna publish",
"format": "lerna run --stream format",
"lint": "lerna run --stream lint",
"test": "lerna run --stream test",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
},
"workspaces": {
"packages": [
"js-packages/*",
"plugins/**/js"
],
"nohoist": [
"**/react-scripts/**",
"**/@docusaurus/core/**",
"**/babel-loader",
"**/webpack",
"**/craco",
"**/react",
"**/react-router-dom"
]
}
}