2017-01-23 01:12:24 +08:00
|
|
|
{
|
|
|
|
"name": "koa2-API-scaffold",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Koa2 RESTful API 服务器的脚手架",
|
|
|
|
"author": "轶哥 <a@wyr.me>",
|
|
|
|
"scripts": {
|
2017-02-12 01:28:00 +08:00
|
|
|
"start": "gulp nodemon",
|
2017-01-23 01:12:24 +08:00
|
|
|
"dev": "gulp",
|
|
|
|
"build": "babel src -d dist",
|
|
|
|
"production": "node dist/app.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-10-23 23:27:16 +08:00
|
|
|
"jsonwebtoken": "^8.1.0",
|
2017-07-16 22:56:44 +08:00
|
|
|
"koa": "^2.3.0",
|
2017-10-23 23:27:16 +08:00
|
|
|
"koa-body": "^2.5.0",
|
2017-07-16 22:56:44 +08:00
|
|
|
"koa-compose": "^4.0.0",
|
|
|
|
"koa-jwt": "^3.2.2",
|
|
|
|
"koa-router": "^7.2.1",
|
2017-01-23 12:53:10 +08:00
|
|
|
"koa-static2": "^0.1.8",
|
2017-10-23 23:27:16 +08:00
|
|
|
"nodemailer": "^4.3.0",
|
|
|
|
"promise-mysql": "^3.1.1",
|
2017-01-23 04:59:10 +08:00
|
|
|
"require-directory": "^2.1.1",
|
2017-10-23 23:27:16 +08:00
|
|
|
"sequelize": "^4.16.1"
|
2017-01-23 01:12:24 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-09-17 17:46:07 +08:00
|
|
|
"babel-cli": "^6.26.0",
|
2017-01-23 01:12:24 +08:00
|
|
|
"babel-plugin-transform-runtime": "^6.22.0",
|
2017-07-16 22:56:44 +08:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"babel-preset-stage-2": "^6.24.1",
|
2017-09-17 17:46:07 +08:00
|
|
|
"babel-register": "^6.26.0",
|
2017-10-23 23:27:16 +08:00
|
|
|
"eslint": "^4.9.0",
|
2018-01-13 10:38:06 +08:00
|
|
|
"eslint-config-standard": "^11.0.0-beta.0",
|
2017-07-16 22:56:44 +08:00
|
|
|
"eslint-friendly-formatter": "^3.0.0",
|
2017-12-01 14:26:09 +08:00
|
|
|
"eslint-plugin-html": "^4.0.1",
|
2017-10-23 23:27:16 +08:00
|
|
|
"eslint-plugin-import": "^2.8.0",
|
|
|
|
"eslint-plugin-node": "^5.2.1",
|
|
|
|
"eslint-plugin-promise": "^3.6.0",
|
2017-04-07 12:35:39 +08:00
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
2017-01-23 01:12:24 +08:00
|
|
|
"gulp": "^3.9.1",
|
2017-07-16 22:56:44 +08:00
|
|
|
"gulp-eslint": "^4.0.0",
|
2017-01-23 03:38:59 +08:00
|
|
|
"gulp-nodemon": "^2.2.1",
|
2017-10-23 23:27:16 +08:00
|
|
|
"koa-logger": "^3.1.0"
|
2017-01-23 01:12:24 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-04-07 11:58:35 +08:00
|
|
|
"node": ">= 7.8.0",
|
|
|
|
"npm": ">= 4.2.0"
|
2017-01-23 01:12:24 +08:00
|
|
|
}
|
|
|
|
}
|