-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·78 lines (78 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "koach",
"version": "3.0.0",
"description": "Production ready Koa2 boilerplate for APIs",
"main": "index.js",
"scripts": {
"prod": "pm2 start pm2.config.js --env production",
"prestart": "sh prestart.sh",
"start": "./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require babel-register --require babel-polyfill",
"lint": "eslint --ignore-path .eslintignore .",
"fix": "eslint --fix --ignore-path .eslintignore .",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs"
},
"keywords": [
"koa2-api-boilerplate",
"api",
"koa",
"koa2",
"boilerplate",
"es6",
"mongoose",
"passportjs",
"apidoc"
],
"author": "Arpit Khandelwal <arpit@systango.com>",
"license": "MIT",
"apidoc": {
"title": "koach",
"url": "localhost:3000"
},
"repository": {
"type": "git",
"url": "https://github.com/SystangoTechnologies/Koach.git"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"apidoc": "^0.20.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.24.1",
"bcryptjs": "^2.4.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"glob": "^7.1.6",
"http2": "^3.3.7",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.0.4",
"koa-helmet": "^5.2.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-passport": "^4.1.3",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"mongoose": "^5.9.3",
"passport-local": "^1.0.0",
"pm2": "^4.2.3",
"require-dir": "^1.2.0",
"swagger-generator-koa": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}