package.json 812 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "chat-admin-web",
  3. "version": "1.0.0",
  4. "private": true,
  5. "description": "AI问答-管理端",
  6. "type": "module",
  7. "license": "ISC",
  8. "scripts": {
  9. "start": "vite --mode development",
  10. "start:prod": "vite --mode production",
  11. "build": "vite build --mode development",
  12. "build:prod": "vite build --mode production"
  13. },
  14. "dependencies": {
  15. "antd": "^5.23.0",
  16. "axios": "^1.7.0",
  17. "dayjs": "^1.11.0",
  18. "mobx": "^6.13.0",
  19. "mobx-react": "^9.2.0",
  20. "react": "^18.2.0",
  21. "react-dom": "^18.2.0",
  22. "react-router-dom": "^7.1.0"
  23. },
  24. "devDependencies": {
  25. "@types/node": "^22.0.0",
  26. "@types/react": "^18.2.0",
  27. "@types/react-dom": "^18.2.0",
  28. "@vitejs/plugin-react": "^4.3.0",
  29. "less": "^4.2.0",
  30. "typescript": "^5.7.0",
  31. "vite": "6.1.0"
  32. }
  33. }