-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "electron-starter",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/electron-builder",
"**/electron-builder/**"
]
},
"lint-staged": {
"**/src/**/**.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"build": "lerna run build --stream --ignore utils-*",
"preelectron": "yarn build",
"electron": "lerna run electron --scope app-main",
"lint": "lerna run lint --parallel --stream --ignore utils-*",
"prepackage": "yarn build",
"package": "lerna run package --scope app-main --stream",
"postinstall": "husky install",
"start": "concurrently \"yarn --cwd packages/app-renderer start\" \"yarn --cwd packages/app-preload start\" \"yarn --cwd packages/app-main start\"",
"test": "lerna run test --parallel"
},
"engines": {
"yarn": "^1.22.10"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@types/node": "^14.14.31",
"concurrently": "^6.0.2",
"husky": "^5.1.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4"
}
}