Files
backstage/packages/backend-defaults/package.json
T
github-actions[bot] 77da22e67f Version Packages (next)
2024-05-28 13:43:01 +00:00

121 lines
3.4 KiB
JSON

{
"name": "@backstage/backend-defaults",
"version": "0.3.0-next.1",
"description": "Backend defaults used by Backstage backend apps",
"backstage": {
"role": "node-library"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"backstage"
],
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/backend-defaults"
},
"license": "Apache-2.0",
"exports": {
".": "./src/index.ts",
"./cache": "./src/entrypoints/cache/index.ts",
"./database": "./src/entrypoints/database/index.ts",
"./discovery": "./src/entrypoints/discovery/index.ts",
"./lifecycle": "./src/entrypoints/lifecycle/index.ts",
"./permissions": "./src/entrypoints/permissions/index.ts",
"./rootConfig": "./src/entrypoints/rootConfig/index.ts",
"./rootLifecycle": "./src/entrypoints/rootLifecycle/index.ts",
"./scheduler": "./src/entrypoints/scheduler/index.ts",
"./urlReader": "./src/entrypoints/urlReader/index.ts",
"./package.json": "./package.json"
},
"main": "src/index.ts",
"types": "src/index.ts",
"typesVersions": {
"*": {
"cache": [
"src/entrypoints/cache/index.ts"
],
"database": [
"src/entrypoints/database/index.ts"
],
"discovery": [
"src/entrypoints/discovery/index.ts"
],
"lifecycle": [
"src/entrypoints/lifecycle/index.ts"
],
"permissions": [
"src/entrypoints/permissions/index.ts"
],
"rootConfig": [
"src/entrypoints/rootConfig/index.ts"
],
"rootLifecycle": [
"src/entrypoints/rootLifecycle/index.ts"
],
"scheduler": [
"src/entrypoints/scheduler/index.ts"
],
"urlReader": [
"src/entrypoints/urlReader/index.ts"
],
"package.json": [
"package.json"
]
}
},
"files": [
"config.d.ts",
"dist",
"migrations"
],
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"start": "backstage-cli package start",
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/backend-app-api": "workspace:^",
"@backstage/backend-common": "workspace:^",
"@backstage/backend-dev-utils": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config-loader": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/plugin-events-node": "workspace:^",
"@backstage/plugin-permission-node": "workspace:^",
"@backstage/types": "workspace:^",
"@keyv/memcache": "^1.3.5",
"@keyv/redis": "^2.5.3",
"@opentelemetry/api": "^1.3.0",
"better-sqlite3": "^9.0.0",
"cron": "^3.0.0",
"fs-extra": "^11.2.0",
"keyv": "^4.5.2",
"knex": "^3.0.0",
"lodash": "^4.17.21",
"luxon": "^3.0.0",
"mysql2": "^3.0.0",
"p-limit": "^3.1.0",
"pg": "^8.11.3",
"pg-connection-string": "^2.3.0",
"uuid": "^9.0.0",
"yn": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/backend-test-utils": "workspace:^",
"@backstage/cli": "workspace:^",
"wait-for-expect": "^3.0.2"
},
"configSchema": "config.d.ts"
}