-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "backstage-grpc-playground-backend",
"version": "0.3.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"author": {
"name": "Zalopay-OSS",
"url": "https://github.com/zalopay-oss"
},
"description": "A backend plugin for Backstage supporting gRPC playground",
"homepage": "https://github.com/zalopay-oss/backstage-grpc-playground-backend",
"repository": {
"url": "https://github.com/zalopay-oss/backstage-grpc-playground-backend"
},
"keywords": [
"backstage",
"backstage plugin",
"gRPC",
"bloomrpc",
"gRPC playground",
"Zalopay"
],
"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.19.1",
"@backstage/config": "^1.0.8",
"@backstage/errors": "^1.2.1",
"@backstage/integration": "^1.4.5",
"@backstage/plugin-catalog-backend": "^1.11.0",
"@backstage/types": "^1.1.0",
"@grpc/grpc-js": "^1.6.7",
"@grpc/proto-loader": "^0.6.12",
"@protobuf-ts/protoc": "^2.6.0",
"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"knex": "^2.0.0",
"lodash": "^4.17.21",
"multer": "^1.4.4",
"protobufjs": "^6.11.2",
"tar": "^6.1.11",
"uuid": "^8.3.2",
"winston": "^3.2.1",
"yaml": "^2.0.0",
"yn": "^4.0.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/cli": "^0.22.9",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.151",
"@types/multer": "^1.4.7",
"@types/node": "^14.18.18",
"@types/supertest": "^2.0.8",
"@types/tar": "^6.1.1",
"@types/uuid": "^8.3.4",
"msw": "^0.35.0",
"supertest": "^4.0.2"
},
"files": [
"dist",
"migrations",
"config.d.ts"
]
}