-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 3.23 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
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
{
"name": "@redhat-developer/red-hat-developer-hub-theme",
"description": "Red Hat Developer Hub Theme",
"keywords": [
"backstage",
"rhdh",
"theme",
"redhat"
],
"homepage": "https://developers.redhat.com/rhdh",
"version": "0.0.0",
"author": "Red Hat",
"maintainers": [
{
"name": "Christoph Jerolimov",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"repository": "github:redhat-developer/red-hat-developer-hub-theme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src && prettier --check src .storybook",
"fix": "prettier --write src .storybook",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "CI=1 backstage-cli package test --testEnvironment jsdom --colors",
"test:watch": "backstage-cli package test --testEnvironment jsdom",
"test:storybook": "test-storybook",
"test:storybook:update": "test-storybook -u",
"test:storybook:verify": "test-storybook --ci",
"changeset": "changeset",
"upgrade:storybook": "npx storybook@latest upgrade"
},
"files": [
"src/index.ts",
"src/fonts",
"src/themes",
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@backstage/cli": "^0.26.2",
"@backstage/core-plugin-api": "^1.9.1",
"@backstage/plugin-azure-devops-common": "^0.3.2",
"@backstage/plugin-catalog-react": "^1.11.0",
"@backstage/plugin-gcalendar": "^0.3.24",
"@backstage/plugin-home": "^0.6.2",
"@backstage/plugin-home-react": "^0.1.9",
"@backstage/plugin-microsoft-calendar": "^0.1.13",
"@backstage/plugin-search": "^1.4.7",
"@backstage/plugin-search-react": "^1.7.7",
"@backstage/plugin-stack-overflow": "^0.1.26",
"@backstage/test-utils": "^1.5.1",
"@changesets/cli": "^2.27.1",
"@material-table/core": "^6.3.2",
"@material-ui/lab": "^4.0.0-alpha.61",
"@react-hookz/web": "^24.0.4",
"@rjsf/material-ui": "^5.17.1",
"@storybook/addon-essentials": "^8.1.4",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-themes": "^8.1.4",
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
"@storybook/blocks": "^8.1.4",
"@storybook/react": "^8.1.4",
"@storybook/react-webpack5": "^8.1.4",
"@storybook/test": "^8.1.4",
"@storybook/test-runner": "^0.18.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest-image-snapshot": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"humanize-duration": "^3.31.0",
"jest-image-snapshot": "^6.4.0",
"material-ui-popup-state": "^5.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.1.4",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@backstage/theme": "^0.5.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}