-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 857 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
{
"private": true,
"name": "dumi-app",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"clean": "rimraf dist",
"commit": "git-cz"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^1.0.12",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"yorkie": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}