2016-02-11 14:27:15 -05:00
|
|
|
{
|
2016-02-15 18:25:12 -05:00
|
|
|
"name": "koa2-api-boilerplate",
|
2016-03-04 20:03:04 -05:00
|
|
|
"version": "1.1.0",
|
2016-02-15 18:25:12 -05:00
|
|
|
"description": "Koa2 boilerplate covering essentials for APIs",
|
2016-02-11 14:27:15 -05:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2016-02-11 15:17:46 -05:00
|
|
|
"start": "node index.js",
|
2016-02-11 19:44:43 -05:00
|
|
|
"dev": "./node_modules/.bin/nodemon index.js",
|
2016-02-11 15:43:21 -05:00
|
|
|
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill",
|
2016-03-04 21:01:13 -05:00
|
|
|
"lint": "eslint src/**/*.js",
|
|
|
|
|
"docs": "./node_modules/.bin/apidoc -i src/ -o docs"
|
2016-02-11 14:27:15 -05:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
2016-02-15 18:25:12 -05:00
|
|
|
"koa2-api-boilerplate",
|
2016-02-17 19:27:53 -05:00
|
|
|
"api",
|
2016-02-11 14:27:15 -05:00
|
|
|
"koa",
|
|
|
|
|
"koa2",
|
|
|
|
|
"boilerplate",
|
|
|
|
|
"es6",
|
|
|
|
|
"mongoose",
|
|
|
|
|
"passportjs"
|
|
|
|
|
],
|
|
|
|
|
"author": "Adrian Obelmejias <adrian@obel.me>",
|
2016-02-11 14:50:53 -05:00
|
|
|
"license": "MIT",
|
2016-03-04 21:04:14 -05:00
|
|
|
"apidoc": {
|
|
|
|
|
"title": "koa2-api-boilerplate",
|
2016-03-04 22:25:44 -05:00
|
|
|
"url": "localhost:5000"
|
2016-03-04 21:04:14 -05:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/adrianObel/koa2-api-boilerplate"
|
|
|
|
|
},
|
2016-02-11 14:50:53 -05:00
|
|
|
"dependencies": {
|
|
|
|
|
"babel-core": "^6.5.1",
|
|
|
|
|
"babel-polyfill": "^6.5.0",
|
|
|
|
|
"babel-preset-es2015": "^6.5.0",
|
|
|
|
|
"babel-preset-stage-0": "^6.5.0",
|
2016-02-11 17:55:16 -05:00
|
|
|
"bcrypt": "^0.8.5",
|
2016-02-15 16:52:40 -05:00
|
|
|
"glob": "^7.0.0",
|
2016-02-11 16:31:09 -05:00
|
|
|
"jsonwebtoken": "^5.5.4",
|
2016-02-11 14:50:53 -05:00
|
|
|
"koa": "^2.0.0-alpha.3",
|
|
|
|
|
"koa-bodyparser": "^2.0.1",
|
|
|
|
|
"koa-convert": "^1.2.0",
|
2016-02-11 16:04:07 -05:00
|
|
|
"koa-generic-session": "^1.10.1",
|
2016-02-11 15:59:51 -05:00
|
|
|
"koa-logger": "^1.3.0",
|
2016-03-04 23:05:31 -05:00
|
|
|
"koa-mount": "^1.3.0",
|
2016-02-11 16:19:31 -05:00
|
|
|
"koa-passport": "^2.0.1",
|
|
|
|
|
"koa-router": "^7.0.1",
|
2016-03-04 22:25:44 -05:00
|
|
|
"koa-static": "^2.0.0",
|
2016-02-11 16:19:31 -05:00
|
|
|
"mongoose": "^4.4.3",
|
|
|
|
|
"passport-local": "^1.0.0"
|
2016-02-11 15:17:12 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2016-03-04 21:01:13 -05:00
|
|
|
"apidoc": "^0.15.1",
|
2016-02-11 15:43:21 -05:00
|
|
|
"babel-eslint": "^4.1.8",
|
2016-02-11 15:17:12 -05:00
|
|
|
"babel-register": "^6.5.1",
|
2016-02-15 17:32:26 -05:00
|
|
|
"chai": "^3.5.0",
|
2016-02-11 15:43:21 -05:00
|
|
|
"eslint": "^1.10.3",
|
|
|
|
|
"eslint-config-airbnb": "^5.0.0",
|
|
|
|
|
"eslint-plugin-react": "^3.16.1",
|
2016-02-11 15:17:12 -05:00
|
|
|
"mocha": "^2.4.5",
|
2016-02-11 19:44:43 -05:00
|
|
|
"nodemon": "^1.8.1",
|
2016-02-11 15:17:12 -05:00
|
|
|
"supertest": "^1.2.0"
|
2016-02-11 14:50:53 -05:00
|
|
|
}
|
2016-02-11 14:27:15 -05:00
|
|
|
}
|