-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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
{
"name": "admin-back-end",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"scripts": {
"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",
"dbinit": "egg-sequelize-auto -o ./app/model_mysql -h 127.0.0.1 -p 3306 -d dbname -u root -x 'yourpwd' -i 'modelMysql' -C -t "
},
"dependencies": {
"crypto": "^1.0.1",
"egg": "^2.28.0",
"egg-bcrypt": "^1.1.0",
"egg-mysql": "^3.0.0",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.13.0",
"egg-sequelize": "^6.0.0",
"egg-sequelize-auto": "git+https://github.com/hezongkun/egg-sequelize-auto.git",
"egg-swagger-doc": "^2.3.2",
"egg-validate": "^2.0.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5"
},
"devDependencies": {
"autod": "^3.1.0",
"autod-egg": "^1.1.0",
"egg-bin": "^4.15.0",
"egg-ci": "^1.18.0",
"egg-mock": "^4.0.1",
"eslint": "^7.11.0",
"eslint-config-egg": "^8.1.2",
"sequelize-cli": "^6.2.0"
},
"engines": {
"node": ">=10.0.0"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": ""
},
"author": "hezongkun@qq.com",
"license": "MIT"
}