package.json 771 B

1234567891011121314151617181920212223242526272829
  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. "react": "^18.2.0",
  14. "react-dom": "^18.2.0"
  15. },
  16. "devDependencies": {
  17. "@types/node": "^20.10.3",
  18. "@types/react": "^18.2.37",
  19. "@types/react-dom": "^18.2.15",
  20. "@typescript-eslint/eslint-plugin": "^6.10.0",
  21. "@typescript-eslint/parser": "^6.10.0",
  22. "@vitejs/plugin-react": "^4.2.0",
  23. "eslint": "^8.53.0",
  24. "eslint-plugin-react-hooks": "^4.6.0",
  25. "eslint-plugin-react-refresh": "^0.4.4",
  26. "typescript": "^5.2.2",
  27. "vite": "^5.0.0"
  28. }
  29. }