package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@sentry/react",
  3. "version": "7.102.0",
  4. "description": "Official Sentry SDK for React.js",
  5. "repository": "git://github.com/getsentry/sentry-javascript.git",
  6. "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/react",
  7. "author": "Sentry",
  8. "license": "MIT",
  9. "engines": {
  10. "node": ">=8"
  11. },
  12. "files": [
  13. "cjs",
  14. "esm",
  15. "types",
  16. "types-ts3.8"
  17. ],
  18. "main": "cjs/index.js",
  19. "module": "esm/index.js",
  20. "types": "types/index.d.ts",
  21. "typesVersions": {
  22. "<4.9": {
  23. "types/index.d.ts": [
  24. "types-ts3.8/index.d.ts"
  25. ]
  26. }
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "dependencies": {
  32. "@sentry/browser": "7.102.0",
  33. "@sentry/core": "7.102.0",
  34. "@sentry/types": "7.102.0",
  35. "@sentry/utils": "7.102.0",
  36. "hoist-non-react-statics": "^3.3.2"
  37. },
  38. "peerDependencies": {
  39. "react": "15.x || 16.x || 17.x || 18.x"
  40. },
  41. "devDependencies": {
  42. "@testing-library/react": "^13.0.0",
  43. "@testing-library/react-hooks": "^7.0.2",
  44. "@types/history-4": "npm:@types/history@4.7.8",
  45. "@types/history-5": "npm:@types/history@4.7.8",
  46. "@types/hoist-non-react-statics": "^3.3.1",
  47. "@types/node-fetch": "^2.6.0",
  48. "@types/react": "^17.0.3",
  49. "@types/react-router-3": "npm:@types/react-router@3.0.24",
  50. "@types/react-router-4": "npm:@types/react-router@5.1.14",
  51. "@types/react-router-5": "npm:@types/react-router@5.1.14",
  52. "eslint-plugin-react": "^7.20.5",
  53. "eslint-plugin-react-hooks": "^4.0.8",
  54. "history-4": "npm:history@4.6.0",
  55. "history-5": "npm:history@4.9.0",
  56. "node-fetch": "^2.6.0",
  57. "react": "^18.0.0",
  58. "react-dom": "^18.0.0",
  59. "react-router-3": "npm:react-router@3.2.0",
  60. "react-router-4": "npm:react-router@4.1.0",
  61. "react-router-5": "npm:react-router@5.0.0",
  62. "react-router-6": "npm:react-router@6.3.0",
  63. "react-router-6.4": "npm:react-router@6.4.2",
  64. "redux": "^4.0.5"
  65. },
  66. "sideEffects": false
  67. }