forked from yi-ge/Koa2-API-Scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"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": {
"koa": "^2.0.0",
"koa-body": "^2.0.0",
"koa-compose": "^3.2.1",
"koa-router": "^7.0.1",
"koa-session2": "^1.0.8",
"koa-static2": "^0.1.8",
"mysql": "^2.12.0",
"nodemailer": "^2.7.2",
"promise-mysql": "^3.0.0",
"require-directory": "^2.1.1",
"sequelize": "^3.29.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-nodemon": "^2.2.1",
"koa-logger": "^1.3.1"
},
"engines": {
"node": ">= 6.9.4",
"npm": ">= 3.10.10"
}
}