-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
71 lines (71 loc) · 1.64 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
{
"name": "im-server",
"version": "1.0.0",
"description": "im",
"private": true,
"egg": {
"declarations": true
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-im-server --sticky",
"stop": "egg-scripts stop --title=egg-server-im-server",
"dev": "egg-bin dev --sticky",
"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",
"cz": "git-cz"
},
"dependencies": {
"axios": "^0.21.1",
"egg": "^2.26.0",
"egg-bin": "^4.14.1",
"egg-passport": "^2.1.1",
"egg-passport-github": "^1.0.0",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.13.0",
"egg-sequelize": "^5.2.1",
"egg-socket.io": "^4.1.6",
"egg-validate": "^2.0.2",
"mysql2": "^3.9.8",
"nodemailer": "^6.4.16"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"autod": "^3.1.0",
"autod-egg": "^1.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"egg-ci": "^1.13.0",
"egg-mock": "^3.23.2",
"eslint": "^5.13.0",
"eslint-config-egg": "^7.5.1",
"husky": "^3.0.9"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=10.0.0"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": ""
},
"author": "hezf",
"license": "MIT"
}