package.json 921 B

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