forked from barrosfilipe/Rocket-Lab-API
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 918 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 918 Bytes
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
{
"name": "rocket-lab-api",
"version": "1.0.0",
"description": "An Open Source REST API for rocket, pad, and launch data",
"main": "./src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest -i --forceExit"
},
"repository": "https://github.com/barrosfilipe/Rocket-Lab-API.git",
"keywords": [
"rocket-lab",
"space",
"rocket",
"rest-api"
],
"author": "Filipe Barros <filipebarrossi@gmail.com>",
"license": "MIT",
"dependencies": {
"compression": "^1.7.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"helmet": "^3.15.0",
"http-errors": "^1.7.1",
"mongodb": "^3.1.9",
"morgan": "^1.9.1",
"npm": "^7.3.0",
"response-time": "^2.3.2"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.18.6",
"prettier": "^1.15.2",
"prettierrc": "^0.0.0-5",
"supertest": "^4.0.2"
}
}