feat(*): Enable loading the file and creating a PR in Azure Devops

This commit is contained in:
Joshua Creek
2026-03-05 18:32:45 +00:00
parent 91a8988275
commit 0433fe5c2c
35 changed files with 5503 additions and 776 deletions
@@ -0,0 +1,35 @@
{
"name": "tech-radar-editor-backend",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"backstage": {
"role": "backend-plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/jcreek/Tech-Radar-Editor.git",
"directory": "packages/tech-radar-editor-backend"
},
"author": "Josh Creek",
"license": "GPL-3.0",
"scripts": {
"build": "tsc"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/config": "^1.3.6",
"express": "^4.17.1",
"express-promise-router": "^4.1.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@backstage/backend-plugin-api": "^1.x.x"
}
}