-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "sd-control-tower",
"version": "2.0.6",
"description": "Control Tower API gateway - Skydipper edition",
"main": "index.js",
"scripts": {
"dev": "NODE_PATH=app/src DEBUG=oauth-plugin,statistics-plugin,redis-cache-plugin grunt --gruntfile app/Gruntfile.js | bunyan",
"run": "NODE_PATH=app/src DEBUG=oauth-plugin,statistics-plugin,redis-cache-plugin node app/index.js | bunyan",
"cron": "NODE_PATH=app/src DEBUG=oauth-plugin,statistics-plugin,redis-cache-plugin node app/index-crons.js | bunyan",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js e2eTest",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index"
},
"keywords": [],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com/"
},
"license": "MIT",
"engines": {
"node": "~12"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"chai-http": "^4.3.0",
"chai-string": "^1.5.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-react": "^7.14.3",
"grunt": "^1.0.4",
"grunt-apidoc": "^0.11.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-notify": "^0.4.5",
"grunt-simple-nyc": "^3.0.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"load-grunt-tasks": "^5.1.0",
"mocha": "^6.2.0",
"nock": "^11.3.4",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"app-module-path": "^2.0.0",
"babel-core": "^6.26.3",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-3": "^6.11.0",
"bcrypt": "^3.0.6",
"bunyan": "^1.8.1",
"config": "^1.21.0",
"cron": "^1.1.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.2",
"fastly-purge": "1.0.1",
"geoip-lite": "^1.1.8",
"json2xml": "^0.1.3",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.1.1",
"koa": "^2.0.0",
"koa-body": "^1.4.0",
"koa-bunyan-logger": "^1.3.0",
"koa-convert": "^1.2.0",
"koa-ctx-basic-auth": "^1.0.0",
"koa-generic-session": "1.11.7",
"koa-generic-session-mongo": "^0.4.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^2.0.0",
"koa-mount": "^4.0.0",
"koa-passport": "^2.1.1",
"koa-router": "^7.0.1",
"koa-simple-healthcheck": "0.0.1",
"koa-views": "^5.0.2",
"lodash": "^4.17.14",
"mongoose": "^5.7.5",
"mongoose-paginate": "^5.0.3",
"mongoose-regexp": "^0.0.1",
"passport-facebook": "^2.1.1",
"passport-facebook-token": "3.3.0",
"passport-google-oauth20": "^1.0.0",
"passport-google-token": "^0.1.2",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"path-to-regexp": "^1.5.3",
"request": "^2.88.0",
"request-promise": "^4.1.1",
"sleep": "^6.1.0",
"sparkpost": "^2.1.2",
"url-parse": "^1.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}