-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 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
{
"name": "server",
"version": "1.0.0",
"description": "Basic Server",
"main": "server.js",
"scripts": {
"start": "npm run server",
"client-install": "npm install --prefix client",
"server-install": "npm install",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Team Predict-WebApp",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^5.3.0",
"cookie-session": "^2.0.0-beta.3",
"cypress": "^8.6.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"mongoose": "^5.12.5",
"nodemon": "^2.0.6",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"request": "^2.83.0"
}
}