-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "dingtalk-robot",
"version": "1.8.1",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"axios": "^0.21.1",
"bufferhelper": "^0.2.1",
"cheerio": "^1.0.0-rc.10",
"egg": "^2.15.1",
"egg-cors": "^2.2.3",
"egg-scripts": "^2.11.0",
"egg-view-nunjucks": "^2.2.0",
"iconv-lite": "^0.6.3",
"mysql2": "^2.2.5",
"request": "^2.88.2",
"sequelize": "^6.6.2",
"sequelize-auto": "^0.8.3"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"cz-conventional-changelog": "^3.3.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"eslint": "^5.13.0",
"eslint-config-egg": "^7.1.0"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-eggjs",
"stop": "egg-scripts stop --title=egg-server-eggjs",
"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",
"deploy": "bash scripts/deploy.sh",
"models": "node app/utils/sequelize-auto/index.js",
"release": "standard-version"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": ""
},
"author": "liuxy0551",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}