-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
{
"name": "ChargeAccount",
"version": "1.0.0",
"description": "account money",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"egg": "^3",
"egg-cors": "^2.2.3",
"egg-jwt": "^3.1.7",
"egg-mysql": "^3.2.0",
"egg-scripts": "^2",
"egg-view-ejs": "^3.0.0",
"mkdirp": "^1.0.4",
"moment": "^2.29.4"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cz-customizable": "^7.0.0",
"egg-bin": "^5",
"egg-ci": "^2",
"egg-mock": "^5",
"eslint": "^8",
"eslint-config-egg": "^12",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"npm run lint"
]
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-ChargeAccount",
"stop": "egg-scripts stop --title=egg-server-ChargeAccount",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"commit": "git add . && cz-customizable",
"prepare": "husky install"
},
"ci": {
"version": "16, 18",
"type": "github"
},
"repository": {
"type": "git",
"url": ""
},
"author": "zyh",
"license": "MIT"
}