69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "@backstage/create-app",
|
|
"description": "A CLI that helps you create your own Backstage app",
|
|
"version": "0.5.12-next.1",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"backstage": {
|
|
"role": "cli"
|
|
},
|
|
"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 package build",
|
|
"lint": "backstage-cli package lint",
|
|
"test": "backstage-cli package test",
|
|
"clean": "backstage-cli package clean",
|
|
"prepack": "node scripts/prepack.js",
|
|
"postpack": "node scripts/postpack.js",
|
|
"start": "yarn nodemon --",
|
|
"add-lock-seed": "node scripts/add-lock-seed.js"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/cli-common": "workspace:^",
|
|
"chalk": "^4.0.0",
|
|
"commander": "^12.0.0",
|
|
"fs-extra": "^11.2.0",
|
|
"handlebars": "^4.7.3",
|
|
"inquirer": "^8.2.0",
|
|
"node-fetch": "^2.6.7",
|
|
"ora": "^5.3.0",
|
|
"recursive-readdir": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/backend-test-utils": "workspace:^",
|
|
"@backstage/cli": "workspace:^",
|
|
"@types/command-exists": "^1.2.0",
|
|
"@types/fs-extra": "^11.0.0",
|
|
"@types/inquirer": "^8.1.3",
|
|
"@types/node": "^18.17.8",
|
|
"@types/recursive-readdir": "^2.2.0",
|
|
"msw": "^1.0.0",
|
|
"nodemon": "^3.0.1",
|
|
"ts-node": "^10.0.0"
|
|
},
|
|
"nodemonConfig": {
|
|
"watch": "./src",
|
|
"exec": "bin/backstage-create-app",
|
|
"ext": "ts"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"templates"
|
|
]
|
|
}
|