-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 3.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@pagerduty/backstage-plugin",
"description": "A Backstage plugin that integrates towards PagerDuty",
"version": "NPM_PACKAGE_VERSION",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "pagerduty",
"pluginPackages": [
"@pagerduty/backstage-plugin",
"@pagerduty/backstage-plugin-common",
"@pagerduty/backstage-plugin-backend"
]
},
"homepage": "https://github.com/pagerduty/backstage-plugin",
"repository": {
"type": "git",
"url": "https://github.com/pagerduty/backstage-plugin.git",
"directory": "."
},
"keywords": [
"backstage",
"plugin",
"pagerduty"
],
"scripts": {
"build": "yarn tsc && backstage-cli package build && copyfiles -u 1 src/assets/*.svg ./",
"start": "backstage-cli package start",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepare": "husky install",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "^1.5.0",
"@backstage/core-components": "^0.14.9",
"@backstage/core-plugin-api": "^1.9.3",
"@backstage/errors": "^1.2.4",
"@backstage/plugin-catalog-react": "^1.12.2",
"@backstage/plugin-home-react": "^0.1.15",
"@backstage/theme": "^0.5.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/x-date-pickers": "^7.6.1",
"@pagerduty/backstage-plugin-common": "^0.2.1",
"@tanstack/react-query": "^5.40.1",
"classnames": "^2.2.6",
"luxon": "^3.4.1",
"material-react-table": "^2.13.0",
"react-use": "^17.2.4",
"uuid": "^10.0.0",
"validate-color": "^2.2.4"
},
"peerDependencies": {
"react": "^18.0.0 || ^20.0.0",
"react-dom": "^18.0.0 || ^20.0.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.26.11",
"@backstage/core-app-api": "^1.14.0",
"@backstage/dev-utils": "^1.0.35",
"@backstage/test-utils": "^1.5.8",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/dom": "^8.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.3.1",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"@types/uuid": "^10.0.0",
"copyfiles": "^2.4.1",
"msw": "^1.2.4",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-router-dom": "6.0.0-beta.0 || ^6.3.0",
"ts-jest": "^29.1.4",
"typescript": "^4.8.4"
},
"files": [
"dist/**/*",
"config.d.ts",
"assets/**/*"
],
"configSchema": "config.d.ts",
"packageManager": "[email protected]",
"module": "./dist/index.esm.js"
}