-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 KB
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
{
"name": "@aws/plugin-scaffolder-backend-aws-apps-for-backstage",
"version": "0.4.1",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"description": "The Harmonix module for @backstage/plugin-scaffolder-backend",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/harmonix.git",
"directory": "backstage-plugins/plugins/scaffolder-backend-module-harmonix"
},
"bugs": {
"url": "https://github.com/awslabs/harmonix/issues"
},
"backstage": {
"role": "backend-plugin-module",
"pluginId": "scaffolder",
"pluginPackage": "@backstage/plugin-scaffolder-backend"
},
"scripts": {
"tsc": "tsc",
"tsc-config": "tsc --showConfig",
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test --all --watchAll=false",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.787.0",
"@aws-sdk/client-sfn": "^3.787.0",
"@aws-sdk/client-ssm": "^3.787.0",
"@aws-sdk/types": "^3.775.0",
"@aws-sdk/util-arn-parser": "^3.723.0",
"@aws/plugin-aws-apps-backend-for-backstage": "^0.4.0",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/catalog-client": "^1.9.1",
"@backstage/catalog-model": "^1.7.3",
"@backstage/config": "^1.3.2",
"@backstage/errors": "^1.2.4",
"@backstage/integration": "^1.16.2",
"@backstage/plugin-scaffolder-backend": "^2.1.1",
"@backstage/plugin-scaffolder-node": "^0.8.0",
"@backstage/types": "^1.2.1",
"lodash": "^4.17.23",
"winston": "^3.17.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@backstage/backend-common": "^0.25.0",
"@backstage/backend-test-utils": "^1.4.0",
"@backstage/cli": "^0.32.0",
"@backstage/plugin-scaffolder-node-test-utils": "^0.2.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "4.17.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.26.0",
"typescript": "~5.8.0"
},
"files": [
"dist"
]
}