-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@ds.e/core",
"version": "1.0.0",
"main": "index.js",
"author": "Frantz Kati <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"lerna": "^3.22.1"
},
"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"
}
}
}