e171620164
Signed-off-by: Camila Belo <camilaibs@gmail.com>
142 lines
4.1 KiB
JSON
142 lines
4.1 KiB
JSON
{
|
|
"name": "@backstage/backend-defaults",
|
|
"version": "0.3.0-next.3",
|
|
"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": {
|
|
"@aws-sdk/abort-controller": "^3.347.0",
|
|
"@aws-sdk/client-codecommit": "^3.350.0",
|
|
"@aws-sdk/client-s3": "^3.350.0",
|
|
"@aws-sdk/credential-providers": "^3.350.0",
|
|
"@aws-sdk/types": "^3.347.0",
|
|
"@backstage/backend-app-api": "workspace:^",
|
|
"@backstage/backend-dev-utils": "workspace:^",
|
|
"@backstage/backend-plugin-api": "workspace:^",
|
|
"@backstage/config": "workspace:^",
|
|
"@backstage/config-loader": "workspace:^",
|
|
"@backstage/errors": "workspace:^",
|
|
"@backstage/integration": "workspace:^",
|
|
"@backstage/integration-aws-node": "workspace:^",
|
|
"@backstage/plugin-events-node": "workspace:^",
|
|
"@backstage/plugin-permission-node": "workspace:^",
|
|
"@backstage/types": "workspace:^",
|
|
"@google-cloud/storage": "^7.0.0",
|
|
"@keyv/memcache": "^1.3.5",
|
|
"@keyv/redis": "^2.5.3",
|
|
"@octokit/rest": "^19.0.3",
|
|
"@opentelemetry/api": "^1.3.0",
|
|
"archiver": "^6.0.0",
|
|
"base64-stream": "^1.0.0",
|
|
"better-sqlite3": "^9.0.0",
|
|
"concat-stream": "^2.0.0",
|
|
"cron": "^3.0.0",
|
|
"fs-extra": "^11.2.0",
|
|
"git-url-parse": "^14.0.0",
|
|
"isomorphic-git": "^1.23.0",
|
|
"keyv": "^4.5.2",
|
|
"knex": "^3.0.0",
|
|
"lodash": "^4.17.21",
|
|
"luxon": "^3.0.0",
|
|
"minimatch": "^9.0.0",
|
|
"mysql2": "^3.0.0",
|
|
"node-fetch": "^2.6.7",
|
|
"p-limit": "^3.1.0",
|
|
"pg": "^8.11.3",
|
|
"pg-connection-string": "^2.3.0",
|
|
"raw-body": "^2.4.1",
|
|
"tar": "^6.1.12",
|
|
"uuid": "^9.0.0",
|
|
"yauzl": "^3.0.0",
|
|
"yn": "^4.0.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@aws-sdk/util-stream-node": "^3.350.0",
|
|
"@backstage/backend-plugin-api": "workspace:^",
|
|
"@backstage/backend-test-utils": "workspace:^",
|
|
"@backstage/cli": "workspace:^",
|
|
"aws-sdk-client-mock": "^4.0.0",
|
|
"msw": "^1.0.0",
|
|
"wait-for-expect": "^3.0.2"
|
|
},
|
|
"configSchema": "config.d.ts"
|
|
}
|