package.json 913 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "my-app",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@testing-library/jest-dom": "^4.2.4",
  7. "@testing-library/react": "^9.5.0",
  8. "@testing-library/user-event": "^7.2.1",
  9. "axios": "^0.21.1",
  10. "bootstrap": "^4.3.1",
  11. "node-sass": "^5.0.0",
  12. "react": "^16.13.1",
  13. "react-dom": "^16.13.1",
  14. "react-scripts": "^4.0.3"
  15. },
  16. "optionalDependencies": {
  17. "fsevents": "^2.1.2"
  18. },
  19. "scripts": {
  20. "start": "react-scripts start",
  21. "build": "react-scripts build",
  22. "test": "react-scripts test",
  23. "eject": "react-scripts eject"
  24. },
  25. "eslintConfig": {
  26. "extends": "react-app"
  27. },
  28. "proxy": "http://backend:3000",
  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. }