forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
209 lines (209 loc) · 6.43 KB
/
package.json
File metadata and controls
209 lines (209 loc) · 6.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "@janus-idp/cli",
"description": "CLI for developing Backstage plugins and apps",
"version": "3.6.1",
"deprecated": "This package is deprecated and will no longer receive updates. Please migrate to @red-hat-developer-hub/cli. See https://github.com/redhat-developer/rhdh-cli for more information.",
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "cli"
},
"homepage": "https://janus-idp.io",
"repository": "github:janus-idp/backstage-plugins",
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"scripts": {
"build": "backstage-cli package build",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"test": "backstage-cli package test --passWithNoTests --coverage",
"clean": "backstage-cli package clean",
"start": "nodemon --"
},
"bin": {
"janus-cli": "bin/janus-cli"
},
"dependencies": {
"@backstage/cli-common": "^0.1.15",
"@backstage/cli-node": "^0.2.12",
"@backstage/config": "^1.3.2",
"@backstage/config-loader": "^1.9.5",
"@backstage/errors": "^1.2.7",
"@backstage/types": "^1.2.1",
"@manypkg/get-packages": "^1.1.3",
"@openshift/dynamic-plugin-sdk-webpack": "^3.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^6.5.1",
"@yarnpkg/lockfile": "^1.1.0",
"@yarnpkg/parsers": "^3.0.0-rc.4",
"bfj": "^8.0.0",
"chalk": "^4.0.0",
"chokidar": "^3.3.1",
"codeowners": "^5.1.1",
"commander": "^9.1.0",
"css-loader": "^6.5.1",
"esbuild": "^0.23.0",
"esbuild-loader": "^2.18.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.0.0-alpha.8",
"fs-extra": "^10.1.0",
"gitconfiglocal": "2.1.0",
"handlebars": "^4.7.7",
"html-webpack-plugin": "^5.3.1",
"is-native-module": "^1.1.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.4.2",
"node-libs-browser": "^2.2.1",
"npm-packlist": "^5.0.0",
"ora": "^5.3.0",
"postcss": "^8.2.13",
"react-dev-utils": "^12.0.0-next.60",
"react-refresh": "^0.14.0",
"recursive-readdir": "^2.2.2",
"semver": "^7.5.4",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.3",
"typescript-json-schema": "^0.64.0",
"webpack": "^5.89.0",
"webpack-dev-server": "^4.15.1",
"yaml": "^2.5.1",
"yml-loader": "^2.1.0",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "0.29.5",
"@backstage/core-plugin-api": "1.10.3",
"@types/fs-extra": "9.0.13",
"@types/mock-fs": "4.13.4",
"@types/node": "18.19.34",
"@types/npm-packlist": "3.0.0",
"@types/recursive-readdir": "2.2.4",
"@types/yarnpkg__lockfile": "1.1.9",
"mock-fs": "5.2.0",
"nodemon": "3.1.3",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"type-fest": "4.20.1"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7.21.2"
},
"peerDependenciesMeta": {
"@microsoft/api-extractor": {
"optional": true
}
},
"files": [
"asset-types",
"templates",
"config",
"bin",
"dist/**/*.js"
],
"nodemonConfig": {
"watch": "./src",
"exec": "bin/janus-cli",
"ext": "ts"
},
"configSchema": {
"$schema": "https://backstage.io/schema/config-v1",
"title": "@janus-idp/cli",
"type": "object",
"properties": {
"app": {
"type": "object",
"properties": {
"baseUrl": {
"type": "string",
"visibility": "frontend"
},
"title": {
"type": "string",
"visibility": "frontend"
},
"datadogRum": {
"type": "object",
"description": "Datadog RUM events configuration",
"properties": {
"env": {
"type": "string",
"visibility": "frontend",
"description": "Environment for Datadog RUM events"
},
"clientToken": {
"type": "string",
"visibility": "frontend",
"description": "clientToken for Datadog RUM events"
},
"applicationId": {
"type": "string",
"visibility": "frontend",
"description": "applicationId for Datadog RUM events"
},
"site": {
"type": "string",
"visibility": "frontend",
"description": "site for Datadog RUM events"
}
},
"required": [
"clientToken",
"applicationId"
]
},
"listen": {
"type": "object",
"description": "Listening configuration for local development",
"properties": {
"host": {
"type": "string",
"visibility": "frontend",
"description": "The host that the frontend should be bound to. Only used for local development."
},
"port": {
"type": "number",
"visibility": "frontend",
"description": "The port that the frontend should be bound to. Only used for local development."
}
}
},
"https": {
"type": "object",
"description": "Only used for local development. The https object is passed to webpack in order to enable using https on localhost.",
"properties": {
"certificate": {
"type": "object",
"description": "Parent object containing certificate and the private key",
"required": [
"key",
"cert"
],
"properties": {
"key": {
"type": "string",
"visibility": "secret",
"description": "Https Certificate private key. Use $file to load in a file"
},
"cert": {
"type": "string",
"visibility": "secret",
"description": "Https Certificate. Use $file to load in a file"
}
}
}
}
}
}
}
}
}
}