-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "qiuzi-hospital-server",
"version": "0.0.1",
"description": "The node server for hospital clients, as my graduation design.",
"author": "qiuzi <[email protected]>",
"license": "MIT",
"egg": {
"declarations": true
},
"dependencies": {
"dayjs": "^1.11.13",
"egg": "^3.28.0",
"egg-jwt": "^3.1.7",
"egg-oss": "^3.1.0",
"egg-scripts": "^3.0.1",
"egg-sequelize": "^6.0.0",
"egg-validate": "^2.0.2",
"mysql2": "^3.11.3",
"utility": "^1.18.0"
},
"devDependencies": {
"autod": "^3.1.2",
"autod-egg": "^1.1.0",
"egg-bin": "^6.10.0",
"egg-ci": "^2.0.0",
"egg-mock": "^5.12.5",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0"
},
"engines": {
"node": ">=16.19.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-qiuzi-hospital-server",
"stop": "egg-scripts stop --title=egg-server-qiuzi-hospital-server",
"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",
"autod": "autod"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": "https://github.com/qiuziGirl/qiuzi-hospital-server"
}
}