forked from inaturalist/iNaturalistAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "inaturalist_api",
"version": "1.2.1",
"description": "Node.js API for iNaturalist.org",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --recursive --exit",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive --exit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"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.6.1",
"@hapi/joi": "^15.1.0",
"async": "^2.6.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"carto": "^1.2.0",
"compression": "^1.7.3",
"debug": "*",
"ejs": "^2.6.1",
"elasticmaps": "github:inaturalist/elasticmaps",
"elasticsearch": "^15.5.0",
"es6-promise-pool": "^2.5.0",
"express": "^4.16.4",
"express-openapi": "^4.6.5",
"fast-csv": "^4.3.6",
"form-data": "^2.3.3",
"geoip-lite": "^1.3.4",
"handlebars": "^4.7.6",
"hapi-joi-to-swagger": "github:inaturalist/hapi-joi-to-swagger#0ec177ccc9f8306f6fbcc7066174313e593c0600",
"inaturalistjs": "github:inaturalist/inaturalistjs",
"intl": "^1.2.5",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.15",
"lodash.merge": "^4.6.2",
"md5": "^2.2.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"multer": "^1.4.1",
"newrelic": "^4.9.0",
"node.extend": "^2.0.1",
"openapi-request-coercer": "^2.3.0",
"pg": "^7.18.2",
"redis": "^3.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"scramjet": "^4.35.10",
"squel": "^5.13.0",
"sshpk": "^1.15.2",
"swagger-ui-express": "^4.1.4",
"tar": "^4.4.13",
"yamljs": "^0.3.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^12.0.3",
"sinon": "^7.1.0",
"sinon-chai": "^3.5.0",
"supertest": "^3.3.0"
}
}