forked from zidoro/pomatez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "root",
"private": true,
"workspaces": [
"app/*",
"website"
],
"scripts": {
"commit": "git-cz",
"sync": "lerna bootstrap",
"dev:renderer": "lerna run dev:renderer --stream",
"dev:main": "lerna run dev:main --stream",
"dev:app": "lerna run start --parallel --stream --ignore '@pomatez/website'",
"prebuild": "lerna run prepare --stream --ignore '@pomatez/website'",
"build": "lerna run build --parallel --stream --ignore '@pomatez/website'",
"build:mwl": "yarn build && lerna run build:mwl --stream",
"build:dir": "yarn build && lerna run build:dir --stream",
"build:win": "yarn build && lerna run build:win --stream",
"build:mac": "yarn build && lerna run build:mac --stream",
"build:linux": "yarn build && lerna run build:linux --stream",
"build:snap": "yarn build && lerna run build:snap --stream",
"release:mw": "yarn build && lerna run release:mw --stream",
"release": "yarn build && lerna run release --stream",
"clean": "lerna exec -- rimraf build/ dist/",
"gen:tts": "lerna run gen:tts --stream",
"dev:site": "lerna run dev --stream --scope '@pomatez/website'",
"build:site": "lerna run build --stream --scope '@pomatez/website'",
"deploy:site": "lerna run deploy --stream --scope '@pomatez/website'",
"clean:site": "lerna run clean --scope '@pomatez/website'"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^1.0.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.13",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7",
"wait-on": "^5.0.0"
}
}