package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "vue-project",
  3. "version": "0.2.11",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite --host --mode development --port 3000",
  8. "dev:test": "vite --host --mode test --port 4000",
  9. "dev:pro": "vite --host --mode production --port 5000",
  10. "build:dev": "vite build --mode development",
  11. "build:test": "vite build --mode test",
  12. "build": "vite build",
  13. "bump": "npm version patch -m \"feat: new version published: v%s\"",
  14. "release": "node scripts/release.js",
  15. "changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
  16. "changelog:all": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
  17. "deploy:test": "npm-run-all build:test run:deploy",
  18. "run:deploy": "pwsh -ExecutionPolicy Bypass -File scripts/deploy.ps1",
  19. "preview": "vite preview",
  20. "type-check": "vue-tsc --build",
  21. "lint": "eslint . --fix",
  22. "format": "prettier --write src/"
  23. },
  24. "dependencies": {
  25. "@ant-design/icons-vue": "^7.0.1",
  26. "@types/lodash-es": "^4.17.12",
  27. "@vueuse/components": "^13.5.0",
  28. "@vueuse/core": "^13.5.0",
  29. "ant-design-vue": "~4.2.6",
  30. "axios": "^1.10.0",
  31. "dayjs": "^1.11.13",
  32. "echarts": "^5.6.0",
  33. "lodash-es": "^4.17.21",
  34. "mqtt": "^5.13.1",
  35. "nanoid": "^5.1.5",
  36. "pinia": "^3.0.3",
  37. "pinia-plugin-persistedstate": "^4.4.1",
  38. "pinyin-pro": "^3.26.0",
  39. "vue": "^3.5.17",
  40. "vue-router": "^4.5.1"
  41. },
  42. "devDependencies": {
  43. "@tsconfig/node22": "^22.0.2",
  44. "@types/echarts": "^5.0.0",
  45. "@types/mqtt": "^2.5.0",
  46. "@types/node": "^22.15.32",
  47. "@vitejs/plugin-vue": "^6.0.0",
  48. "@vue/eslint-config-prettier": "^10.2.0",
  49. "@vue/eslint-config-typescript": "^14.5.1",
  50. "@vue/tsconfig": "^0.7.0",
  51. "conventional-changelog-cli": "^5.0.0",
  52. "eslint": "^9.29.0",
  53. "eslint-import-resolver-alias": "^1.1.2",
  54. "eslint-plugin-import": "^2.32.0",
  55. "eslint-plugin-prettier": "^5.5.1",
  56. "eslint-plugin-vue": "~10.2.0",
  57. "inquirer": "^12.9.1",
  58. "jiti": "^2.4.2",
  59. "less": "^4.3.0",
  60. "npm-run-all": "^4.1.5",
  61. "npm-run-all2": "^8.0.4",
  62. "prettier": "3.5.3",
  63. "typescript": "~5.8.0",
  64. "unplugin-vue-components": "^28.8.0",
  65. "vite": "^7.0.0",
  66. "vite-plugin-vue-devtools": "^7.7.7",
  67. "vue-tsc": "^2.2.10"
  68. }
  69. }