-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1001 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
39
40
41
42
43
{
"name": "@ds.a/core",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"lerna": "^4.0.0"
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"playgrounds/*"
],
"nohoist": [
"**/normalize-scss"
]
},
"scripts": {
"build": "yarn lerna run build",
"dev": "yarn lerna run dev",
"test": "yarn lerna run test ",
"publish": "yarn test && yarn build && yarn lerna publish",
"commit": "yarn git-cz",
"test:chromatic": "yarn lerna run test:chromatic",
"build:storybook": "yarn build && yarn lerna run build-storybook"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}