66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "@backstage/plugin-techdocs-backend",
|
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
"version": "0.11.0",
|
|
"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.9.12",
|
|
"@backstage/catalog-client": "^0.5.2",
|
|
"@backstage/catalog-model": "^0.9.7",
|
|
"@backstage/config": "^0.1.11",
|
|
"@backstage/errors": "^0.1.5",
|
|
"@backstage/integration": "^0.6.10",
|
|
"@backstage/search-common": "^0.2.1",
|
|
"@backstage/techdocs-common": "^0.10.8",
|
|
"@types/express": "^4.17.6",
|
|
"dockerode": "^3.3.1",
|
|
"express": "^4.17.1",
|
|
"express-promise-router": "^4.1.0",
|
|
"fs-extra": "9.1.0",
|
|
"knex": "^0.95.1",
|
|
"lodash": "^4.17.21",
|
|
"node-fetch": "^2.6.1",
|
|
"p-limit": "^3.1.0",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.10.0",
|
|
"@backstage/test-utils": "^0.1.23",
|
|
"@types/dockerode": "^3.3.0",
|
|
"msw": "^0.35.0",
|
|
"supertest": "^6.1.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"config.d.ts"
|
|
],
|
|
"configSchema": "config.d.ts"
|
|
}
|