forked from cedsoft-dev/keycloak-mui-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 2.81 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
{
"name": "keycloak-mui-theme",
"homepage": "https://gitlab.cedsoft.de/cedsoft/auth/keycloak-mui-client",
"version": "0.1.0",
"description": "A starter/demo project for keycloakify",
"repository": {
"type": "git",
"url": "https://gitlab.cedsoft.de/cedsoft/auth/keycloak-mui-client.git"
},
"scripts": {
"postinstall": "copy-keycloak-resources-to-public",
"start": "react-scripts start",
"build": "react-scripts build",
"build-keycloak-theme": "yarn build && keycloakify",
"storybook": "start-storybook -p 6006"
},
"keycloakify": {
"extraThemeProperties": [
"foo=bar"
],
"extraThemeNames": [
"keycloakify-starter-variant-1"
]
},
"author": "Cedric Rische <[email protected]> (https://www.cedsoft.de)",
"license": "MIT",
"keywords": [],
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.6",
"@mui/lab": "^5.0.0-alpha.145",
"@mui/material": "^5.14.6",
"evt": "^2.4.15",
"jwt-decode": "^3.1.2",
"keycloak-js": "^21.0.1",
"keycloakify": "^8.3.3",
"powerhooks": "^0.26.8",
"react": "18.1.0",
"react-dom": "18.1.0",
"tsafe": "^1.6.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^15.3.1",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"react-scripts": "5.0.1",
"typescript": "~4.7.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-redeclare": "off",
"no-labels": "off"
},
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}