消毒机设备
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
3.1 KiB

2 months ago
2 months ago
4 weeks ago
2 months ago
  1. {
  2. "name": "matrix-spray-web",
  3. "type": "module",
  4. "version": "0.0.16",
  5. "description": "",
  6. "author": "",
  7. "license": "ISC",
  8. "keywords": [],
  9. "main": "index.js",
  10. "scripts": {
  11. "dev": "concurrently -n server,client -c green,blue \"node server/index.js\" \"vite --mode dev\"",
  12. "test": "vite --mode test",
  13. "prod": "vite --mode prod",
  14. "pre": "vite --mode pre",
  15. "build": "vite build --mode dev",
  16. "build:test": "vite build --mode test",
  17. "build:prod:patch": "node increment-version.js patch && vite build --mode prod",
  18. "build:prod:minor": "node increment-version.js minor && vite build --mode prod",
  19. "build:prod:major": "node increment-version.js major && vite build --mode prod",
  20. "build:pre": "vite build --mode pre",
  21. "build:dev": "vite build --mode dev",
  22. "prepare": "husky",
  23. "lint:lint-staged": "lint-staged",
  24. "lint": "vue-tsc --noEmit --skipLibCheck && eslint",
  25. "eslint": "eslint --fix --ext .ts,.vue src",
  26. "prettier": "prettier --write ."
  27. },
  28. "dependencies": {
  29. "@element-plus/icons-vue": "^2.3.1",
  30. "autoprefixer": "^10.4.20",
  31. "axios": "1.8.2",
  32. "chart.js": "^3.9.1",
  33. "cnchar": "^3.2.6",
  34. "cnchar-draw": "^3.2.6",
  35. "cnchar-idiom": "^3.2.6",
  36. "cnchar-order": "^3.2.6",
  37. "cnchar-poly": "^3.2.6",
  38. "cnchar-trad": "^3.2.6",
  39. "cnchar-words": "^3.2.6",
  40. "cnchar-xhy": "^3.2.6",
  41. "cssnano": "^7.0.6",
  42. "echarts": "^5.6.0",
  43. "element-plus": "^2.9.5",
  44. "express": "^5.1.0",
  45. "konva": "^9.3.18",
  46. "lodash": "^4.17.21",
  47. "nanoid": "^5.1.5",
  48. "pinia": "^3.0.1",
  49. "pinia-plugin-persistedstate": "^4.2.0",
  50. "pinyin": "^2.11.2",
  51. "postcss": "^8.5.3",
  52. "postcss-aspect-ratio-mini": "^1.1.0",
  53. "postcss-import": "^16.1.0",
  54. "postcss-px-to-viewport-8-plugin": "^1.2.5",
  55. "postcss-url": "^10.1.3",
  56. "postcss-viewport-units": "^0.1.6",
  57. "postcss-write-svg": "^3.0.1",
  58. "vue": "^3.5.13",
  59. "vue-chart-3": "^3.1.8",
  60. "vue-i18n": "^11.1.6",
  61. "vue-router": "^4.5.0",
  62. "ws": "^8.18.1"
  63. },
  64. "devDependencies": {
  65. "@antfu/eslint-config": "^4.3.0",
  66. "@commitlint/cli": "^19.7.1",
  67. "@commitlint/config-conventional": "^19.7.1",
  68. "@types/node": "^22.13.5",
  69. "@types/web": "^0.0.235",
  70. "@typescript-eslint/eslint-plugin": "^8.25.0",
  71. "@typescript-eslint/parser": "^8.25.0",
  72. "@vitejs/plugin-vue": "^5.2.1",
  73. "@vue/eslint-config-prettier": "^10.2.0",
  74. "concurrently": "^9.1.2",
  75. "eslint": "^9.21.0",
  76. "eslint-config-prettier": "^10.0.2",
  77. "eslint-plugin-prettier": "^5.2.3",
  78. "eslint-plugin-simple-import-sort": "^12.1.1",
  79. "eslint-plugin-vue": "^9.32.0",
  80. "husky": "^9.1.7",
  81. "lint-staged": "^15.4.3",
  82. "prettier": "^3.5.2",
  83. "sass": "^1.85.1",
  84. "semver": "^7.7.1",
  85. "typescript": "^5.7.3",
  86. "unplugin-auto-import": "^19.1.1",
  87. "unplugin-vue-components": "^28.4.1",
  88. "vite": "6.2.6",
  89. "vite-plugin-compression": "^0.5.1",
  90. "vite-plugin-eslint": "^1.8.1",
  91. "vue-tsc": "^2.2.4"
  92. },
  93. "husky": {
  94. "hooks": {
  95. "pre-commit": "lint-staged"
  96. }
  97. },
  98. "lint-staged": {
  99. "*.{js,jsx,vue,ts,tsx}": [
  100. "eslint --fix",
  101. "prettier --write",
  102. "lint-staged"
  103. ]
  104. }
  105. }