-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "@pagerduty/backstage-plugin-backend",
"version": "NPM_PACKAGE_VERSION",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"pluginId": "pagerduty",
"role": "backend-plugin",
"pluginPackages": [
"@pagerduty/backstage-plugin",
"@pagerduty/backstage-plugin-common",
"@pagerduty/backstage-plugin-backend"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pagerduty/backstage-plugin-backend",
"directory": "."
},
"homepage": "https://pagerduty.github.io/backstage-plugin-docs/index.html",
"scripts": {
"start": "yarn tsc && backstage-cli package start",
"build": "yarn tsc && 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-defaults": "^0.4.1",
"@backstage/backend-plugin-api": "^0.7.0",
"@backstage/backend-tasks": "^0.5.27",
"@backstage/catalog-client": "^1.6.5",
"@backstage/catalog-model": "^1.5.0",
"@backstage/config": "^1.2.0",
"@backstage/core-plugin-api": "^1.9.3",
"@backstage/plugin-catalog-common": "^1.0.25",
"@backstage/plugin-catalog-node": "^1.12.4",
"@backstage/plugin-scaffolder-node": "^0.4.8",
"@material-ui/core": "^4.12.4",
"@pagerduty/backstage-plugin-common": "^0.2.1",
"@rjsf/core": "^5.14.3",
"@types/express": "^4.17.6",
"express": "^4.19.2",
"express-promise-router": "^4.1.0",
"knex": "^3.0.0",
"luxon": "^3.4.4",
"node-fetch": "^2.6.7",
"uuid": "^9.0.1",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.4.4",
"@backstage/cli": "^0.26.11",
"@types/node": "^20.9.2",
"@types/node-fetch": "2.6.11",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.8",
"@types/webpack-env": "1.18.4",
"better-sqlite3": "^10.0.0",
"jest-mock": "29.7.0",
"msw": "^1.0.0",
"supertest": "^6.2.4",
"typescript": "~5.3.0"
},
"files": [
"dist",
"config.d.ts",
"migrations/**/*.{js,d.ts}"
],
"configSchema": "config.d.ts",
"packageManager": "yarn@3.8.2"
}