forked from r-spacex/SpaceX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "spacex-api",
"version": "3.1.0",
"description": "Open Source REST API for rocket, core, capsule, pad, and launch data",
"main": "./src/app.js",
"scripts": {
"test": "eslint . && NODE_ENV=test PORT=0 jest --silent --verbose",
"start": "node src/app.js",
"dev": "nodemon node src/app.js",
"pkg": "pkg src/app.js --output spacex-api",
"lint": "eslint .",
"roadster": "node src/scripts/roadster.js",
"orbit": "node src/scripts/orbits.js",
"ships": "node src/scripts/ships.js",
"upcoming": "node src/scripts/upcoming.js",
"launchpad": "node src/scripts/launchpad.js",
"landpad": "node src/scripts/landpad.js",
"cores": "node src/scripts/cores.js",
"capsules": "node src/scripts/capsules.js",
"webcast": "node src/scripts/webcast.js"
},
"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": {
"cheerio": "^1.0.0-rc.3",
"fuzzball": "^1.2.2",
"ioredis": "^4.11.1",
"koa": "^2.7.0",
"koa-helmet": "^4.2.0",
"koa-is-json": "^1.0.0",
"koa-json-mask": "^1.0.0",
"koa-morgan": "^1.0.1",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"lower-case": "^1.1.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"mongodb": "^3.2.6",
"path": "^0.12.7",
"path-to-regexp": "^3.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mongodb": "^1.0.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"pkg": "^4.4.0",
"supertest": "^4.0.2"
},
"jest": {
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
}
}