-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.45 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
{
"name": "@red-hat-developer-hub/backstage-plugin-bulk-import-backend",
"version": "7.3.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "bulk-import",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-bulk-import",
"@red-hat-developer-hub/backstage-plugin-bulk-import-backend",
"@red-hat-developer-hub/backstage-plugin-bulk-import-common"
]
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"package.json": [
"package.json"
]
}
},
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"postpack": "backstage-cli package postpack",
"prepack": "backstage-cli package prepack",
"start": "backstage-cli package start",
"test": "backstage-cli package test --passWithNoTests --coverage --detectOpenHandles",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"openapi": "./scripts/openapi.sh"
},
"dependencies": {
"@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-catalog-node": "^2.2.2",
"@backstage/plugin-permission-common": "^0.9.9",
"@backstage/plugin-permission-node": "^0.11.1",
"@gitbeaker/rest": "^43.4.0",
"@octokit/auth-app": "^7.2.2",
"@octokit/rest": "^20.0.2",
"@red-hat-developer-hub/backstage-plugin-bulk-import-common": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common": "^3.2.0",
"ajv-formats": "^3.0.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",
"openapi-backend": "^5.10.6"
},
"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.25",
"@types/git-url-parse": "^9.0.0",
"@types/knex": "^0.16.1",
"@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",
"migrations",
"config.d.ts",
"dist-dynamic/*.*",
"dist-dynamic/dist/**",
"app-config.yaml"
],
"configSchema": "config.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/bulk-import/plugins/bulk-import-backend"
},
"keywords": [
"backstage",
"plugin"
],
"homepage": "https://red.ht/rhdh",
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"maintainers": [
"@rm3l"
],
"author": "Red Hat"
}