rsnext/examples/with-sentry/package.json
Luke Harries 16d464caf6
Fix withSourceMaps is not a function (#20643)
In order to get this example working, I needed to remove the invocation as described here: https://github.com/vercel/next-plugins/issues/309#issuecomment-674376348
2020-12-31 22:00:41 +00:00

19 lines
405 B
JSON

{
"name": "with-sentry",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@sentry/browser": "^5.21.3",
"@sentry/integrations": "^5.21.3",
"@sentry/node": "^5.21.3",
"@sentry/webpack-plugin": "^1.12.1",
"next": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}