forked from keycloakify/keycloakify-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·101 lines (101 loc) · 3.26 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
101
{
"name": "keycloakify-starter",
"version": "0.0.0",
"description": "Keycloakify Webpack Starter",
"homepage": "https://nima70.github.io/keycloakify-tailwind-shadcn/storybook/",
"repository": {
"type": "git",
"url": "git://github.com/keycloakify/keycloakify-starter-webpack.git"
},
"scripts": {
"prestorybook": "keycloakify update-kc-gen && keycloakify copy-keycloak-resources-to-public",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o ./docs/storybook",
"prestart": "npm run prestorybook",
"start": "react-scripts start",
"prebuild": "keycloakify update-kc-gen",
"build": "react-scripts build",
"postbuild": "rimraf build/keycloak-resources",
"build-keycloak-theme": "npm run build && keycloakify build",
"format": "prettier . --write"
},
"keycloakify": {
"accountThemeImplementation": "none",
"projectBuildDirPath": "build",
"staticDirPathInProjectBuildDirPath": "static",
"publicDirPath": "public"
},
"license": "MIT",
"keywords": [],
"dependencies": {
"@heroicons/react": "^2.1.5",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@reduxjs/toolkit": "^2.2.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"keycloakify": "^10.0.5",
"lucide-react": "^0.438.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.2.9",
"@storybook/blocks": "^8.1.9",
"@storybook/preset-create-react-app": "^8.1.9",
"@storybook/react": "^8.1.9",
"@storybook/react-webpack5": "^8.1.9",
"@storybook/test": "^8.1.9",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"eslint-plugin-storybook": "^0.8.0",
"prettier": "3.3.1",
"prop-types": "^15.8.1",
"react-scripts": "5.0.1",
"rimraf": "^5.0.5",
"storybook": "^8.1.9",
"typescript": "~5.1.6",
"webpack": "^5.92.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"
]
}
}