Files
backstage/plugins/azure-functions-backend/package.json
T
Wesley 57c65440a3 fix package depends
update yarn.lock

Signed-off-by: Wesley <wpattison08@gmail.com>
2022-09-13 06:42:33 +02:00

59 lines
1.5 KiB
JSON

{
"name": "@backstage/plugin-azure-functions-backend",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/azure-functions-backend"
},
"keywords": [
"backstage",
"functions",
"azure"
],
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@azure/arm-appservice": "^13.0.0",
"@azure/identity": "^2.1.0",
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/plugin-azure-functions-common": "^0.0.1",
"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"node-fetch": "^2.6.7",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@types/supertest": "^2.0.8",
"msw": "^0.44.0",
"supertest": "^4.0.2"
},
"files": [
"dist"
]
}