-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.28 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.28 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
107
108
109
110
111
112
113
114
{
"name": "admin-ui",
"scripts": {
"dev": "wireit",
"build": "wireit",
"preview": "wireit",
"lint": "wireit",
"test": "wireit",
"cy:open": "cypress open --e2e --browser chrome",
"cy:run": "cypress run --browser chrome",
"cy:run-component": "wireit",
"cy:check-types": "wireit",
"cy:ldap-server": "ldap-server-mock --conf=./cypress/fixtures/ldap/server.json --database=./cypress/fixtures/ldap/users.json"
},
"wireit": {
"dev": {
"command": "vite --host",
"dependencies": [
"../../libs/ui-shared:build",
"../../libs/keycloak-js:build",
"../../libs/keycloak-admin-client:build"
]
},
"preview": {
"command": "vite preview",
"dependencies": [
"../../libs/ui-shared:build",
"../../libs/keycloak-js:build",
"../../libs/keycloak-admin-client:build"
]
},
"build": {
"command": "vite build",
"dependencies": [
"../../libs/ui-shared:build",
"../../libs/keycloak-js:build",
"../../libs/keycloak-admin-client:build"
]
},
"lint": {
"command": "eslint . --ext js,jsx,mjs,ts,tsx",
"dependencies": [
"../../libs/ui-shared:build",
"../../libs/keycloak-js:build",
"../../libs/keycloak-admin-client:build"
]
},
"test": {
"command": "vitest",
"dependencies": [
"../../libs/ui-shared:build",
"../../libs/keycloak-js:build",
"../../libs/keycloak-admin-client:build"
]
},
"cy:run-component": {
"command": "cypress run --browser chrome --component",
"dependencies": [
"../../libs/keycloak-admin-client:build"
]
},
"cy:check-types": {
"command": "tsc --project cypress/tsconfig.json",
"dependencies": [
"../../libs/keycloak-admin-client:build"
]
}
},
"dependencies": {
"@keycloak/keycloak-admin-client": "999.0.0-SNAPSHOT",
"@patternfly/patternfly": "^6.2.0",
"@patternfly/react-code-editor": "^6.3.0",
"@patternfly/react-core": "^4.276.6",
"@patternfly/react-icons": "^4.93.6",
"@patternfly/react-table": "^4.112.39",
"dagre": "^0.8.5",
"file-saver": "^2.0.5",
"flat": "^5.0.2",
"i18next": "^22.5.1",
"i18next-http-backend": "^2.5.1",
"keycloak-js": "999.0.0-SNAPSHOT",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.56.3",
"react-i18next": "^12.2.0",
"react-router-dom": "7.6.1",
"reactflow": "^11.7.2",
"ui-shared": "999.0.0-SNAPSHOT",
"use-react-router-breadcrumbs": "^4.0.1"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.4",
"@testing-library/cypress": "^10.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^15.0.5",
"@types/dagre": "^0.7.48",
"@types/file-saver": "^2.0.5",
"@types/flat": "^5.0.2",
"@types/lodash-es": "^4.17.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-react-swc": "^3.7.0",
"cypress": "^14.3.2",
"jsdom": "^27.4.0",
"ldap-server-mock": "^6.0.1",
"ts-node": "^10.9.1",
"vite": "^6.2.1",
"vite-plugin-checker": "^0.7.0",
"vitest": "^2.1.5"
}
}