-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.07 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
{
"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.20.0",
"@backstage/app-defaults": "1.7.2",
"@backstage/catalog-model": "1.7.6",
"@backstage/config": "1.3.6",
"@backstage/core-app-api": "1.19.2",
"@backstage/core-components": "0.18.3",
"@backstage/core-plugin-api": "1.12.0",
"@backstage/integration-react": "1.2.12",
"@backstage/plugin-api-docs": "0.13.1",
"@backstage/plugin-catalog": "1.32.0",
"@backstage/plugin-catalog-common": "1.1.7",
"@backstage/plugin-catalog-graph": "0.5.3",
"@backstage/plugin-catalog-import": "0.13.7",
"@backstage/plugin-catalog-react": "1.21.3",
"@backstage/plugin-org": "0.6.46",
"@backstage/plugin-permission-react": "0.4.38",
"@backstage/plugin-scaffolder": "1.34.3",
"@backstage/plugin-scaffolder-react": "1.19.3",
"@backstage/plugin-search": "1.5.0",
"@backstage/plugin-search-react": "1.10.0",
"@backstage/plugin-user-settings": "0.8.29",
"@backstage/theme": "0.7.0",
"@backstage/ui": "0.9.1",
"@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.10.2",
"@red-hat-developer-hub/backstage-plugin-translations": "0.0.2",
"@red-hat-developer-hub/plugin-utils": "1.0.0",
"@scalprum/core": "0.9.0",
"@scalprum/react-core": "0.11.1",
"lodash": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.30.2",
"react-use": "17.6.0",
"tss-react": "4.9.20"
},
"devDependencies": {
"@backstage/cli": "0.34.5",
"@backstage/test-utils": "1.7.13",
"@janus-idp/cli": "3.6.1",
"@scalprum/react-test-utils": "0.2.7",
"@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": "22.19.1",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"eslint-plugin-unused-imports": "4.3.0",
"prettier": "3.7.4",
"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"
}