├── .gitignore ├── LICENSE ├── README.md ├── api └── index.js ├── now.json ├── package.json ├── sentry-icon.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies and Build 2 | node_modules 3 | .env 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/README.md -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/api/index.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/package.json -------------------------------------------------------------------------------- /sentry-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/sentry-icon.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanMitchell/sentry-discord/HEAD/yarn.lock --------------------------------------------------------------------------------