-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "micromall",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"start": "EGG_SERVER_ENV=prod egg-scripts start --daemon --title=micromall-server-egg",
"stop": "egg-scripts stop --title=micromall-server-egg",
"dev": "EGG_SERVER_ENV=local 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 .",
"prettier": "prettier --write .",
"ci": "cross-env EGG_SERVER_ENV=dev && npm run lint && npm run cov",
"autod": "autod"
},
"ci": {
"version": "10"
},
"dependencies": {
"ali-oss": "^6.11.2",
"bluebird": "^3.7.2",
"decimal.js": "^10.2.1",
"egg": "^2.15.1",
"egg-ajv": "^1.0.1",
"egg-alinode": "^2.0.1",
"egg-cors": "^2.2.3",
"egg-jwt": "^3.1.7",
"egg-mp": "^1.0.21",
"egg-onerror": "^2.1.0",
"egg-redis": "^2.4.0",
"egg-router-plus": "^1.3.1",
"egg-scripts": "^2.13.0",
"egg-sequelize": "^6.0.0",
"js-md5": "^0.7.3",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"multiparty": "^4.2.2",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"request": "^2.88.2",
"uuid": "^8.3.1",
"validator": "^13.5.1",
"xml2json": "^0.12.0"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"cross-env": "^7.0.2",
"egg-bin": "^4.15.0",
"egg-ci": "^1.11.0",
"egg-mock": "^4.0.1",
"eslint": "^7.14.0",
"eslint-config-egg": "^9.0.0",
"eslint-config-prettier": "^6.15.0",
"factory-girl": "^5.0.4",
"husky": "^5.0.4",
"prettier": "^2.2.1",
"sequelize-cli": "^6.2.0"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "MIT"
}