package.json 993 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "relay-control",
  3. "version": "0.1.0",
  4. "description": "IoT Relay Control Application",
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "node server/app.js",
  8. "dev": "concurrently \"npm run start\" \"npm run serve\"",
  9. "serve": "vue-cli-service serve --port 8080",
  10. "build": "vue-cli-service build",
  11. "lint": "eslint --ext .js,.vue src",
  12. "test": "jest"
  13. },
  14. "dependencies": {
  15. "axios": "^1.6.2",
  16. "bcrypt": "^5.1.1",
  17. "body-parser": "^1.20.2",
  18. "cors": "^2.8.5",
  19. "express": "^4.18.2",
  20. "jsonwebtoken": "^9.0.2",
  21. "mqtt": "^5.0.3",
  22. "mysql2": "^3.6.0",
  23. "vue": "^3.3.0",
  24. "vue-router": "^4.2.5",
  25. "winston": "^3.17.0"
  26. },
  27. "devDependencies": {
  28. "@vue/cli-plugin-babel": "^5.0.8",
  29. "@vue/cli-plugin-eslint": "^5.0.8",
  30. "@vue/cli-service": "^5.0.8",
  31. "concurrently": "^9.1.2",
  32. "eslint": "^8.56.0",
  33. "eslint-plugin-vue": "^9.17.0",
  34. "install": "^0.13.0",
  35. "jest": "^29.7.0",
  36. "nodemon": "^3.0.2"
  37. }
  38. }