-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "launch-dashboard-api",
"version": "1.0.0",
"description": "A REST API for rocket Telemetry",
"main": "src/app.js",
"scripts": {
"test": "jest",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shahar603/Launch-Dashboard-API"
},
"author": "Shahar603",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1130.0",
"bluebird": "^3.7.2",
"config": "^3.3.7",
"content-filter": "^1.1.2",
"express": "^4.18.1",
"ioredis": "^4.28.5",
"jest": "^26.6.3",
"joi": "^14.3.1",
"joigoose": "^7.1.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"mongoose": "^6.0.7",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"socket.io": "^4.5.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"acorn": "^7.4.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-react": "^7.29.4"
}
}