package.json
425 Bytes
{
"scripts": {
"server": "cd server && nodemon server",
"client": "cd client && npm start",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"concurrently": "^7.2.1",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"nodemon": "^2.0.16",
"react-bootstrap": "^2.4.0"
}
}