-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.1 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.1 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
{
"name": "app",
"version": "1.0.1",
"private": true,
"bundled": true,
"backstage": {
"role": "frontend"
},
"scripts": {
"start": "janus-cli package start",
"build": "janus-cli package build && node ../../scripts/generate-index-template.mjs",
"clean": "backstage-cli package clean",
"test": "backstage-cli package test --passWithNoTests --coverage",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"dependencies": {
"@backstage-community/plugin-rbac-common": "1.23.0",
"@backstage/app-defaults": "1.7.6",
"@backstage/catalog-model": "1.7.7",
"@backstage/config": "1.3.6",
"@backstage/core-app-api": "1.19.6",
"@backstage/core-components": "0.18.8",
"@backstage/core-plugin-api": "1.12.4",
"@backstage/integration-react": "1.2.16",
"@backstage/plugin-api-docs": "0.13.5",
"@backstage/plugin-catalog": "2.0.1",
"@backstage/plugin-catalog-common": "1.1.8",
"@backstage/plugin-catalog-graph": "0.6.0",
"@backstage/plugin-catalog-import": "0.13.11",
"@backstage/plugin-catalog-react": "2.1.1",
"@backstage/plugin-org": "0.7.0",
"@backstage/plugin-permission-react": "0.4.41",
"@backstage/plugin-scaffolder": "1.36.1",
"@backstage/plugin-scaffolder-react": "1.20.0",
"@backstage/plugin-search": "1.7.0",
"@backstage/plugin-search-react": "1.11.0",
"@backstage/plugin-user-settings": "0.9.1",
"@backstage/theme": "0.7.2",
"@backstage/ui": "0.13.2",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "5.18.0",
"@mui/material": "5.18.0",
"@mui/styled-engine": "5.18.0",
"@red-hat-developer-hub/backstage-plugin-theme": "0.12.0",
"@red-hat-developer-hub/backstage-plugin-translations": "0.2.1",
"@red-hat-developer-hub/plugin-utils": "1.0.0",
"@scalprum/core": "0.9.0",
"@scalprum/react-core": "0.11.1",
"lodash": "4.18.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.30.3",
"react-use": "17.6.0",
"tss-react": "4.9.20"
},
"devDependencies": {
"@backstage/cli": "0.36.0",
"@backstage/cli-defaults": "0.1.0",
"@backstage/test-utils": "1.7.16",
"@janus-idp/cli": "3.7.0",
"@scalprum/react-test-utils": "0.2.11",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "14.3.1",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.12.2",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"eslint-plugin-unused-imports": "4.4.1",
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}