-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 825 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 825 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "15.0.0",
"npm": "7.0.2"
},
"scripts": {
"start": "npm install && node index.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "group2",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"google-auth-library": "^7.11.0",
"http-errors": "^2.0.0",
"ioredis": "^4.28.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"readable-stream": "^3.6.0",
"socket.io": "^4.4.0"
},
"proxy": "https://localhost:5001",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.28.0"
}
}