-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 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
{
"name": "koa2-API-template",
"version": "1.3.0",
"description": "Koa2 RESTful API 服务",
"author": "yzijun",
"scripts": {
"start": "gulp nodemon",
"dev": "gulp",
"build": "babel src -d dist",
"production": "node dist/app.js"
},
"dependencies": {
"collect.js": "^3.0.47",
"jsonwebtoken": "^7.4.1",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-compose": "^4.0.0",
"koa-jwt": "^3.2.2",
"koa-router": "^7.2.1",
"koa-static2": "^0.1.8",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.18.1",
"mysql2": "^1.3.6",
"nodemailer": "^4.0.1",
"redis": "^2.7.1",
"require-directory": "^2.1.1",
"sequelize": "^4.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^3.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-nodemon": "^2.2.1",
"koa-logger": "^3.0.1"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}