package.json 586 B

123456789101112131415161718192021
  1. {
  2. "name": "entregafinala3",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "install-backend": "cd src/backend && npm install",
  8. "install-frontend": "cd src/frontend && npm install",
  9. "backend": "cd src/backend && npm run dev",
  10. "frontend": "cd src/frontend && npm run dev",
  11. "all": "concurrently \"npm:backend\" \"npm:frontend\"",
  12. "start-all": "npm run install-backend && npm run install-frontend && npm run all"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "ISC",
  17. "devDependencies": {
  18. "concurrently": "^8.2.1"
  19. }
  20. }