-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
85 lines (85 loc) · 2.44 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
{
"name": "ram-backend",
"version": "0.8.5",
"description": "The backend for RAM, a World Bank project to assess rural road accessibility",
"repository": {
"type": "git",
"url": "https://github.com/WorldBank-Transport/ram-backend"
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/WorldBank-Transport/ram-backend/issues"
},
"homepage": "https://github.com/WorldBank-Transport/ram-backend",
"main": "index.js",
"scripts": {
"setup": "DEBUG=true node setup/",
"lint": "eslint app/ test/ --ext .js",
"test-no-env": "DS_ENV=test DEBUG=false mocha test/test-* --require babel-register",
"test": ". test/test.env && yarn test-no-env",
"start": "node index.js",
"nodemon": "nodemon --watch app index.js",
"postinstall": "[ -f app/config/local.js ] || echo 'module.exports = {};' > app/config/local.js"
},
"engines": {
"node": "8.x.x"
},
"dependencies": {
"@octokit/rest": "^15.9.2",
"@turf/bbox": "^4.0.2",
"@turf/center-of-mass": "^6.0.1",
"aws-sdk": "^2.372.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.23.0",
"bluebird": "^3.4.7",
"boom": "^4.2.0",
"dotenv": "^4.0.0",
"es6-error": "^4.0.2",
"fs-extra": "^2.1.2",
"good": "^7.0.2",
"good-console": "^6.1.3",
"good-squeeze": "^5.0.0",
"hapi": "^16.1.0",
"hapi-auth-jwt2": "^7.3.0",
"hapi-router": "^3.5.0",
"joi": "^10.0.0",
"js-yaml": "^3.12.0",
"jwks-rsa": "^1.1.1",
"knex": "0.12.7",
"lodash": "^4.17.0",
"lua-fmt": "^2.6.0",
"minio": "^3.2.0",
"multiparty": "^4.1.3",
"node-fetch": "^2.1.2",
"node-zip": "^1.1.1",
"obj2osm": "^2.0.1",
"osm-p2p": "^2.0.0",
"osm-p2p-import": "^3.0.4",
"osm-p2p-server": "^2.3.2",
"osm2json": "^2.1.0",
"osmtogeojson": "^3.0.0-beta.2",
"pg": "^6.1.2",
"promise-retry": "^1.1.1",
"request": "^2.79.0",
"request-promise": "^4.2.1",
"temp-dir": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.0.1",
"eslint-config-standard": "^6.0.0-beta",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"form-data": "^2.1.4",
"inject-then": "^2.0.8",
"mocha": "^3.2.0",
"mockdate": "^2.0.1",
"nodemon": "^1.11.0",
"stream-to-promise": "^2.2.0"
}
}