-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "backstage-plugin-simple-test-components",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"sideEffects": false,
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"export-dynamic": "janus-cli package export-dynamic-plugin --clean --dev --dynamic-plugins-root ${DYNAMIC_PLUGINS_ROOT}",
"lint": "backstage-cli package lint",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"test": "backstage-cli package test",
"tsc": "tsc"
},
"dependencies": {
"@backstage/catalog-model": "1.7.0",
"@backstage/core-components": "0.15.1",
"@backstage/core-plugin-api": "1.10.0",
"@backstage/plugin-catalog": "1.24.0",
"@backstage/plugin-scaffolder": "1.26.2",
"@backstage/plugin-scaffolder-react": "1.13.2",
"@backstage/theme": "0.6.0",
"@material-ui/lab": "^4.0.0-alpha.61",
"@mui/icons-material": "5.16.7",
"@mui/material": "5.16.7",
"@scalprum/core": "0.7.0",
"@scalprum/react-core": "0.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.23.0",
"react-router-dom": "^6.23.0",
"react-use": "^17.5.0",
"tss-react": "4.9.3",
"typescript": "5.6.2"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.3.0"
},
"devDependencies": {
"@backstage/cli": "0.26.4",
"@backstage/core-app-api": "1.12.4",
"@backstage/dev-utils": "1.0.31",
"@backstage/test-utils": "1.5.4",
"@janus-idp/cli": "1.12.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
"msw": "1.3.3"
},
"files": [
"dist",
"dist-dynamic"
],
"packageManager": "[email protected]"
}