koa2-api-scaffold/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2017-01-23 01:12:24 +08:00
{
2019-06-07 15:59:39 +08:00
"name": "koa2-api-scaffold",
2019-06-02 21:55:11 +08:00
"version": "1.0.1",
2017-01-23 01:12:24 +08:00
"description": "Koa2 RESTful API 服务器的脚手架",
2019-04-07 23:03:32 +08:00
"author": "yi-ge <a@wyr.me>",
"license": "WTFPL",
2017-01-23 01:12:24 +08:00
"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",
2019-04-07 23:03:32 +08:00
"production": "node dist/app.js",
"test": "jest"
2017-01-23 01:12:24 +08:00
},
"dependencies": {
2019-04-07 23:03:32 +08:00
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-compose": "^4.1.0",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
2017-01-23 12:53:10 +08:00
"koa-static2": "^0.1.8",
2019-06-07 15:59:39 +08:00
"nodemailer": "^6.2.1",
"promise-mysql": "^3.3.2",
"sequelize": "^5.8.7"
2017-01-23 01:12:24 +08:00
},
"devDependencies": {
2019-06-02 21:55:11 +08:00
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
2019-04-07 23:03:32 +08:00
"@babel/plugin-external-helpers": "^7.2.0",
2019-06-07 15:59:39 +08:00
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
2019-06-02 21:55:11 +08:00
"babel-core": "^7.0.0-bridge.0",
2019-04-07 23:03:32 +08:00
"babel-eslint": "^10.0.1",
2019-06-02 21:55:11 +08:00
"babel-jest": "^24.8.0",
2019-04-07 23:03:32 +08:00
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
2019-06-07 15:59:39 +08:00
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
2019-04-07 23:03:32 +08:00
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
2019-06-07 15:59:39 +08:00
"gulp": "^4.0.2",
2019-04-07 23:03:32 +08:00
"gulp-eslint": "^5.0.0",
"gulp-nodemon": "^2.4.2",
2019-06-02 21:55:11 +08:00
"jest": "^24.8.0",
2019-04-07 23:03:32 +08:00
"koa-logger": "^3.2.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
}
2019-06-07 15:59:39 +08:00
}