rsnext/examples/with-sentry/package.json
Lucien PESLIER 49fd5990a1 Update Sentry to v5 and add @sentry/integrations (#6873)
Hi everyone :)
I just updated Sentry to v5 and added @sentry/integrations due to breaking changes :)
I also fix the documentation. npm commands were in yarn section.
2019-04-03 12:32:36 +02:00

24 lines
633 B
JSON

{
"name": "with-sentry",
"version": "1.1.0",
"scripts": {
"dev": "SENTRY_DSN=abc123 node server.js",
"build": "SENTRY_DSN=abc123 next build",
"start": "SENTRY_DSN=abc123 NODE_ENV=production node server.js"
},
"dependencies": {
"@sentry/browser": "^5.0.3",
"@sentry/node": "^5.0.3",
"@sentry/integrations": "^5.0.3",
"@zeit/next-source-maps": "0.0.4-canary.1",
"cookie-parser": "1.4.4",
"express": "^4.16.4",
"js-cookie": "2.2.0",
"next": "latest",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"sentry-testkit": "^2.1.0",
"uuid": "^3.3.2"
},
"license": "ISC"
}