消毒机设备
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.

89 lines
2.7 KiB

2 months ago
  1. {
  2. "name": "matrix-spray-web",
  3. "type": "module",
  4. "version": "0.0.8",
  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. "cssnano": "^7.0.6",
  33. "element-plus": "^2.9.5",
  34. "express": "^5.1.0",
  35. "konva": "^9.3.18",
  36. "lodash": "^4.17.21",
  37. "pinia": "^3.0.1",
  38. "pinia-plugin-persistedstate": "^4.2.0",
  39. "postcss": "^8.5.3",
  40. "postcss-aspect-ratio-mini": "^1.1.0",
  41. "postcss-import": "^16.1.0",
  42. "postcss-px-to-viewport-8-plugin": "^1.2.5",
  43. "postcss-url": "^10.1.3",
  44. "postcss-viewport-units": "^0.1.6",
  45. "postcss-write-svg": "^3.0.1",
  46. "vue": "^3.5.13",
  47. "vue-router": "^4.5.0",
  48. "ws": "^8.18.1"
  49. },
  50. "devDependencies": {
  51. "@antfu/eslint-config": "^4.3.0",
  52. "@commitlint/cli": "^19.7.1",
  53. "@commitlint/config-conventional": "^19.7.1",
  54. "@types/node": "^22.13.5",
  55. "@typescript-eslint/eslint-plugin": "^8.25.0",
  56. "@typescript-eslint/parser": "^8.25.0",
  57. "@vitejs/plugin-vue": "^5.2.1",
  58. "@vue/eslint-config-prettier": "^10.2.0",
  59. "concurrently": "^9.1.2",
  60. "eslint": "^9.21.0",
  61. "eslint-config-prettier": "^10.0.2",
  62. "eslint-plugin-prettier": "^5.2.3",
  63. "eslint-plugin-vue": "^9.32.0",
  64. "husky": "^9.1.7",
  65. "lint-staged": "^15.4.3",
  66. "prettier": "^3.5.2",
  67. "sass": "^1.85.1",
  68. "semver": "^7.7.1",
  69. "typescript": "^5.7.3",
  70. "unplugin-auto-import": "^19.1.1",
  71. "unplugin-vue-components": "^28.4.1",
  72. "vite": "6.2.6",
  73. "vite-plugin-compression": "^0.5.1",
  74. "vite-plugin-eslint": "^1.8.1",
  75. "vue-tsc": "^2.2.4"
  76. },
  77. "husky": {
  78. "hooks": {
  79. "pre-commit": "lint-staged"
  80. }
  81. },
  82. "lint-staged": {
  83. "*.{js,jsx,vue,ts,tsx}": [
  84. "eslint --fix",
  85. "prettier --write",
  86. "lint-staged"
  87. ]
  88. }
  89. }