-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "keycloakify-starter-angular",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"description": "Angular 18 Webpack Starter for Keycloakify",
"scripts": {
"ng": "ng",
"prebuild": "keycloakify update-kc-gen",
"build": "ng build",
"preserve": "keycloakify update-kc-gen",
"serve": "ng serve",
"build-keycloak-theme": "ng build && keycloakify build",
"storybook": "ng run angular_template:storybook",
"build-storybook": "ng run angular_template:build-storybook"
},
"keycloakify": {
"accountThemeImplementation": "none",
"projectBuildDirPath": "dist",
"staticDirPathInProjectBuildDirPath": "static",
"publicDirPath": "public"
},
"keywords": [
"angular",
"keycloakify",
"keycloak",
"webpack"
],
"private": true,
"dependencies": {
"@angular/animations": "^19.2.1",
"@angular/common": "^19.2.1",
"@angular/compiler": "^19.2.1",
"@angular/core": "^19.2.1",
"@angular/forms": "^19.2.1",
"@angular/platform-browser": "^19.2.1",
"@keycloakify/angular": "^0.2.18",
"keycloakify": "^11.8.17",
"rxjs": "~7.8.0",
"tslib": "^2.7.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.0",
"@angular-devkit/core": "^19.2.1",
"@angular-devkit/schematics": "^19.2.1",
"@angular/cli": "^19.2.1",
"@angular/compiler-cli": "^19.2.1",
"@eslint/compat": "^1.1.1",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-onboarding": "^8.6.4",
"@storybook/angular": "^8.6.4",
"@storybook/blocks": "^8.6.4",
"@storybook/test": "^8.6.4",
"@types/node": "^20.0.0",
"@typescript-eslint/types": "^8.7.0",
"@typescript-eslint/utils": "^8.7.0",
"angular-eslint": "^18.3.1",
"eslint": "^9.11.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.11.0",
"prettier": "^3.3.3",
"storybook": "^8.6.4",
"typescript": "~5.8.2",
"typescript-eslint": "^8.7.0"
},
"overrides": {
"@typescript-eslint/utils": "^8.7.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}