forked from r-spacex/SpaceX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 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
{
"name": "spacex-api",
"version": "4.0.0",
"description": "Open Source REST API for data about SpaceX",
"main": "server.js",
"scripts": {
"test": "npm run lint && npm run check-dependencies && jest --silent --verbose",
"start": "node server.js",
"worker": "node jobs/worker.js",
"lint": "eslint .",
"check-dependencies": "npx depcheck --ignores=\"pino-pretty\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-spacex/SpaceX-API"
},
"keywords": [
"spacex",
"space",
"rocket",
"rest-api",
"mongodb",
"koa"
],
"author": "Jake Meyer <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/r-spacex/SpaceX-API/issues"
},
"homepage": "https://github.com/r-spacex/SpaceX-API",
"dependencies": {
"blake3": "^2.1.7",
"cheerio": "^1.0.0-rc.10",
"cron": "^1.8.2",
"fuzzball": "^2.1.2",
"got": "^11.8.3",
"ioredis": "^4.28.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-helmet": "^6.1.0",
"koa-pino-logger": "^3.0.0",
"koa-router": "^10.1.1",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"moment-range": "^4.0.2",
"moment-timezone": "^0.5.34",
"mongoose": "^6.1.2",
"mongoose-id": "^0.1.3",
"mongoose-paginate-v2": "^1.4.2",
"pino": "^7.5.1",
"rss-parser": "^3.12.0",
"tle.js": "^4.3.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-mongodb": "^1.0.0",
"eslint-plugin-no-secrets": "^0.8.9",
"jest": "^27.4.5",
"pino-pretty": "^7.3.0"
},
"jest": {
"testEnvironment": "node"
}
}