package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "frontend",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "lint": "biome check --apply-unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./",
  10. "preview": "vite preview",
  11. "generate-client": "openapi --input ./openapi.json --useOptions --useUnionTypes --output ./src/client --client axios --exportSchemas true"
  12. },
  13. "dependencies": {
  14. "@chakra-ui/icons": "2.1.1",
  15. "@chakra-ui/react": "2.8.2",
  16. "@emotion/react": "11.11.3",
  17. "@emotion/styled": "11.11.0",
  18. "@tanstack/react-router": "1.19.1",
  19. "axios": "1.6.2",
  20. "form-data": "4.0.0",
  21. "framer-motion": "10.16.16",
  22. "react": "^18.2.0",
  23. "react-dom": "^18.2.0",
  24. "react-hook-form": "7.49.3",
  25. "react-icons": "5.0.1",
  26. "react-query": "3.39.3",
  27. "zustand": "4.5.0"
  28. },
  29. "devDependencies": {
  30. "@biomejs/biome": "1.6.1",
  31. "@tanstack/router-devtools": "1.19.1",
  32. "@tanstack/router-vite-plugin": "1.19.0",
  33. "@types/node": "20.10.5",
  34. "@types/react": "^18.2.37",
  35. "@types/react-dom": "^18.2.15",
  36. "@vitejs/plugin-react-swc": "^3.5.0",
  37. "openapi-typescript-codegen": "0.25.0",
  38. "typescript": "^5.2.2",
  39. "vite": "^5.0.12"
  40. }
  41. }