8686eb38cf
Encode thrown errors in the backend as a JSON payload using a facility in that package, and render helpful frontend displays of those errors. Signed-off-by: Fredrik Adelöw <freben@gmail.com>
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@backstage/plugin-techdocs-backend",
|
|
"version": "0.6.4",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"license": "Apache-2.0",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "dist/index.cjs.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"homepage": "https://backstage.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/backstage/backstage",
|
|
"directory": "plugins/techdocs-backend"
|
|
},
|
|
"keywords": [
|
|
"backstage",
|
|
"techdocs"
|
|
],
|
|
"scripts": {
|
|
"start": "backstage-cli backend:dev",
|
|
"build": "backstage-cli backend:build",
|
|
"lint": "backstage-cli lint",
|
|
"test": "backstage-cli test",
|
|
"prepack": "backstage-cli prepack",
|
|
"postpack": "backstage-cli postpack",
|
|
"clean": "backstage-cli clean"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/backend-common": "^0.5.6",
|
|
"@backstage/catalog-model": "^0.7.4",
|
|
"@backstage/config": "^0.1.3",
|
|
"@backstage/errors": "^0.1.1",
|
|
"@backstage/techdocs-common": "^0.4.4",
|
|
"@types/dockerode": "^3.2.1",
|
|
"@types/express": "^4.17.6",
|
|
"cross-fetch": "^3.0.6",
|
|
"dockerode": "^3.2.1",
|
|
"express": "^4.17.1",
|
|
"express-promise-router": "^3.0.3",
|
|
"fs-extra": "^9.0.1",
|
|
"knex": "^0.95.1",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.6.4",
|
|
"supertest": "^4.0.2"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"config.d.ts"
|
|
],
|
|
"configSchema": "config.d.ts"
|
|
}
|