-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.17 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
79
80
81
82
{
"name": "koa2starter",
"version": "1.2.0",
"description": "",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/zombiQWERTY/koa2Starter"
},
"keywords": [
"chat",
"personal chat"
],
"bugs": {
"url": "https://github.com/zombiQWERTY/koa2Starter/issues",
"email": "[email protected]"
},
"author": {
"name": "Pavel Zinovev",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"import-dir": "0.0.1",
"js-koa-pug": "^1.0.3",
"jsonwebtoken": "^7.1.9",
"keygrip": "^1.0.1",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-compose": "^3.1.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-generic-session": "^1.11.3",
"koa-logger": "^2.0.0",
"koa-passport": "^2.2.2",
"koa-qs": "^2.0.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"lodash": "^4.16.3",
"mongoose": "^4.5.7",
"mongoose-deep-populate": "^3.0.0",
"mongoose-fill": "^1.3.1",
"mongoose-hidden": "^0.6.3",
"mongoose-id-validator": "^0.3.0",
"mongoose-populate-virtuals": "^1.0.3",
"mongoose-validator": "^1.2.4",
"passport-custom": "^1.0.5",
"passport-jwt": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.10.4",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"babel-watch": "^2.0.2",
"chai": "^3.5.0",
"faker": "^3.1.0",
"mocha": "^3.1.0",
"nodemon": "^1.10.0",
"rimraf": "^2.5.4",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0"
},
"scripts": {
"start": "./bin/start.sh",
"compile": "./bin/compile.sh",
"dev": "./bin/dev.sh",
"deploy": "./bin/deploy.sh",
"apidoc": "./bin/apidoc.sh",
"test": "./bin/test.sh",
"docker-prod": "docker-compose up prod",
"docker-dev": "docker-compose up dev",
"docker-test": "docker-compose up test"
}
}