package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "temp-vue-3",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build:prod": "vite build",
  9. "build:test": "vite build --mode test",
  10. "build-lint": "run-p type-check \"build-only {@}\" --",
  11. "preview": "vite preview",
  12. "build-only": "vite build",
  13. "type-check": "vue-tsc --build --force",
  14. "deploy:prod": "node deploy/index.js --prod",
  15. "deploy:test": "node deploy/index.js --test"
  16. },
  17. "dependencies": {
  18. "@vueuse/core": "^10.9.0",
  19. "autofit.js": "^3.1.3",
  20. "axios": "^1.6.8",
  21. "echarts": "^5.5.0",
  22. "echarts-gl": "^2.0.9",
  23. "element-plus": "^2.8.1",
  24. "highlight.js": "^11.9.0",
  25. "katex": "^0.16.10",
  26. "load-awesome": "^1.1.0",
  27. "markdown-it": "^14.1.0",
  28. "markdown-it-link-attributes": "^4.0.1",
  29. "markdown-it-math": "^4.1.1",
  30. "markdown-it-texmath": "^1.0.0",
  31. "naive-ui": "^2.39.0",
  32. "pinia": "^2.1.7",
  33. "pinia-plugin-persistedstate": "^3.2.1",
  34. "sass": "^1.77.1",
  35. "sass-loader": "^14.2.1",
  36. "three": "^0.166.1",
  37. "vue": "^3.4.21",
  38. "vue-router": "^4.3.0",
  39. "vue3-seamless-scroll": "^2.0.1"
  40. },
  41. "devDependencies": {
  42. "@digitalacorn/vite-plugin-svg-icons": "^3.0.0-pre.1",
  43. "@tsconfig/node20": "^20.1.4",
  44. "@types/node": "^20.12.5",
  45. "@vitejs/plugin-vue": "^5.0.4",
  46. "@vitejs/plugin-vue-jsx": "^3.1.0",
  47. "@vue/tsconfig": "^0.5.1",
  48. "autoprefixer": "^10.4.19",
  49. "chalk": "^5.3.0",
  50. "dayjs": "^1.11.11",
  51. "npm-run-all2": "^6.1.2",
  52. "ora": "^8.0.1",
  53. "postcss": "^8.4.38",
  54. "shelljs": "^0.8.5",
  55. "ssh2-sftp-client": "^10.0.3",
  56. "tailwindcss": "^3.4.4",
  57. "typescript": "~5.4.0",
  58. "unplugin-auto-import": "^0.18.2",
  59. "unplugin-vue-components": "^0.27.4",
  60. "vite": "^5.2.8",
  61. "vite-plugin-vue-devtools": "^7.0.25",
  62. "vue-tsc": "^2.0.11"
  63. }
  64. }