Files
bch-dex/package.json
T

86 lines
2.3 KiB
JSON
Raw Normal View History

2016-02-11 14:27:15 -05:00
{
2019-02-07 16:49:19 -08:00
"name": "koa-api-boilerplate",
2018-03-05 19:26:06 -08:00
"version": "3.0.0",
2019-02-07 16:49:19 -08:00
"description": "Koa2 boilerplate covering essentials for REST API and auth.",
2016-02-11 14:27:15 -05:00
"main": "index.js",
"scripts": {
2016-02-11 15:17:46 -05:00
"start": "node index.js",
"test": "export KOA_ENV=test && npm run prep-test && nyc --reporter=text --timeout 15000 ./node_modules/.bin/mocha --exit",
"lint": "standard --env mocha --fix",
2018-11-07 18:56:38 -08:00
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "export KOA_ENV=test && npm run prep-test && nyc report --reporter=text-lcov | coveralls",
"coverage:report": "export KOA_ENV=test && npm run prep-test && nyc --reporter=html mocha --exit",
2019-05-20 20:57:44 -07:00
"prep-test": "node util/users/delete-all-test-users.js"
2016-02-11 14:27:15 -05:00
},
"keywords": [
2019-02-07 16:49:19 -08:00
"koa-api-boilerplate",
2016-02-17 19:27:53 -05:00
"api",
2016-02-11 14:27:15 -05:00
"koa",
"koa2",
"boilerplate",
"es6",
"mongoose",
2016-08-30 15:47:03 -04:00
"passportjs",
"apidoc"
2016-02-11 14:27:15 -05:00
],
2018-03-05 19:26:06 -08:00
"author": "Chris Troutner <chris.troutner@gmail.com>",
2016-02-11 14:50:53 -05:00
"license": "MIT",
2016-03-04 21:04:14 -05:00
"apidoc": {
2019-02-07 16:49:19 -08:00
"title": "koa-api-boilerplate",
2016-03-04 22:25:44 -05:00
"url": "localhost:5000"
2016-03-04 21:04:14 -05:00
},
2019-02-07 16:49:19 -08:00
"repository": "christroutner/koa-api-boilerplate",
2016-02-11 14:50:53 -05:00
"dependencies": {
"apidoc": "^0.23.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
2016-02-15 16:52:40 -05:00
"glob": "^7.0.0",
2018-11-08 04:42:49 +00:00
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.1",
2018-03-05 19:38:29 -08:00
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
2016-02-11 14:50:53 -05:00
"koa-convert": "^1.2.0",
2018-03-05 19:38:29 -08:00
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.1.0",
2018-11-08 04:42:49 +00:00
"koa-mount": "^4.0.0",
2020-11-05 19:33:15 -08:00
"koa-passport": "^4.1.3",
"koa-router": "^9.0.1",
2018-11-08 04:42:49 +00:00
"koa-static": "^5.0.0",
2020-01-15 21:28:13 -08:00
"line-reader": "^0.4.0",
"mongoose": "^5.7.5",
2020-07-14 22:11:11 -04:00
"nodemailer": "^6.4.10",
"passport-local": "^1.0.0",
2019-05-20 20:57:44 -07:00
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.0.0"
2016-02-11 15:17:12 -05:00
},
"devDependencies": {
2018-03-05 19:38:29 -08:00
"chai": "^4.1.2",
2018-11-07 20:26:18 -08:00
"coveralls": "^3.0.2",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
2018-11-08 04:42:49 +00:00
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.5",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.2.1",
"standard": "^14.3.1"
2018-11-07 18:56:38 -08:00
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
2016-02-11 14:50:53 -05:00
}
2016-02-11 14:27:15 -05:00
}