forked from Vizzuality/api-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "api-gateway",
"version": "1.0.0",
"description": "Basic api gateway",
"main": "index.js",
"scripts": {
"test-e2e": "NODE_PATH=app/src NODE_ENV=test grunt --gruntfile app/Gruntfile.js e2eTest",
"test-unit": "NODE_PATH=app/src NODE_ENV=test grunt --gruntfile app/Gruntfile.js unitTest",
"start": "NODE_PATH=app/src node app/pm2.js"
},
"keywords": [
"api-gateway",
"microservices",
"nodejs"
],
"author": "rrequero",
"license": "MIT",
"engines": {
"node": ">5.7.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"bunyan": "1.7.1",
"co": "4.6.0",
"co-request": "1.0.0",
"config": "1.19.0",
"jsonapi-serializer": "^2.1.1",
"jsonwebtoken": "^7.1.9",
"kcors": "1.2.1",
"koa": "1.2.0",
"koa-basic-auth": "1.1.2",
"koa-body": "1.4.0",
"koa-bodyparser": "2.0.1",
"koa-generic-session": "1.10.2",
"koa-generic-session-mongo": "0.2.5",
"koa-jwt": "^1.2.0",
"koa-logger": "1.3.0",
"koa-mount": "1.3.0",
"koa-passport": "1.3.0",
"koa-router": "5.4.0",
"koa-validate": "0.2.11",
"lodash": "^4.6.1",
"mongoose": "4.4.6",
"mongoose-regexp": "0.0.1",
"newrelic": "1.27.1",
"passport-facebook": "2.1.0",
"passport-google-oauth": "1.0.0",
"passport-twitter": "1.0.4",
"path-to-regexp": "1.2.1",
"restler": "3.4.0",
"slug": "0.9.1",
"thunks": "4.1.3",
"url": "^0.11.0",
"yaml-js": "0.1.3"
},
"devDependencies": {
"co-mocha": "1.1.2",
"grunt": "0.4.5",
"grunt-apidoc": "0.10.1",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.7.0",
"grunt-contrib-jshint": "0.12.0",
"grunt-contrib-watch": "0.6.1",
"grunt-express-server": "0.5.1",
"grunt-mocha-test": "0.12.7",
"grunt-notify": "0.4.3",
"load-grunt-tasks": "3.4.0",
"mocha": "2.4.5",
"mockery": "1.4.1",
"should": "8.2.2",
"should-http": "0.0.4",
"sinon": "1.17.3",
"supertest": "1.2.0"
}
}