-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.32 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.32 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20 || 22"
},
"scripts": {
"start": "backstage-cli repo start",
"build:backend": "yarn workspace backend build",
"build": "yarn tsc:plugins && yarn build:plugins && yarn tsc",
"build:plugins": "yarn workspace @pagerduty/backstage-plugin-common build && yarn workspace @pagerduty/backstage-plugin build && yarn workspace @pagerduty/backstage-plugin-backend build && yarn workspace @pagerduty/backstage-plugin-entity-processor build && yarn workspace @pagerduty/backstage-plugin-scaffolder-actions build",
"build:backstage": "backstage-cli repo build --all",
"build-image": "yarn workspace backend build-image",
"tsc": "tsc",
"tsc:plugins": "tsc --project tsconfig.plugins.json --skipLibCheck",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"test:e2e": "playwright test",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"new": "backstage-cli new",
"install:quiet": "yarn install --silent",
"version-packages": "changeset version",
"release": "yarn build && yarn workspaces foreach --all --parallel --include '{plugins/backstage-plugin,plugins/backstage-plugin-backend,plugins/backstage-plugin-entity-processor,plugins/backstage-plugin-scaffolder-actions,plugins/backstage-plugin-common}' npm publish --access public --tolerate-republish",
"studio:start": "yarn portal-cli studio start"
},
"workspaces": {
"packages": [
"plugins/*",
"packages/*"
]
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@backstage/e2e-test-utils": "backstage:^",
"@backstage/eslint-plugin": "backstage:^",
"@backstage/test-utils": "backstage:^",
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@mui/system": "^5.15.19",
"@playwright/test": "^1.32.3",
"@rjsf/utils": "^5.19.3",
"@spotify/eslint-config-typescript": "^15.0.0",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/portal-cli": "^0.1.3",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.3.1",
"@types/node": "^20.9.2",
"@types/node-fetch": "2.6.11",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^10.0.0",
"@types/webpack-env": "1.18.4",
"@typescript-eslint/eslint-plugin": "8",
"@typescript-eslint/parser": "8",
"better-sqlite3": "^10.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.0",
"eslint": "8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-testing-library": "^7.6.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-mock": "29.7.0",
"knip": "^5.73.4",
"msw": "^1.0.0",
"node-gyp": "^10.0.0",
"prettier": "^2.3.2",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-router-dom": "^6.3.0",
"supertest": "^6.2.4",
"ts-jest": "^29.1.4",
"typescript": "~5.8.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@backstage/cli": "^0.33.0",
"typescript": "~5.8.0",
"@testing-library/react": "^16.0.0",
"@testing-library/dom": "^10.0.0",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"@material-ui/core": "^4.12.4"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "yarn@4.4.1",
"peerDependencies": {
"@mui/system": "^5.0.0",
"@rjsf/utils": "^4.0.0",
"@testing-library/react": "^13.0.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"prettier": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0"
}
}