99 lines
2.6 KiB
JSON
99 lines
2.6 KiB
JSON
{
|
|
"name": "@backstage/plugin-auth-backend",
|
|
"version": "0.2.5",
|
|
"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"
|
|
},
|
|
"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.3.3",
|
|
"@backstage/catalog-client": "^0.3.2",
|
|
"@backstage/catalog-model": "^0.4.0",
|
|
"@backstage/config": "^0.1.1",
|
|
"@types/express": "^4.17.6",
|
|
"compression": "^1.7.4",
|
|
"cookie-parser": "^1.4.5",
|
|
"cors": "^2.8.5",
|
|
"cross-fetch": "^3.0.6",
|
|
"express": "^4.17.1",
|
|
"express-promise-router": "^3.0.3",
|
|
"express-session": "^1.17.1",
|
|
"fs-extra": "^9.0.0",
|
|
"got": "^11.5.2",
|
|
"helmet": "^4.0.0",
|
|
"jose": "^1.27.1",
|
|
"jwt-decode": "^3.1.0",
|
|
"knex": "^0.21.6",
|
|
"moment": "^2.26.0",
|
|
"morgan": "^1.10.0",
|
|
"openid-client": "^4.2.1",
|
|
"passport": "^0.4.1",
|
|
"passport-github2": "^0.1.12",
|
|
"passport-gitlab2": "^5.0.0",
|
|
"passport-google-oauth20": "^2.0.0",
|
|
"passport-microsoft": "^0.1.0",
|
|
"passport-oauth2": "^1.5.0",
|
|
"passport-okta-oauth": "^0.0.1",
|
|
"passport-onelogin-oauth": "^0.0.1",
|
|
"passport-saml": "^1.3.3",
|
|
"uuid": "^8.0.0",
|
|
"winston": "^3.2.1",
|
|
"yn": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.4.0",
|
|
"@types/body-parser": "^1.19.0",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/express-session": "^1.17.2",
|
|
"@types/jwt-decode": "^3.1.0",
|
|
"@types/nock": "^11.1.0",
|
|
"@types/openid-client": "^3.7.0",
|
|
"@types/passport": "^1.0.3",
|
|
"@types/passport-github2": "^1.2.4",
|
|
"@types/passport-google-oauth20": "^2.0.3",
|
|
"@types/passport-microsoft": "^0.0.0",
|
|
"@types/passport-saml": "^1.1.2",
|
|
"msw": "^0.21.2",
|
|
"nock": "^13.0.5"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"migrations"
|
|
],
|
|
"configSchema": {
|
|
"$schema": "https://backstage.io/schema/config-v1",
|
|
"title": "@backstage/auth-backend",
|
|
"type": "object",
|
|
"properties": {
|
|
"auth": {
|
|
"type": "object",
|
|
"properties": {
|
|
"session": {
|
|
"type": "object",
|
|
"properties": {
|
|
"secret": {
|
|
"type": "string",
|
|
"visibility": "secret"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|