-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "mvp-server-template",
"version": "1.0.0",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"egg": "^3.17.7",
"egg-cookies": "^2.9.4",
"egg-cors": "^3.0.0",
"egg-jwt": "^3.1.7",
"egg-security": "^3.2.0",
"egg-sequelize": "^6.0.0",
"egg-session": "^3.3.0",
"egg-validate": "^2.0.2",
"koa-json-error": "^3.1.2",
"lodash": "^4.17.21",
"mysql2": "^3.7.1",
"node-xlsx": "^0.21.2",
"pg": "^8.11.3",
"sequelize": "^6.35.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"egg-bin": "^5.14.2",
"egg-ci": "^2.2.0",
"egg-mock": "^5.10.9",
"egg-scripts": "^2.17.0",
"eslint": "^8.56.0",
"eslint-config-egg": "^12.3.1"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=mvp-server --port=7058",
"stop": "egg-scripts stop --title=mvp-server",
"dev": "egg-bin dev --port=7058",
"debug": "egg-bin debug",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"lint": "eslint ."
},
"ci": {
"version": "8"
},
"eslintIgnore": [
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": ""
},
"files": [
"lib",
"index.js"
],
"author": "",
"private": true
}