-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "node-egg-study",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"bcryptjs": "^2.4.3",
"egg": "^3.17.5",
"egg-cors": "^3.0.0",
"egg-jwt": "^3.1.7",
"egg-mysql": "^4.0.0",
"egg-scripts": "2",
"egg-sequelize": "^6.0.0",
"egg-swagger-doc": "^2.3.2",
"egg-validate": "^2.0.2",
"moment": "^2.30.1",
"mysql2": "^3.7.1",
"node-jsencrypt": "^1.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"egg-bin": "6",
"egg-mock": "5",
"eslint": "8",
"eslint-config-egg": "13",
"sequelize-cli": "^6.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-node-egg-study",
"stop": "egg-scripts stop --title=egg-server-node-egg-study",
"dev": "egg-bin dev --port=3000",
"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"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "MIT"
}