-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "backstage-deploy",
"description": "CLI for Backstage deployment tooling",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "cli"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage-deploy",
"directory": "src"
},
"keywords": [
"backstage-deploy"
],
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"start": "nodemon --",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"build:all": "backstage-cli repo build --all",
"lint:all": "backstage-cli repo lint",
"prepare": "husky install",
"postinstall": "husky install || true",
"changeset": "changeset add",
"changeset:version": "changeset version",
"release": "changeset publish",
"pre-commit": "lint-staged"
},
"bin": "bin/backstage-deploy",
"dependencies": {
"@backstage/cli-common": "^0.1.12",
"@backstage/cli-node": "^0.1.0",
"@backstage/errors": "^1.1.5",
"@pulumi/aws": "^5.30.0",
"@pulumi/awsx": "^1.0.2",
"@pulumi/command": "^0.9.1",
"@pulumi/docker": "^4.4.4",
"@pulumi/pulumi": "^3.55.0",
"chalk": "^4.0.0",
"commander": "^10.0.1",
"find-process": "^1.4.7",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.7",
"inquirer": "^8.2.0",
"minimatch": "^9.0.0",
"ora": "^5.3.0",
"recursive-readdir": "^2.2.3"
},
"devDependencies": {
"@backstage/cli": "^0.22.6",
"@backstage/types": "^1.0.2",
"@changesets/cli": "^2.26.1",
"@spotify/eslint-plugin": "^14.1.3",
"@spotify/prettier-config": "^12.0.0",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/recursive-readdir": "^2.2.1",
"eslint": "^8.6.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.3.2",
"typescript": "~5.0.0"
},
"files": [
"bin",
"dist/**/*.js",
"templates"
],
"nodemonConfig": {
"watch": "./src",
"exec": "bin/backstage-deploy",
"ext": "ts"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.9.0"
}