-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@cakev/server",
"version": "0.0.1-beta.1",
"scripts": {
"start": "egg-scripts start --daemon --title=cakev-server",
"doc": "apidoc -i app -o apidoc -c apidoc.json",
"stop": "egg-scripts stop --title=cakev-server",
"dev": "egg-bin dev",
"commit": "git add . && git cz"
},
"dependencies": {
"@jinka/egg-access": "0.0.1-alpha.2",
"@jinka/egg-api-doc": "0.0.1-alpha.1",
"egg": "^2.35.0",
"egg-mongoose": "^3.3.1",
"egg-scripts": "^2.17.0",
"koa-compress": "^5.1.0",
"mz-modules": "^2.1.0",
"pinyin4js": "^1.3.18",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"apidoc": "^0.51.1",
"autod": "^3.1.2",
"autod-egg": "^1.1.0",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"egg-bin": "^4.19.0",
"egg-ci": "^1.19.0",
"egg-mock": "^3.26.0",
"eslint": "^7.32.0",
"eslint-config-egg": "^7.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"git-cz": "^4.9.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.6.2"
},
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*.{vue,ts,js}": "eslint --fix",
"*.{js,jsx,ts,tsx,html,css,vue,less,scss}": "prettier --plugin-search-dir ./node_modules --write"
}
}