Files
backstage/packages/backend-next/package.json
T
Oleg 88fbb3d075 kubernetes plugin adds support for the new plugin system (#16719)
* kubernetes plugin adds support for the new plugin system

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>

* expose experimental plugin support as an alpha feature in kubernetes-backend

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>

* remove duplicate changeset

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>

* update permissions

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>

---------

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>
2023-03-28 11:19:00 -04:00

48 lines
1.5 KiB
JSON

{
"name": "example-backend-next",
"version": "0.0.10-next.0",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"backstage": {
"role": "backend"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/backend-next"
},
"keywords": [
"backstage"
],
"scripts": {
"start": "EXPERIMENTAL_BACKEND_START=1 backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-defaults": "workspace:^",
"@backstage/plugin-app-backend": "workspace:^",
"@backstage/plugin-catalog-backend": "workspace:^",
"@backstage/plugin-kubernetes-backend": "workspace:^",
"@backstage/plugin-scaffolder-backend": "workspace:^",
"@backstage/plugin-search-backend": "workspace:^",
"@backstage/plugin-search-backend-module-catalog": "workspace:^",
"@backstage/plugin-search-backend-module-explore": "workspace:^",
"@backstage/plugin-search-backend-module-techdocs": "workspace:^",
"@backstage/plugin-search-backend-node": "workspace:^",
"@backstage/plugin-techdocs-backend": "workspace:^",
"@backstage/plugin-todo-backend": "workspace:^"
},
"devDependencies": {
"@backstage/cli": "workspace:^"
},
"files": [
"dist"
]
}