103 lines
2.7 KiB
JSON
103 lines
2.7 KiB
JSON
{
|
|
"name": "@backstage/backend-app-api",
|
|
"version": "1.0.0-next.2",
|
|
"description": "Core API 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-app-api"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./alpha": "./src/alpha.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"alpha": [
|
|
"src/alpha.ts"
|
|
],
|
|
"package.json": [
|
|
"package.json"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"config.d.ts",
|
|
"migrations/**/*.{js,d.ts}"
|
|
],
|
|
"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-common": "workspace:^",
|
|
"@backstage/backend-plugin-api": "workspace:^",
|
|
"@backstage/cli-common": "workspace:^",
|
|
"@backstage/config": "workspace:^",
|
|
"@backstage/config-loader": "workspace:^",
|
|
"@backstage/errors": "workspace:^",
|
|
"@backstage/plugin-auth-node": "workspace:^",
|
|
"@backstage/plugin-permission-node": "workspace:^",
|
|
"@backstage/types": "workspace:^",
|
|
"@manypkg/get-packages": "^1.1.3",
|
|
"compression": "^1.7.4",
|
|
"cookie": "^0.6.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.17.1",
|
|
"express-promise-router": "^4.1.0",
|
|
"helmet": "^6.0.0",
|
|
"jose": "^5.0.0",
|
|
"knex": "^3.0.0",
|
|
"lodash": "^4.17.21",
|
|
"logform": "^2.3.2",
|
|
"luxon": "^3.0.0",
|
|
"minimatch": "^9.0.0",
|
|
"minimist": "^1.2.5",
|
|
"morgan": "^1.10.0",
|
|
"node-fetch": "^2.7.0",
|
|
"node-forge": "^1.3.1",
|
|
"path-to-regexp": "^8.0.0",
|
|
"selfsigned": "^2.0.0",
|
|
"stoppable": "^1.1.0",
|
|
"triple-beam": "^1.4.1",
|
|
"uuid": "^9.0.0",
|
|
"winston": "^3.2.1",
|
|
"winston-transport": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/backend-defaults": "workspace:^",
|
|
"@backstage/backend-test-utils": "workspace:^",
|
|
"@backstage/cli": "workspace:^",
|
|
"@types/compression": "^1.7.0",
|
|
"@types/http-errors": "^2.0.0",
|
|
"@types/minimist": "^1.2.0",
|
|
"@types/morgan": "^1.9.0",
|
|
"@types/node-forge": "^1.3.0",
|
|
"@types/stoppable": "^1.1.0",
|
|
"http-errors": "^2.0.0",
|
|
"msw": "^1.0.0",
|
|
"supertest": "^7.0.0"
|
|
},
|
|
"configSchema": "config.d.ts"
|
|
}
|