package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "深圳机场货站信息系统",
  3. "description": "a easy template",
  4. "version": "1.0.0",
  5. "private": true,
  6. "author": "yangmi",
  7. "license": "MIT",
  8. "scripts": {
  9. "dev": "vite --host",
  10. "build": "rimraf dist && vite build",
  11. "build-staging": "rimraf dist && vite build --mode staging",
  12. "build-test": "rimraf dist && vite build --mode test",
  13. "build:report": "rimraf dist && cross-env report=true vite build",
  14. "lint": "eslint --fix src/**/*.{js,ts,jsx,tsx}",
  15. "test": "vitest run",
  16. "format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
  17. "coverage": "vitest run --coverage",
  18. "plop": "plop",
  19. "svgo": "svgo -f src/icons --config=src/icons/svgo.yml",
  20. "prepare": "husky install"
  21. },
  22. "dependencies": {
  23. "@arco-design/web-vue": "^2.27.1",
  24. "@vueuse/core": "^7.3.0",
  25. "@wangeditor/editor": "^5.1.23",
  26. "@wangeditor/editor-for-vue": "next",
  27. "axios": "^0.24.0",
  28. "b-validate": "^1.3.4",
  29. "dayjs": "^1.10.7",
  30. "deepmerge": "^4.2.2",
  31. "echarts": "^5.3.2",
  32. "file-saver": "^2.0.5",
  33. "js-md5": "^0.7.3",
  34. "lodash-es": "^4.17.21",
  35. "normalize.css": "^8.0.1",
  36. "nprogress": "^0.2.0",
  37. "path-browserify": "^1.0.1",
  38. "pinia": "^2.0.9",
  39. "pinia-plugin-persistedstate": "^1.0.3",
  40. "qs": "^6.10.3",
  41. "reset.css": "^2.0.2",
  42. "spark-md5": "^3.0.2",
  43. "tailwindcss": "^3.2.7",
  44. "tiny-emitter": "^2.1.0",
  45. "vite-plugin-svg-icons": "^2.0.1",
  46. "vue": "^3.2.16",
  47. "vue-cropper": "^1.0.2",
  48. "vue-echarts": "^6.0.3",
  49. "vue-i18n": "9.2.0-beta.30",
  50. "vue-router": "^4.0.13"
  51. },
  52. "devDependencies": {
  53. "@types/file-saver": "^2.0.5",
  54. "@types/js-md5": "^0.4.3",
  55. "@types/lodash-es": "^4.17.6",
  56. "@types/nprogress": "^0.2.0",
  57. "@types/path-browserify": "^1.0.0",
  58. "@types/qs": "^6.9.7",
  59. "@types/spark-md5": "^3.0.2",
  60. "@typescript-eslint/eslint-plugin": "^5.10.0",
  61. "@typescript-eslint/parser": "^5.10.0",
  62. "@vitejs/plugin-vue": "^2.3.1",
  63. "@vitejs/plugin-vue-jsx": "^1.2.0",
  64. "autoprefixer": "^10.4.7",
  65. "consola": "^2.15.3",
  66. "cross-env": "^7.0.3",
  67. "eslint": "^7.28.0",
  68. "eslint-config-airbnb-base": "^14.2.1",
  69. "eslint-config-prettier": "^8.3.0",
  70. "eslint-import-resolver-typescript": "^2.4.0",
  71. "eslint-plugin-import": "^2.22.1",
  72. "eslint-plugin-prettier": "^3.3.1",
  73. "eslint-plugin-vue": "^8.0.0",
  74. "husky": "^7.0.4",
  75. "kolorist": "^1.5.1",
  76. "less": "^4.1.2",
  77. "plop": "^3.1.0",
  78. "postcss": "^8.4.13",
  79. "postcss-import": "^14.1.0",
  80. "prettier": "^2.2.1",
  81. "rimraf": "^3.0.2",
  82. "rollup-plugin-visualizer": "^5.6.0",
  83. "stylelint": "^13.8.0",
  84. "stylelint-config-prettier": "^8.0.2",
  85. "stylelint-config-rational-order": "^0.1.2",
  86. "stylelint-config-standard": "^20.0.0",
  87. "stylelint-order": "^4.1.0",
  88. "svgo": "1.2.0",
  89. "typescript": "^4.5.4",
  90. "unplugin-auto-import": "^0.7.1",
  91. "vite": "^2.6.4",
  92. "vite-plugin-commonjs": "^0.2.6",
  93. "vite-plugin-compression": "^0.5.1",
  94. "vite-plugin-eslint": "^1.3.0",
  95. "vite-plugin-html": "^3.2.0",
  96. "vite-plugin-style-import": "^2.0.0",
  97. "vite-plugin-vue-setup-extend": "^0.4.0",
  98. "vitest": "^0.23.0",
  99. "vue-tsc": "^0.30.5"
  100. },
  101. "gitHooks": {
  102. "pre-commit": "lint-staged",
  103. "commit-msg": "node scripts/verifyCommit.js"
  104. },
  105. "lint-staged": {
  106. "*.js": [
  107. "prettier --write"
  108. ],
  109. "*.ts?(x)": [
  110. "eslint",
  111. "prettier --parser=typescript --write"
  112. ]
  113. }
  114. }