-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "inaturalist_api",
"version": "2.1.0",
"description": "Node.js API for iNaturalist.org",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive --exit --require test/hooks.js",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm run test",
"eslint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/inaturalist/iNaturalistAPI.git"
},
"keywords": [
"inaturalist"
],
"author": "Patrick Leary <[email protected]>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/lib-storage": "^3.614.0",
"@elastic/elasticsearch": "8.9.1",
"@joi/date": "^2.1.1",
"@mapbox/sphericalmercator": "^1.2.0",
"body-parser": "^1.20.2",
"carto": "github:inaturalist/carto#c90d129e533838b04b608b97630b523c62b14786",
"chalk": "^4.1.2",
"chroma-js": "^2.4.2",
"compression": "^1.7.4",
"debug": "^4.3.5",
"ejs": "^3.1.10",
"es6-promise-pool": "^2.5.0",
"express": "^4.19.2",
"express-openapi": "^12.1.3",
"fast-csv": "^5.0.1",
"flat": "^5.0.2",
"geoip-lite": "^1.4.10",
"h3-js": "^4.1.0",
"inaturalistjs": "github:inaturalist/inaturalistjs",
"joi": "^17.13.3",
"joi-to-swagger": "^6.2.0",
"jsonwebtoken": "^9.0.2",
"latlon-geohash": "^1.1.0",
"lodash": "^4.17.21",
"mapnik": "^4.5.9",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"multer": "1.4.5-lts.1",
"newrelic": "11.22.0",
"openapi-request-coercer": "^12.1.3",
"pg": "^8.12.0",
"recacheman": "^2.3.3",
"redis": "^4.6.15",
"rison-node": "^2.1.1",
"safe-squel": "^5.12.5",
"scramjet": "^4.37.0",
"shape2geohash": "1.2.6",
"swagger-ui-express": "^5.0.1",
"tar": "^7.4.0",
"yamljs": "^0.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"mocha": "^10.6.0",
"nock": "github:nock/nock#beta",
"nyc": "^17.0.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"supertest": "^7.0.0",
"uuid": "^10.0.0"
}
}