-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
32
33
34
35
36
37
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"commit": "cz",
"start:server": "yarn workspace @codesy/server run start",
"start:web": "yarn workspace @codesy/web run dev",
"start:ui": "yarn workspace @codesy/ui run storybook",
"build:server": "lerna run build --scope={@codesy/common,@codesy/server}",
"build:web": "lerna run build --scope={@codesy/common,@codesy/web}",
"build:ui": "yarn workspace @codesy/ui run build-storybook",
"clear": "rm -rf ./node_modules && rm -rf rm -rf ./packages/**/node_modules && rm -rf ./packages/**/dist"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"lerna": "3.10.7",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"yarn prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": "global"
}
}
}