-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "koa2-API-scaffold",
"version": "1.0.0",
"description": "Koa2 RESTful API 服务器的脚手架",
"author": "轶哥 <[email protected]>",
"scripts": {
"start": "gulp nodemon",
"dev": "gulp",
"build": "babel src -d dist",
"production": "node dist/app.js"
},
"dependencies": {
"bcrypt": "^1.0.3",
"jsonwebtoken": "^8.1.0",
"koa": "^2.3.0",
"koa-body": "^2.5.0",
"koa-compose": "^4.0.0",
"koa-jwt": "^3.2.2",
"koa-router": "^7.2.1",
"koa-static2": "^0.1.8",
"mysql2": "^1.5.3",
"nodemailer": "^4.3.0",
"process": "^0.11.10",
"promise-mysql": "^3.1.1",
"require-directory": "^2.1.1",
"sequelize": "^4.16.1",
"shortid": "^2.2.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-nodemon": "^2.2.1",
"koa-logger": "^3.1.0"
},
"engines": {
"node": ">= 7.8.0",
"npm": ">= 4.2.0"
}
}