package.json
467 Bytes
{
"scripts": {
"server": "cd server && nodemon server",
"client": "cd client && set PORT=8080 && npm start --port",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"concurrently": "^7.2.1",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"mongoose": "^6.3.4",
"nodemon": "^2.0.16",
"xhr2": "^0.2.1"
}
}