-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.43 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.43 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@red-hat-developer-hub/backstage-plugin-orchestrator-backend",
"version": "8.3.1",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "backend-plugin",
"supported-versions": "1.39.1",
"pluginId": "orchestrator",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-orchestrator",
"@red-hat-developer-hub/backstage-plugin-orchestrator-backend",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common"
]
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"package.json": [
"package.json"
]
}
},
"homepage": "https://red.ht/rhdh",
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/orchestrator/plugins/orchestrator-backend"
},
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"keywords": [
"support:tech-preview",
"lifecycle:active",
"backstage",
"plugin",
"orchestrator",
"workflows"
],
"files": [
"app-config.yaml",
"dist",
"dist-dynamic/*.*",
"dist-dynamic/dist/**",
"static"
],
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"test": "backstage-cli package test --passWithNoTests --coverage",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"export-dynamic": "janus-cli package export-dynamic-plugin"
},
"dependencies": {
"@backstage/backend-defaults": "^0.12.0",
"@backstage/backend-plugin-api": "^1.4.2",
"@backstage/catalog-client": "^1.11.0",
"@backstage/core-plugin-api": "^1.10.9",
"@backstage/errors": "^1.2.7",
"@backstage/integration": "^1.17.1",
"@backstage/plugin-catalog-node": "^1.18.0",
"@backstage/plugin-permission-common": "^0.9.1",
"@backstage/plugin-permission-node": "^0.10.3",
"@backstage/plugin-scaffolder-backend": "^2.2.0",
"@backstage/plugin-scaffolder-node": "^0.11.0",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common": "workspace:^",
"@urql/core": "^6.0.1",
"ajv-formats": "^2.1.1",
"cloudevents": "^8.0.0",
"express": "^4.21.2",
"express-promise-router": "^4.1.1",
"fs-extra": "^10.1.0",
"isomorphic-git": "^1.23.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"openapi-backend": "^5.10.5",
"yn": "^5.0.0"
},
"devDependencies": {
"@backstage-community/plugin-rbac-common": "^1.12.1",
"@backstage/backend-test-utils": "^1.8.0",
"@backstage/cli": "^0.34.1",
"@janus-idp/backstage-plugin-audit-log-node": "^1.7.1",
"@janus-idp/cli": "3.6.1",
"@types/express": "4.17.23",
"@types/fs-extra": "11.0.4",
"@types/json-schema": "7.0.15",
"prettier": "3.6.2"
},
"peerDependencies": {
"@backstage-community/plugin-rbac-common": "^1.12.1",
"@janus-idp/backstage-plugin-audit-log-node": "^1.7.1"
},
"maintainers": [
"@mlibra",
"@batzionb",
"@gciavarrini"
],
"author": "The Backstage Community"
}