-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 4.18 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
{
"name": "backend",
"version": "0.0.0",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"private": true,
"backstage": {
"role": "backend"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/bulk-import/packages/backend"
},
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"build-image": "docker build ../.. -f Dockerfile --tag backstage"
},
"dependencies": {
"@backstage-community/plugin-rbac-backend": "^7.5.0",
"@backstage/backend-defaults": "^0.17.4",
"@backstage/backend-plugin-api": "^1.9.2",
"@backstage/catalog-model": "^1.9.0",
"@backstage/config": "^1.3.8",
"@backstage/errors": "^1.3.1",
"@backstage/integration": "^2.0.3",
"@backstage/plugin-app-backend": "^0.5.15",
"@backstage/plugin-auth-backend": "^0.29.1",
"@backstage/plugin-auth-backend-module-github-provider": "^0.5.4",
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.4.4",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.20",
"@backstage/plugin-auth-node": "^0.7.2",
"@backstage/plugin-catalog-backend": "^3.8.0",
"@backstage/plugin-catalog-backend-module-gitlab": "^0.8.4",
"@backstage/plugin-catalog-backend-module-logs": "^0.1.23",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "^0.2.21",
"@backstage/plugin-catalog-node": "^2.2.2",
"@backstage/plugin-notifications-backend": "^0.6.6",
"@backstage/plugin-permission-backend": "^0.7.13",
"@backstage/plugin-permission-backend-module-allow-all-policy": "^0.2.20",
"@backstage/plugin-permission-common": "^0.9.9",
"@backstage/plugin-permission-node": "^0.11.1",
"@backstage/plugin-proxy-backend": "^0.6.14",
"@backstage/plugin-scaffolder-backend": "^4.0.1",
"@backstage/plugin-scaffolder-backend-module-github": "^0.9.10",
"@backstage/plugin-scaffolder-backend-module-gitlab": "^0.11.7",
"@backstage/plugin-search-backend": "^2.1.3",
"@backstage/plugin-search-backend-module-catalog": "^0.3.16",
"@backstage/plugin-search-backend-module-pg": "^0.5.56",
"@backstage/plugin-search-backend-module-techdocs": "^0.4.15",
"@backstage/plugin-search-backend-node": "^1.4.5",
"@backstage/plugin-signals-backend": "^0.3.16",
"@backstage/plugin-techdocs-backend": "^2.2.1",
"@gitbeaker/rest": "^43.4.0",
"@octokit/auth-app": "^6.0.3",
"@octokit/rest": "^20.0.2",
"@red-hat-developer-hub/backstage-plugin-bulk-import-backend": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-bulk-import-common": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-orchestrator-backend": "^8.5.0",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common": "^3.3.0",
"@red-hat-developer-hub/backstage-plugin-scaffolder-backend-module-orchestrator": "^1.3.0",
"ajv-formats": "^3.0.1",
"app": "link:../app",
"better-sqlite3": "^12.4.1",
"eventsource-client": "^1.2.0",
"express": "^4.17.1",
"git-url-parse": "^14.0.0",
"js-yaml": "^4.1.0",
"just-kebab-case": "4.2.0",
"knex": "^3.0.0",
"luxon": "^3.4.4",
"node-fetch": "^2.6.7",
"node-gyp": "^10.0.0",
"openapi-backend": "^5.10.6",
"pg": "^8.11.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.11.4",
"@backstage/catalog-client": "^1.16.0",
"@backstage/cli": "^0.36.3",
"@backstage/config": "^1.3.8",
"@backstage/plugin-catalog-backend": "^3.8.0",
"@backstage/types": "^1.2.2",
"@openapitools/openapi-generator-cli": "2.34.0",
"@spotify/prettier-config": "^15.0.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
"@types/git-url-parse": "^9.0.0",
"@types/knex": "^0.16.1",
"@types/luxon": "^2.0.4",
"@types/node-fetch": "^2.5.12",
"@types/supertest": "2.0.16",
"js-yaml-cli": "0.6.0",
"msw": "1.3.5",
"openapicmd": "2.9.2",
"prettier": "3.8.4",
"supertest": "6.3.4"
},
"files": [
"dist"
]
}