package.json 890 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "my-app",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@testing-library/jest-dom": "^5.16.5",
  7. "@testing-library/react": "^13.3.0",
  8. "@testing-library/user-event": "^13.5.0",
  9. "react": "^18.2.0",
  10. "react-dom": "^18.2.0",
  11. "react-redux": "^8.0.2",
  12. "react-scripts": "5.0.1",
  13. "redux": "^4.2.0",
  14. "redux-thunk": "^2.4.1",
  15. "web-vitals": "^2.1.4"
  16. },
  17. "scripts": {
  18. "start": "react-scripts start",
  19. "build": "react-scripts build",
  20. "test": "react-scripts test",
  21. "eject": "react-scripts eject"
  22. },
  23. "eslintConfig": {
  24. "extends": [
  25. "react-app",
  26. "react-app/jest"
  27. ]
  28. },
  29. "browserslist": {
  30. "production": [
  31. ">0.2%",
  32. "not dead",
  33. "not op_mini all"
  34. ],
  35. "development": [
  36. "last 1 chrome version",
  37. "last 1 firefox version",
  38. "last 1 safari version"
  39. ]
  40. }
  41. }