package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "ax-frontend-app",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc -b && vite build",
  9. "build:analyze": "cross-env ANALYZE=true npm run build",
  10. "analyze": "node scripts/analyze-bundle.js",
  11. "lint": "eslint .",
  12. "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
  13. "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
  14. "preview": "vite preview",
  15. "test": "vitest run",
  16. "test:watch": "vitest",
  17. "test:document": "vitest run src/utils/blockOperations.test.ts src/utils/richTextConverter.test.ts",
  18. "test:export": "vitest run src/services/clientExportService.test.ts",
  19. "test:integration": "vitest run",
  20. "test:coverage": "vitest run --coverage"
  21. },
  22. "dependencies": {
  23. "@ant-design/icons": "^6.2.5",
  24. "antd": "^5.22.6",
  25. "axios": "^1.7.9",
  26. "hash-sum": "^2.0.0",
  27. "html2canvas": "^1.4.1",
  28. "jspdf": "^4.2.1",
  29. "mammoth": "^1.12.0",
  30. "p-limit": "^7.3.0",
  31. "react": "^18.3.1",
  32. "react-dom": "^18.3.1",
  33. "uuid": "^14.0.0",
  34. "zustand": "^4.5.5"
  35. },
  36. "devDependencies": {
  37. "@eslint/js": "^10.0.1",
  38. "@testing-library/jest-dom": "^6.9.1",
  39. "@testing-library/react": "^16.3.2",
  40. "@types/hash-sum": "^1.0.2",
  41. "@types/node": "^24.12.3",
  42. "@types/react": "^18.3.18",
  43. "@types/react-dom": "^18.3.5",
  44. "@types/turndown": "^5.0.6",
  45. "@types/uuid": "^10.0.0",
  46. "@vitejs/plugin-react": "^6.0.1",
  47. "cross-env": "^10.1.0",
  48. "eslint": "^10.3.0",
  49. "eslint-plugin-react-hooks": "^7.1.1",
  50. "eslint-plugin-react-refresh": "^0.5.2",
  51. "globals": "^17.6.0",
  52. "jsdom": "^29.1.1",
  53. "prettier": "^3.4.2",
  54. "rollup-plugin-visualizer": "^7.0.1",
  55. "typescript": "~6.0.2",
  56. "typescript-eslint": "^8.59.2",
  57. "vite": "^8.0.12",
  58. "vitest": "^4.1.9"
  59. }
  60. }