-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 997 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 997 Bytes
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
{
"private": true,
"author": "kaiyu.kong",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "npm run dev",
"dev": "dumi dev",
"build": "dumi build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"pub": "lerna publish",
"commit": "cz"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^2.2.0",
"lerna": "^6.6.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.7",
"yorkie": "^2.0.0"
},
"gitHooks": {
"commit-msg": "commitlint -E GIT_PARAMS"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
]
}
}