-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 860 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"./packages/*"
],
"scripts": {
"start": "npx lerna run start",
"build": "npx lerna run build",
"test": "npx lerna run test",
"publish": "yarn build && yarn lerna publish",
"commit": "npm run git-cz",
"build:storybook": "yarn build && yarn lerna run build-storybook"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"lerna": "^4.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"prettier": "^2.4.1"
}
}