-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
108 lines (108 loc) · 2.7 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
{
"name": "oam-catalog",
"version": "0.8.1",
"description": "A catalog for Open Aerial Map Imagery",
"main": "index.js",
"scripts": {
"docs": "apidoc -i routes/ -o docs/",
"lint": "eslint . --ext .js",
"test": "mocha test/specs",
"integration": "mocha test/integration"
},
"repository": {
"type": "git",
"url": "https://github.com/hotosm/oam-catalog.git"
},
"author": "Humanitarian OpenStreetMap Team",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/hotosm/oam-catalog/issues"
},
"homepage": "https://github.com/hotosm/oam-catalog",
"dependencies": {
"@mapbox/sphericalmercator": "^1.0.5",
"@turf/area": "^6.0.1",
"@turf/bbox": "^4.7.3",
"@turf/bbox-polygon": "^6.0.1",
"@turf/envelope": "^5.0.4",
"@turf/intersect": "^6.1.2",
"@turf/invariant": "^4.7.3",
"@turf/union": "^6.0.2",
"async": "2.1.4",
"aws-sdk": "^2.79.0",
"babel": "^5.8.21",
"bell": "^8.9.0",
"bluebird": "^3.4.1",
"boom": "^2.8.0",
"cron": "^1.2.1",
"dotenv": "^4.0.0",
"es6-promisify": "^3.0.0",
"exit-hook": "^1.1.1",
"fb": "^2.0.0",
"foreman": "^2.0.0",
"fs-extra": "^0.18.2",
"good": "^7.2.0",
"good-console": "^6.4.0",
"hapi": "^16.4.3",
"hapi-auth-cookie": "^7.0.0",
"hapi-auth-jwt2": "^7.3.0",
"hapi-raven": "^6.0.0",
"hapi-router": "^3.5.0",
"joi": "^10.6.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"mongodb": "^2.0.40",
"mongoose": "^4.0.2",
"monq": "^0.3.7",
"newrelic": "^1.20.0",
"node-cron": "^1.1.3",
"qs": "^6.4.0",
"queue-async": "^1.0.7",
"request": "^2.60.0",
"sendgrid": "^1.9.2",
"tmp": "0.0.26",
"uuid": "^3.0.1",
"wellknown": "^0.3.1",
"xtend": "^4.0.0",
"pg": "8.10.0"
},
"devDependencies": {
"apidoc": "^0.13.1",
"build-url": "^1.0.10",
"chai": "^2.3.0",
"ecstatic": "^0.8.0",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"http-server": "^0.10.0",
"iron": "^4.0.5",
"mocha": "^2.2.4",
"nodemon": "^1.12.1",
"omit-deep": "^0.1.2",
"proxyquire": "^1.8.0",
"sinon": "^2.3.7",
"sinon-chai": "^2.14.0"
},
"apidoc": {
"title": "OAM API",
"name": "OpenAerialMap Catalog API",
"description": "",
"url": "https://api.openaerialmap.org",
"template": {
"withCompare": false
},
"header": {
"title": "Getting Started",
"filename": "about.md"
},
"order": [
"Meta",
"TMS",
"Analytics"
]
}
}