-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 751 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.13.1",
"npm": "8.1.2l"
},
"scripts": {
"start": "node server/src/index.js",
"server": "nodemon server/src/index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/concurrently": "^7.0.0",
"@types/cookie-session": "^2.0.44",
"@types/mongoose": "^5.11.97",
"@types/nodemon": "^1.19.1",
"concurrently": "^7.0.0",
"cookie-session": "^2.0.0",
"express": "^4.17.3",
"mongoose": "^6.2.8",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0"
}
}