-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "node-server",
"version": "2.2.3",
"description": "",
"private": true,
"dependencies": {
"akismet-api": "^4.2.0",
"ali-oss": "^6.0.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"egg": "^2.14.1",
"egg-alinode-async": "^2.1.2",
"egg-console": "^2.0.1",
"egg-cors": "^2.1.0",
"egg-mongoose": "^3.1.0",
"egg-redis": "^2.0.0",
"egg-router-plus": "^1.2.2",
"egg-scripts": "^2.5.0",
"egg-sentry": "^1.0.0",
"egg-validate": "^1.1.1",
"email-templates": "^5.0.1",
"geoip-lite": "^1.3.2",
"gravatar": "^1.6.0",
"highlight.js": "^9.12.0",
"jsonwebtoken": "^8.3.0",
"koa-compose": "^4.1.0",
"koa-is-json": "^1.0.0",
"lodash": "^4.17.10",
"marked": "^0.5.0",
"merge": "^1.2.0",
"moment": "^2.22.2",
"mongoose": "5.2.8",
"mongoose-paginate-v2": "^1.0.12",
"nodemailer": "^4.6.8",
"pug": "^2.0.3",
"simple-netease-cloud-music": "^0.4.0",
"validator": "^10.6.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.0.0",
"egg-bin": "^4.3.5",
"egg-ci": "^1.8.0",
"egg-mock": "^3.14.0",
"eslint": "^4.11.0",
"eslint-config-egg": "^6.0.0",
"pre-git": "^3.17.1",
"release-it": "^7.6.1",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=node-server",
"stop": "egg-scripts stop --title=node-server",
"docker": "egg-scripts start --title=node-server",
"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 . --fix",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"rc": "release-it",
"commit": "commit-wizard"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": "[email protected]:jo0ger/node-server.git"
},
"author": {
"name": "jo0ger",
"email": "[email protected]",
"url": "https://jooger.me"
},
"license": "MIT",
"release": {
"analyzeCommits": "simple-commit-message"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"yarn lint"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}