-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 KB
/
package.json
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
{
"name": "@bestsellerit/backstage-plugin-harbor-backend",
"version": "${CIRCLE_TAG}",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"directory": "."
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "harbor",
"pluginPackages": [
"@bestsellerit/backstage-plugin-harbor",
"@bestsellerit/backstage-plugin-harbor-backend"
]
},
"configSchema": "config.d.ts",
"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",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.23.3",
"@backstage/backend-plugin-api": "^0.7.0",
"@backstage/config": "^1.0.0",
"@backstage/errors": "^1.2.4",
"@types/express": "*",
"express": "^4.18.1",
"express-promise-router": "^4.1.0",
"js-base64": "^3.7.2",
"node-fetch": "^2.6.7",
"redis": "^4.1.0",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "0.21.0",
"@types/jest": "^27.5.0",
"@types/node-fetch": "^2.6.1",
"@types/supertest": "^2.0.8",
"msw": "1.3.3",
"prettier": "^2.4.1",
"supertest": "^6.1.6"
},
"files": [
"dist",
"config.d.ts"
]
}