package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "online-optmize",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "dev:test": "vite --host --mode test",
  9. "dev:dev": "vite --host --mode development",
  10. "build": "run-p type-check \"build-only {@}\" --",
  11. "preview": "vite preview",
  12. "build-only": "vite build",
  13. "build:dev": "vite build --mode development",
  14. "build:pro": "vite build --mode product",
  15. "build:test": "vite build --mode test",
  16. "type-check": "vue-tsc --build --force",
  17. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
  18. "format": "prettier --write src/"
  19. },
  20. "dependencies": {
  21. "@element-plus/icons-vue": "^2.3.1",
  22. "@turf/turf": "^7.1.0",
  23. "@wangeditor/editor": "^5.1.23",
  24. "@wangeditor/editor-for-vue": "^5.1.12",
  25. "ant-design-vue": "^4.2.3",
  26. "axios": "^1.7.5",
  27. "crypto-js": "^4.2.0",
  28. "dayjs": "^1.11.13",
  29. "decimal.js": "^10.4.3",
  30. "driver.js": "^1.3.6",
  31. "echarts": "^5.5.1",
  32. "element-plus": "^2.8.1",
  33. "exceljs": "^4.4.0",
  34. "github-markdown-css": "^5.8.1",
  35. "highlight.js": "^11.11.1",
  36. "leaflet": "^1.9.4",
  37. "lodash": "^4.17.21",
  38. "markdown-it": "^14.1.0",
  39. "mitt": "^3.0.1",
  40. "moment": "^2.30.1",
  41. "moment-timezone": "^0.5.46",
  42. "pinia": "^2.2.2",
  43. "sass-loader": "^14.1.1",
  44. "vue": "^3.4.29",
  45. "vue-draggable-plus": "^0.5.3",
  46. "vue-json-pretty": "^2.5.0",
  47. "vue-router": "^4.3.3",
  48. "vue3-puzzle-vcode": "^1.1.7",
  49. "vue3-virtual-scroller": "^0.2.3",
  50. "vuedraggable": "^2.24.3",
  51. "vxe-pc-ui": "^4.1.7",
  52. "vxe-table": "^4.7.70",
  53. "vxe-table-plugin-export-xlsx": "^4.0.5",
  54. "xe-clipboard": "^1.10.2",
  55. "xlsx": "^0.18.5"
  56. },
  57. "devDependencies": {
  58. "@rushstack/eslint-patch": "^1.8.0",
  59. "@tsconfig/node20": "^20.1.4",
  60. "@types/leaflet": "^1.9.12",
  61. "@types/lodash": "^4.17.7",
  62. "@types/node": "^20.14.5",
  63. "@vitejs/plugin-vue": "^5.1.4",
  64. "@vue/eslint-config-prettier": "^9.0.0",
  65. "@vue/eslint-config-typescript": "^13.0.0",
  66. "@vue/tsconfig": "^0.5.1",
  67. "autoprefixer": "^10.4.20",
  68. "eslint": "^8.57.0",
  69. "eslint-plugin-vue": "^9.23.0",
  70. "npm-run-all2": "^6.2.0",
  71. "postcss": "^8.4.41",
  72. "postcss-loader": "^8.1.1",
  73. "prettier": "^3.2.5",
  74. "rollup-plugin-visualizer": "^6.0.3",
  75. "sass": "^1.79.4",
  76. "typescript": "~5.4.0",
  77. "unplugin-auto-import": "^0.18.2",
  78. "unplugin-icons": "^0.19.3",
  79. "unplugin-vue-components": "^0.27.4",
  80. "vite": "^5.3.1",
  81. "vue-tsc": "^2.0.21"
  82. },
  83. "postcss": {
  84. "plugins": {
  85. "autoprefixer": {}
  86. }
  87. }
  88. }