-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.06 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.06 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
{
"name": "@red-hat-developer-hub/backstage-plugin-sandbox",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/sandbox/plugins/sandbox"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "sandbox",
"pluginPackage": "@red-hat-developer-hub/backstage-plugin-sandbox",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-sandbox"
]
},
"sideEffects": [
"./**/*.css"
],
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"postpack": "backstage-cli package postpack",
"prepack": "backstage-cli package prepack",
"start": "backstage-cli package start",
"test": "backstage-cli package test --passWithNoTests --coverage",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"dependencies": {
"@backstage/core-app-api": "^1.15.5",
"@backstage/core-components": "^0.16.4",
"@backstage/core-plugin-api": "^1.10.4",
"@backstage/theme": "^0.6.4",
"@lit/react": "^1.0.5",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@rhds/elements": "^2.0.1",
"@rhds/icons": "^1.1.1",
"@segment/analytics-next": "^1.0.0",
"libphonenumber-js": "^1.12.8",
"lodash": "^4.17.21",
"react-phone-number-input": "^3.4.12",
"react-use": "^17.2.4"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-dom": "^18.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.30.0",
"@backstage/dev-utils": "^1.1.7",
"@backstage/test-utils": "^1.7.5",
"@red-hat-developer-hub/backstage-plugin-theme": "^0.14.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"msw": "^1.0.0",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-dom": "^18.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
},
"files": [
"dist",
"config.d.ts",
"dist-scalprum",
"dist-dynamic/*.*",
"dist-dynamic/dist/*.*",
"dist-dynamic/dist-dynamic/*.*",
"dist-dynamic/dist-scalprum/*.*",
"app-config.dynamic.yaml"
],
"scalprum": {
"name": "red-hat-developer-hub.backstage-plugin-sandbox",
"exposedModules": {
"PluginRoot": "./src/index.ts"
}
},
"configSchema": "config.d.ts",
"keywords": [
"backstage",
"plugin"
],
"homepage": "https://red.ht/rhdh",
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"maintainers": [
"@lucifergene",
"@rohitkrai03"
],
"author": "Red Hat"
}