-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@bestsellerit/backstage-plugin-harbor-backend",
"version": "${CIRCLE_TAG}",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"repository": "git://github.com/BESTSELLER/backstage-plugin-harbor-backend.git",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin"
},
"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.15.0",
"@backstage/config": "^1.0.0",
"@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.18.1",
"@types/jest": "^27.5.0",
"@types/node-fetch": "^2.6.1",
"@types/supertest": "^2.0.8",
"msw": "^0.35.0",
"prettier": "^2.4.1",
"supertest": "^6.1.6"
},
"files": [
"dist",
"config.d.ts"
]
}