package.json 514 B

1234567891011121314
  1. {
  2. "name": "mqtt-vue-dashboard-project",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "dev:frontend": "cd mqtt-vue-dashboard && npm run dev",
  7. "dev:backend": "cd server && npm run dev",
  8. "build:frontend": "cd mqtt-vue-dashboard && npm run build",
  9. "build:backend": "cd server && npm run build",
  10. "install:frontend": "cd mqtt-vue-dashboard && npm install",
  11. "install:backend": "cd server && npm install",
  12. "install:all": "npm run install:frontend && npm run install:backend"
  13. }
  14. }