-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
45
46
47
{
"name": "xiaosi_blog",
"version": "2.2.1",
"description": "",
"workspaces": [
"admin",
"blog",
"service"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run dev:admin & npm run dev:service & npm run dev:blog",
"dev:admin": "cd admin && npm run dev",
"dev:service": "cd service && npm run dev",
"dev:blog": "cd blog && npm run dev",
"commit": "git-cz",
"log": "conventional-changelog -p cmyr-config -i CHANGELOG.md -s -r 0",
"lint:admin": "cd admin && npm run lint:staged && npm run lint:pretty",
"lint:blog": "cd blog && npm run lint",
"lint:service": "cd service && npm run lint",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"husky": "^8.0.0",
"only-allow": "^1.1.1"
},
"author": "",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"engines": {
"node": ">= 16"
}
}