package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "chat-web",
  3. "version": "0.0.0",
  4. "private": true,
  5. "keywords": [
  6. "chatgpt-web",
  7. "chatgpt",
  8. "chatbot",
  9. "vue"
  10. ],
  11. "scripts": {
  12. "dev": "vite",
  13. "build": "run-p type-check build-only",
  14. "preview": "vite preview",
  15. "test:unit": "vitest",
  16. "build-only": "vite build",
  17. "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
  18. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
  19. "format": "prettier --write src/"
  20. },
  21. "dependencies": {
  22. "@traptitech/markdown-it-katex": "^3.6.0",
  23. "@vicons/tabler": "^0.12.0",
  24. "@vueuse/core": "^9.13.0",
  25. "date-fns": "^2.29.3",
  26. "element-plus": "^2.3.12",
  27. "eruda": "^3.0.0",
  28. "eruda-code": "^2.1.0",
  29. "highlight.js": "^11.7.0",
  30. "katex": "^0.16.4",
  31. "mitt": "^3.0.0",
  32. "naive-ui": "^2.34.3",
  33. "pinia": "^2.1.6",
  34. "qrcode.vue": "^3.3.4",
  35. "qs": "^6.11.1",
  36. "query-string": "^8.1.0",
  37. "resolve-url": "^0.2.1",
  38. "vite-plugin-imagemin": "^0.6.1",
  39. "vue": "^3.3.4",
  40. "vue-i18n": "^9.2.2",
  41. "vue-router": "^4.2.4"
  42. },
  43. "devDependencies": {
  44. "@antfu/eslint-config": "^0.35.3",
  45. "@commitlint/cli": "^17.4.4",
  46. "@commitlint/config-conventional": "^17.4.4",
  47. "@iconify/vue": "^4.1.0",
  48. "@rushstack/eslint-patch": "^1.3.2",
  49. "@tsconfig/node18": "^18.2.0",
  50. "@types/crypto-js": "^4.1.1",
  51. "@types/jsdom": "^21.1.1",
  52. "@types/katex": "^0.16.0",
  53. "@types/markdown-it": "^12.2.3",
  54. "@types/markdown-it-link-attributes": "^3.0.1",
  55. "@types/node": "^18.17.5",
  56. "@vitejs/plugin-vue": "^4.3.1",
  57. "@vue/eslint-config-prettier": "^8.0.0",
  58. "@vue/eslint-config-typescript": "^11.0.3",
  59. "@vue/test-utils": "^2.4.1",
  60. "@vue/tsconfig": "^0.4.0",
  61. "autoprefixer": "^10.4.15",
  62. "axios": "^1.3.4",
  63. "crypto-js": "^4.1.1",
  64. "eslint": "^8.46.0",
  65. "eslint-plugin-vue": "^9.16.1",
  66. "husky": "^8.0.3",
  67. "jsdom": "^22.1.0",
  68. "less": "^4.1.3",
  69. "lint-staged": "^13.1.2",
  70. "npm-run-all": "^4.1.5",
  71. "postcss": "^8.4.29",
  72. "prettier": "^3.0.0",
  73. "rimraf": "^4.2.0",
  74. "tailwindcss": "^3.3.3",
  75. "typescript": "~5.1.6",
  76. "vite": "^4.4.9",
  77. "vite-plugin-html": "^3.2.0",
  78. "vite-plugin-pwa": "^0.14.4",
  79. "vitest": "^0.34.2",
  80. "vue-tsc": "^1.8.8"
  81. }
  82. }