package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "amazon-s3-find-and-forget-frontend",
  3. "version": "0.1.0",
  4. "private": true,
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/awslabs/amazon-s3-find-and-forget"
  8. },
  9. "dependencies": {
  10. "@aws-amplify/ui-components": "^1.9.6",
  11. "@aws-amplify/ui-react": "^2.3.0",
  12. "@testing-library/jest-dom": "^5.16.1",
  13. "@testing-library/react": "^12.1.2",
  14. "@testing-library/user-event": "^13.5.0",
  15. "aws-amplify": "^4.3.26",
  16. "bootstrap": "^4.6.1",
  17. "react": "^17.0.2",
  18. "react-bootstrap": "^1.6.4",
  19. "react-dom": "^17.0.2",
  20. "react-json-view": "^1.21.3",
  21. "react-scripts": "^5.0.1"
  22. },
  23. "scripts": {
  24. "build": "REACT_APP_REPO_URL=$npm_package_repository_url SKIP_PREFLIGHT_CHECK=true react-scripts build",
  25. "dev": "SKIP_PREFLIGHT_CHECK=true react-scripts test",
  26. "eject": "react-scripts eject",
  27. "package": "cd build && zip -r ../../frontend.zip . -x *settings.js",
  28. "start": "HTTPS=true SKIP_PREFLIGHT_CHECK=true REACT_APP_REPO_URL=$npm_package_repository_url react-scripts start",
  29. "test": "CI=true SKIP_PREFLIGHT_CHECK=true react-scripts test"
  30. },
  31. "browserslist": {
  32. "production": [
  33. ">0.2%",
  34. "not dead",
  35. "not op_mini all"
  36. ],
  37. "development": [
  38. "last 1 chrome version",
  39. "last 1 firefox version",
  40. "last 1 safari version"
  41. ]
  42. }
  43. }