package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "hvac-web",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite --host --open",
  8. "build": "run-p type-check \"build-only {@}\" --",
  9. "preview": "vite preview",
  10. "test:unit": "vitest",
  11. "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
  12. "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
  13. "build-only": "vite build",
  14. "clean:dist": "rimraf dist",
  15. "clean:node": "rimraf node_modules",
  16. "type-check": "vue-tsc --build",
  17. "lint": "eslint . --fix",
  18. "format": "prettier --write .",
  19. "icon:svg": "svgo -rf src/icons/svg -o src/icons/svg",
  20. "icon:gen": "cd src/icons && node generate-icon.cjs",
  21. "icon:see": "open src/icons/fonts/index.html",
  22. "prepare": "husky"
  23. },
  24. "dependencies": {
  25. "@vueuse/core": "^12.5.0",
  26. "ant-design-vue": "^4.2.6",
  27. "dayjs": "^1.11.13",
  28. "lodash-es": "^4.17.21",
  29. "pinia": "^2.3.0",
  30. "qs": "^6.14.0",
  31. "vue": "^3.5.13",
  32. "vue-i18n": "^11.0.1",
  33. "vue-router": "^4.5.0"
  34. },
  35. "devDependencies": {
  36. "@commitlint/cli": "^19.7.1",
  37. "@commitlint/config-conventional": "^19.7.1",
  38. "@eslint/js": "9.17.0",
  39. "@iconify-json/mdi": "^1.2.2",
  40. "@intlify/unplugin-vue-i18n": "^6.0.3",
  41. "@tsconfig/node22": "^22.0.0",
  42. "@types/jsdom": "^21.1.7",
  43. "@types/lodash-es": "^4.17.12",
  44. "@types/node": "^22.10.4",
  45. "@types/qs": "^6.9.18",
  46. "@unocss/eslint-config": "^0.65.4",
  47. "@vitejs/plugin-vue": "^5.2.1",
  48. "@vitejs/plugin-vue-jsx": "^4.1.1",
  49. "@vitest/eslint-plugin": "1.1.20",
  50. "@vue/eslint-config-prettier": "^10.1.0",
  51. "@vue/eslint-config-typescript": "^14.1.3",
  52. "@vue/test-utils": "^2.4.6",
  53. "@vue/tsconfig": "^0.7.0",
  54. "cypress": "^13.17.0",
  55. "eslint": "^9.14.0",
  56. "eslint-plugin-cypress": "^4.1.0",
  57. "eslint-plugin-import": "^2.31.0",
  58. "eslint-plugin-jsonc": "^2.18.2",
  59. "eslint-plugin-simple-import-sort": "^12.1.1",
  60. "eslint-plugin-vue": "^9.30.0",
  61. "globals": "^15.14.0",
  62. "husky": "^9.1.7",
  63. "jsdom": "^25.0.1",
  64. "jsonc-eslint-parser": "2.4.0",
  65. "lint-staged": "^15.4.3",
  66. "npm-run-all2": "^7.0.2",
  67. "prettier": "^3.3.3",
  68. "prettier-plugin-packagejson": "^2.5.6",
  69. "rimraf": "^6.0.1",
  70. "sass": "^1.83.0",
  71. "start-server-and-test": "^2.0.9",
  72. "stylelint": "^16.12.0",
  73. "stylelint-config-recess-order": "^5.1.1",
  74. "stylelint-config-standard-scss": "^14.0.0",
  75. "stylelint-config-standard-vue": "^1.0.0",
  76. "svgo": "^3.3.2",
  77. "svgtofont": "4.2.0",
  78. "typescript": "~5.6.3",
  79. "typescript-eslint": "8.19.0",
  80. "unocss": "^0.65.4",
  81. "unplugin-auto-import": "^19.0.0",
  82. "unplugin-vue-components": "^28.0.0",
  83. "vite": "^6.0.7",
  84. "vite-plugin-vue-devtools": "^7.7.0",
  85. "vitest": "^2.1.8",
  86. "vue-tsc": "^2.2.0"
  87. },
  88. "pnpm": {
  89. "overrides": {
  90. "cheerio": "1.0.0-rc.12"
  91. }
  92. }
  93. }