-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 972 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js --ignore tests",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "NPM_CONFIG_PRODUCTION=false npm install --legacy-peer-deps --prefix client && npm run build --prefix client",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest": "^29.6.4",
"migrate-mongoose": "^4.0.0",
"mongoose": "^7.5.0",
"nodemon": "^3.0.1",
"passport": "^0.5.3",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"redis": "^4.6.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
}
}