{
  "name": "donate-item-app",
  "version": "1.0.0",
  "description": "Donate Item Marketplace Application",
  "scripts": {
    "dev": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"green,blue\" \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
    "start": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"green,blue\" \"cd backend && npm start\" \"cd frontend && npm run dev\"",
    "install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
    "build": "cd backend && npm run build && cd ../frontend && npm run build"
  },
  "devDependencies": {
    "concurrently": "^8.2.2"
  }
}