-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 KB
/
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": "kunzite",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^8.0.0",
"lerna": "^6.1.0",
"lint-staged": "^13.1.0"
},
"scripts": {
"start": "yarn start-desktop",
"start-desktop": "lerna run web --scope @kunzite/008 & lerna run start --scope 008desktop",
"build-web": "lerna run build-web",
"build-desktop": "IS_ELECTRON=yes lerna run build-web && rm -rf packages/008desktop/app && mv packages/008/web-build packages/008desktop/app && cp -R packages/008desktop/app/static/ packages/008desktop/app/static2/ && mv packages/008desktop/app/static2 packages/008desktop/app/static/js/static && lerna run build --scope 008desktop",
"clean": "lerna clean",
"prepare": "husky install",
"lint": "lerna run lint",
"e2e": "lerna run e2e --scope @kunzite/008"
},
"lint-staged": {
"**/*.{js}": [
"lerna run lint -- --fix --quiet",
"lerna run format -- --write ."
],
"**/*.{json,md,yaml,yml}": [
"lerna run format -- --write ."
]
}
}