package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "sop-web",
  3. "description": "",
  4. "version": "1.0.0",
  5. "private": true,
  6. "author": "星辰大海",
  7. "license": "MIT",
  8. "scripts": {
  9. "start": "npm run dev",
  10. "dev": "cross-env VITE_ENV_TYPE=development vite --mode=development",
  11. "dev:test": "cross-env VITE_ENV_TYPE=test vite --mode=test",
  12. "dev:prod": "cross-env VITE_ENV_TYPE=production vite --mode=production",
  13. "build": "cross-env VITE_ENV_TYPE=production vite build --mode=production",
  14. "build:dev": "cross-env VITE_ENV_TYPE=development vite build --mode=development",
  15. "build:test": "cross-env VITE_ENV_TYPE=test vite build --mode=test",
  16. "preview": "vite preview",
  17. "lint:eslint": "eslint \"src/**/*.{vue,ts,tsx,js,jsx}\" --fix",
  18. "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,jsx,css,less,scss,vue,html,md}\"",
  19. "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/"
  20. },
  21. "dependencies": {
  22. "@vueuse/core": "^9.13.0",
  23. "autoprefixer": "^10.4.14",
  24. "axios": "^1.2.1",
  25. "china-division": "^2.6.1",
  26. "crypto-js": "^4.1.1",
  27. "dayjs": "^1.11.7",
  28. "echarts": "^5.4.2",
  29. "element-resize-detector": "^1.2.4",
  30. "lodash": "^4.17.21",
  31. "mockjs": "^1.1.0",
  32. "nprogress": "^0.2.0",
  33. "pinia": "^2.0.27",
  34. "pinia-plugin-persistedstate": "^3.2.0",
  35. "qs": "^6.11.2",
  36. "spark-md5": "^3.0.2",
  37. "tdesign-vue-next": "^1.5.1",
  38. "tvision-color": "^1.5.0",
  39. "unplugin-vue-setup-extend-plus": "^1.0.0",
  40. "vue": "^3.3.4",
  41. "vue-clipboard3": "^2.0.0",
  42. "vue-echarts": "^6.5.4",
  43. "vue-request": "^2.0.3",
  44. "vue-router": "4.1.5"
  45. },
  46. "devDependencies": {
  47. "@commitlint/cli": "^17.3.0",
  48. "@commitlint/config-conventional": "^17.3.0",
  49. "@esbuild-plugins/node-globals-polyfill": "^0.2.3",
  50. "@esbuild-plugins/node-modules-polyfill": "^0.2.2",
  51. "@vitejs/plugin-vue": "^3.2.0",
  52. "@vitejs/plugin-vue-jsx": "^2.1.1",
  53. "@vue/babel-plugin-jsx": "^1.1.1",
  54. "cross-env": "^7.0.3",
  55. "eslint": "^8.29.0",
  56. "eslint-config-airbnb-base": "^15.0.0",
  57. "eslint-config-prettier": "^8.5.0",
  58. "eslint-import-resolver-typescript": "^3.5.2",
  59. "eslint-plugin-import": "^2.26.0",
  60. "eslint-plugin-prettier": "^4.2.1",
  61. "eslint-plugin-vue": "^9.8.0",
  62. "husky": "^8.0.2",
  63. "less": "^4.1.3",
  64. "prettier": "^2.8.1",
  65. "rollup-plugin-node-polyfills": "^0.2.1",
  66. "rollup-plugin-visualizer": "^5.9.2",
  67. "typescript": "^4.8.3",
  68. "unocss": "^0.52.0",
  69. "unplugin-auto-import": "^0.16.6",
  70. "unplugin-vue-components": "^0.25.1",
  71. "unplugin-vue-define-options": "^0.6.2",
  72. "vite": "^3.2.5",
  73. "vite-plugin-compression": "^0.5.1",
  74. "vite-plugin-eslint": "^1.8.1",
  75. "vite-plugin-html": "^3.2.0",
  76. "vite-plugin-require-transform": "^1.0.12",
  77. "vite-plugin-style-import": "^2.0.0",
  78. "vite-plugin-svg-icons": "^2.0.1",
  79. "vite-svg-loader": "^3.6.0",
  80. "vue-tsc": "^1.0.11"
  81. }
  82. }