package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "ssyjManage-vue",
  3. "version": "5.4.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "npm run build:prod",
  9. "build:prod": "vue-tsc --noEmit && vite build --mode production",
  10. "serve": "npm run build && vite preview",
  11. "lint": "eslint \"src/**/*.{vue,ts}\" --fix"
  12. },
  13. "gitHooks": {
  14. "pre-commit": "lint-staged"
  15. },
  16. "lint-staged": {
  17. "src/**/*.{ts,vue}": [
  18. "eslint --fix",
  19. "git add"
  20. ]
  21. },
  22. "dependencies": {
  23. "@element-plus/icons-vue": "2.3.1",
  24. "@vueuse/core": "9.1.1",
  25. "@wangeditor/editor": "5.1.1",
  26. "@wangeditor/editor-for-vue": "^5.1.12",
  27. "axios": "1.6.0",
  28. "classnames": "^2.3.1",
  29. "core-js": "^3.14.0",
  30. "echarts": "^5.2.2",
  31. "element-plus": "2.7.6",
  32. "lodash": "^4.17.21",
  33. "mitt": "^2.1.0",
  34. "nprogress": "^0.2.0",
  35. "pinia": "2.1.7",
  36. "qs": "^6.10.1",
  37. "quill": "^1.3.7",
  38. "vue": "^3.4.31",
  39. "vue-echarts": "^6.0.0",
  40. "vue-router": "4.2.5"
  41. },
  42. "devDependencies": {
  43. "@types/lodash": "^4.14.172",
  44. "@types/nprogress": "^0.2.0",
  45. "@types/qs": "^6.9.6",
  46. "@types/sortablejs": "^1.10.6",
  47. "@typescript-eslint/eslint-plugin": "^5.23.0",
  48. "@typescript-eslint/parser": "^5.23.0",
  49. "@vitejs/plugin-vue": "5.0.5",
  50. "@vue/compiler-sfc": "^3.4.31",
  51. "@vue/eslint-config-prettier": "^7.0.0",
  52. "@vue/eslint-config-typescript": "^10.0.0",
  53. "eslint": "^8.13.0",
  54. "eslint-plugin-vue": "^8.6.0",
  55. "less": "^4.1.1",
  56. "less-loader": "^10.0.0",
  57. "lint-staged": "^11.0.0",
  58. "prettier": "^2.6.2",
  59. "sass": "^1.50.1",
  60. "typescript": "^4.6.3",
  61. "vite": "5.2.11",
  62. "vite-plugin-html": "^3.2.2",
  63. "vite-plugin-svg-icons": "2.0.1",
  64. "vite-tsconfig-paths": "3.4.0",
  65. "vue-tsc": "^2.0.16"
  66. }
  67. }