Add Sentry plugin backend API (forwarding proxy)

This commit is contained in:
Wojciech Adaszynski
2020-05-15 11:29:27 +02:00
parent ee84a874f8
commit f8ee87ce1d
12 changed files with 253 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"name": "@backstage/plugin-sentry-backend",
"version": "0.1.1-alpha.5",
"main": "dist",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "backstage-cli plugin:serve",
"lint": "backstage-cli lint",
"test": "backstage-cli test",
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.1.1-alpha.5",
"@backstage/core": "^0.1.1-alpha.5",
"axios": "^0.19.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"helmet": "^3.22.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.1.1-alpha.5",
"@backstage/dev-utils": "^0.1.1-alpha.5",
"@types/jest": "^25.2.1",
"@types/node": "^12.0.0"
},
"files": [
"dist/**/*.{js,d.ts}"
]
}