forked from r-spacex/SpaceX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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": "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 <jakewmeyer@gmail.com>",
"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.3.0",
"gmail-send": "^1.8.10",
"ioredis": "^4.14.1",
"koa": "^2.11.0",
"koa-helmet": "^5.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.27",
"mongodb": "^3.4.1",
"path": "^0.12.7",
"path-to-regexp": "^6.1.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mongodb": "^1.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"pkg": "^4.4.2",
"supertest": "^4.0.2"
},
"jest": {
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
}
}