forked from r-spacex/SpaceX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "spacex-api",
"version": "2.8.0",
"description": "Open Source REST API for rocket, core, capsule, pad, and launch data",
"main": "./src/app.js",
"scripts": {
"test": "yarn lint && NODE_ENV=test PORT=0 jest --silent --verbose",
"start": "node src/app.js",
"dev": "nodemon yarn start",
"lint": "eslint \"**/*.js\"",
"roadster": "node scripts/roadster.js",
"orbit": "node scripts/orbits.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-spacex/SpaceX-API"
},
"keywords": [
"spacex",
"space",
"rocket",
"rest-api",
"mongodb",
"koa"
],
"author": "Jake Meyer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/r-spacex/SpaceX-API/issues"
},
"homepage": "https://github.com/r-spacex/SpaceX-API",
"dependencies": {
"koa": "^2.5.2",
"koa-compress": "^3.0.0",
"koa-helmet": "^4.0.0",
"koa-is-json": "^1.0.0",
"koa-logger": "^3.2.0",
"koa-morgan": "^1.0.1",
"koa-redis-cache": "^3.0.1",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"lower-case": "^1.1.4",
"moment": "^2.22.2",
"mongodb": "^3.1.4",
"path": "^0.12.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.2"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mongodb": "^1.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^23.5.0",
"nodemon": "^1.18.4",
"supertest": "^3.1.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/jest.setup.js"
},
"engines": {
"node": ">=8.x.x"
}
}