-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 865 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
{
"name": "blog-of-fbb",
"version": "0.0.1",
"description": "Welcome to FBB's blog,have something you need",
"scripts": {
"start": "npm run dev",
"dev": "dumi dev",
"build": "dumi build",
"prepare": "husky install && dumi setup",
"deploy": "dumi build && gh-pages -d dist"
},
"authors": [],
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/git-cz"
}
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^16.2.1",
"dumi": "^2.2.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"dependencies": {
"git-cz": "^4.9.0"
}
}