package.json 939 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "web",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
  10. "preview": "vite preview"
  11. },
  12. "dependencies": {
  13. "@heroicons/react": "^2.0.18",
  14. "react": "^18.2.0",
  15. "react-dom": "^18.2.0",
  16. "react-hook-form": "^7.48.2",
  17. "react-router-dom": "^6.20.1",
  18. "sass": "^1.69.5"
  19. },
  20. "devDependencies": {
  21. "@types/node": "^20.10.3",
  22. "@types/react": "^18.2.37",
  23. "@types/react-dom": "^18.2.15",
  24. "@types/react-router-dom": "^5.3.3",
  25. "@typescript-eslint/eslint-plugin": "^6.10.0",
  26. "@typescript-eslint/parser": "^6.10.0",
  27. "@vitejs/plugin-react": "^4.2.0",
  28. "eslint": "^8.53.0",
  29. "eslint-plugin-react-hooks": "^4.6.0",
  30. "eslint-plugin-react-refresh": "^0.4.4",
  31. "typescript": "^5.2.2",
  32. "vite": "^5.0.0"
  33. }
  34. }