rsnext/examples/with-sentry/package.json
iker barriocanal 4bc87e479c
Update example with-sentry (#24819)
The [official Sentry Next.js SDK](https://docs.sentry.io/platforms/javascript/guides/nextjs/) is now the recommended choice to use with Next.js, instead of the previous workarounds. This PR updates the example, which now uses the SDK.
2021-05-07 12:52:03 +00:00

16 lines
292 B
JSON

{
"name": "with-sentry",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@sentry/nextjs": "^6.3.5",
"next": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}