package.json 692 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "frontend",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "cra-template-typescript": "1.2.0",
  7. "react": "^19.0.0",
  8. "react-dom": "^19.0.0",
  9. "react-scripts": "5.0.1"
  10. },
  11. "scripts": {
  12. "start": "react-scripts start",
  13. "build": "react-scripts build",
  14. "test": "react-scripts test",
  15. "eject": "react-scripts eject"
  16. },
  17. "eslintConfig": {
  18. "extends": [
  19. "react-app",
  20. "react-app/jest"
  21. ]
  22. },
  23. "browserslist": {
  24. "production": [
  25. ">0.2%",
  26. "not dead",
  27. "not op_mini all"
  28. ],
  29. "development": [
  30. "last 1 chrome version",
  31. "last 1 firefox version",
  32. "last 1 safari version"
  33. ]
  34. }
  35. }