7a82818590
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
91 lines
2.5 KiB
JSON
91 lines
2.5 KiB
JSON
{
|
|
"name": "@backstage/create-app",
|
|
"description": "Create app package for Backstage",
|
|
"version": "0.3.28",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"homepage": "https://backstage.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/backstage/backstage",
|
|
"directory": "packages/create-app"
|
|
},
|
|
"keywords": [
|
|
"backstage"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.cjs.js",
|
|
"bin": {
|
|
"backstage-create-app": "bin/backstage-create-app"
|
|
},
|
|
"scripts": {
|
|
"build": "backstage-cli build --outputs cjs",
|
|
"lint": "backstage-cli lint",
|
|
"clean": "backstage-cli clean",
|
|
"start": "nodemon --"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/cli-common": "^0.1.1",
|
|
"chalk": "^4.0.0",
|
|
"commander": "^6.1.0",
|
|
"fs-extra": "^9.0.0",
|
|
"handlebars": "^4.7.3",
|
|
"inquirer": "^7.0.4",
|
|
"ora": "^5.3.0",
|
|
"recursive-readdir": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.1",
|
|
"@types/inquirer": "^7.3.1",
|
|
"@types/react-dev-utils": "^9.0.4",
|
|
"@types/recursive-readdir": "^2.2.0",
|
|
"ts-node": "^9.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@backstage/backend-common": "*",
|
|
"@backstage/catalog-client": "*",
|
|
"@backstage/catalog-model": "*",
|
|
"@backstage/cli": "*",
|
|
"@backstage/config": "*",
|
|
"@backstage/core-app-api": "*",
|
|
"@backstage/core-components": "*",
|
|
"@backstage/core-plugin-api": "*",
|
|
"@backstage/errors": "*",
|
|
"@backstage/plugin-api-docs": "*",
|
|
"@backstage/plugin-app-backend": "*",
|
|
"@backstage/plugin-auth-backend": "*",
|
|
"@backstage/plugin-catalog": "*",
|
|
"@backstage/plugin-catalog-backend": "*",
|
|
"@backstage/plugin-catalog-import": "*",
|
|
"@backstage/plugin-explore": "*",
|
|
"@backstage/plugin-github-actions": "*",
|
|
"@backstage/plugin-lighthouse": "*",
|
|
"@backstage/plugin-proxy-backend": "*",
|
|
"@backstage/plugin-rollbar-backend": "*",
|
|
"@backstage/plugin-scaffolder": "*",
|
|
"@backstage/plugin-search": "*",
|
|
"@backstage/plugin-search-backend": "*",
|
|
"@backstage/plugin-search-backend-node": "*",
|
|
"@backstage/plugin-scaffolder-backend": "*",
|
|
"@backstage/plugin-tech-radar": "*",
|
|
"@backstage/plugin-techdocs": "*",
|
|
"@backstage/plugin-techdocs-backend": "*",
|
|
"@backstage/plugin-user-settings": "*",
|
|
"@backstage/integration-react": "*",
|
|
"@backstage/test-utils": "*",
|
|
"@backstage/theme": "*"
|
|
},
|
|
"nodemonConfig": {
|
|
"watch": "./src",
|
|
"exec": "bin/backstage-create-app",
|
|
"ext": "ts"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"templates"
|
|
]
|
|
}
|