2022-08-25 09:03:07 +00:00
|
|
|
{
|
2024-07-05 16:48:10 +00:00
|
|
|
"name": "@keycloak/keycloak-admin-ui",
|
|
|
|
"version": "999.0.0-SNAPSHOT",
|
2023-11-28 12:26:14 +00:00
|
|
|
"type": "module",
|
2024-07-05 16:48:10 +00:00
|
|
|
"main": "lib/keycloak-admin-ui.js",
|
|
|
|
"types": "./lib/keycloak-admin-ui.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": "./lib/keycloak-admin-ui.js",
|
|
|
|
"types": "./lib/keycloak-admin-ui.d.ts"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2022-08-25 09:03:07 +00:00
|
|
|
"scripts": {
|
2022-09-14 12:42:19 +00:00
|
|
|
"dev": "wireit",
|
|
|
|
"build": "wireit",
|
|
|
|
"preview": "wireit",
|
|
|
|
"lint": "wireit",
|
|
|
|
"test": "wireit",
|
2022-08-25 09:03:07 +00:00
|
|
|
"cy:open": "cypress open --e2e --browser chrome",
|
|
|
|
"cy:run": "cypress run --browser chrome",
|
2022-11-08 14:01:11 +00:00
|
|
|
"cy:check-types": "wireit",
|
2022-11-15 15:42:38 +00:00
|
|
|
"cy:ldap-server": "ldap-server-mock --conf=./cypress/fixtures/ldap/server.json --database=./cypress/fixtures/ldap/users.json"
|
2022-08-25 09:03:07 +00:00
|
|
|
},
|
2022-09-14 12:42:19 +00:00
|
|
|
"wireit": {
|
|
|
|
"dev": {
|
|
|
|
"command": "vite --host",
|
|
|
|
"dependencies": [
|
2023-03-02 12:31:21 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 14:01:11 +00:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 12:42:19 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"preview": {
|
|
|
|
"command": "vite preview",
|
|
|
|
"dependencies": [
|
2023-03-02 12:31:21 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 14:01:11 +00:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 12:42:19 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"command": "vite build",
|
|
|
|
"dependencies": [
|
2023-03-02 12:31:21 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 14:01:11 +00:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 12:42:19 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"lint": {
|
2024-04-09 11:35:51 +00:00
|
|
|
"command": "eslint .",
|
2022-09-14 12:42:19 +00:00
|
|
|
"dependencies": [
|
2023-03-02 12:31:21 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 14:01:11 +00:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 12:42:19 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"command": "vitest",
|
|
|
|
"dependencies": [
|
2023-03-02 12:31:21 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-08 14:01:11 +00:00
|
|
|
"../../libs/keycloak-admin-client:build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"cy:check-types": {
|
|
|
|
"command": "tsc --project cypress/tsconfig.json",
|
|
|
|
"dependencies": [
|
|
|
|
"../../libs/keycloak-admin-client:build"
|
2022-09-14 12:42:19 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-08-25 09:03:07 +00:00
|
|
|
"dependencies": {
|
2023-05-05 16:03:24 +00:00
|
|
|
"@keycloak/keycloak-admin-client": "workspace:*",
|
2024-04-24 14:36:20 +00:00
|
|
|
"@keycloak/keycloak-ui-shared": "workspace:*",
|
2024-10-08 11:51:45 +00:00
|
|
|
"@patternfly/patternfly": "^5.4.1",
|
2024-10-22 15:50:49 +00:00
|
|
|
"@patternfly/react-code-editor": "^5.4.10",
|
2024-10-23 10:02:53 +00:00
|
|
|
"@patternfly/react-core": "^5.4.2",
|
2024-08-28 02:14:55 +00:00
|
|
|
"@patternfly/react-icons": "^5.4.0",
|
2024-08-28 00:16:43 +00:00
|
|
|
"@patternfly/react-styles": "^5.4.0",
|
2024-10-22 08:56:28 +00:00
|
|
|
"@patternfly/react-table": "^5.4.8",
|
2023-03-22 16:14:53 +00:00
|
|
|
"admin-ui": "file:",
|
2022-08-25 09:03:07 +00:00
|
|
|
"dagre": "^0.8.5",
|
|
|
|
"file-saver": "^2.0.5",
|
2024-10-11 10:11:02 +00:00
|
|
|
"file-selector": "^1.1.0",
|
2023-09-20 08:10:58 +00:00
|
|
|
"flat": "^6.0.1",
|
2024-10-20 15:13:05 +00:00
|
|
|
"i18next": "^23.16.2",
|
2024-10-08 11:52:03 +00:00
|
|
|
"i18next-http-backend": "^2.6.2",
|
2023-05-05 16:03:24 +00:00
|
|
|
"keycloak-js": "workspace:*",
|
2022-08-25 09:03:07 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
2024-09-20 09:31:02 +00:00
|
|
|
"monaco-editor": "^0.52.0",
|
2024-03-12 15:28:08 +00:00
|
|
|
"p-debounce": "^4.0.0",
|
2024-05-08 13:02:45 +00:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-10-20 14:57:18 +00:00
|
|
|
"react-dropzone": "^14.2.10",
|
2024-10-20 16:15:49 +00:00
|
|
|
"react-hook-form": "^7.53.1",
|
2024-10-22 08:56:59 +00:00
|
|
|
"react-i18next": "^15.1.0",
|
2024-10-14 10:10:40 +00:00
|
|
|
"react-router-dom": "^6.27.0",
|
2024-06-21 07:17:39 +00:00
|
|
|
"reactflow": "^11.11.4",
|
2023-01-18 12:09:49 +00:00
|
|
|
"use-react-router-breadcrumbs": "^4.0.1"
|
2022-08-25 09:03:07 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-14 10:20:50 +00:00
|
|
|
"@4tw/cypress-drag-drop": "^2.2.5",
|
2024-06-03 00:29:54 +00:00
|
|
|
"@testing-library/cypress": "^10.0.2",
|
2024-07-23 13:38:52 +00:00
|
|
|
"@testing-library/dom": "^10.4.0",
|
2024-10-18 10:31:17 +00:00
|
|
|
"@testing-library/jest-dom": "^6.6.2",
|
2024-08-30 20:08:02 +00:00
|
|
|
"@testing-library/react": "^16.0.1",
|
2023-11-14 16:19:27 +00:00
|
|
|
"@types/dagre": "^0.7.52",
|
2023-11-14 13:14:13 +00:00
|
|
|
"@types/file-saver": "^2.0.7",
|
2023-11-22 08:49:24 +00:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-10-03 07:05:14 +00:00
|
|
|
"@types/react": "^18.3.11",
|
2024-10-14 10:25:40 +00:00
|
|
|
"@types/react-dom": "^18.3.1",
|
2024-06-21 07:17:54 +00:00
|
|
|
"@types/uuid": "^10.0.0",
|
2024-10-01 08:30:48 +00:00
|
|
|
"@vitejs/plugin-react-swc": "^3.7.1",
|
2024-09-26 08:35:40 +00:00
|
|
|
"cypress": "^13.15.0",
|
2023-09-03 11:20:35 +00:00
|
|
|
"cypress-axe": "^1.5.0",
|
2024-10-17 10:22:39 +00:00
|
|
|
"cypress-split": "^1.24.4",
|
2024-09-23 09:43:07 +00:00
|
|
|
"jsdom": "^25.0.1",
|
2022-11-14 11:25:16 +00:00
|
|
|
"ldap-server-mock": "^6.0.1",
|
2024-09-12 06:48:08 +00:00
|
|
|
"lightningcss": "^1.27.0",
|
2023-12-11 09:05:12 +00:00
|
|
|
"ts-node": "^10.9.2",
|
2024-06-10 07:46:02 +00:00
|
|
|
"uuid": "^10.0.0",
|
2024-10-14 13:23:06 +00:00
|
|
|
"vite": "^5.4.9",
|
2024-09-06 17:46:52 +00:00
|
|
|
"vite-plugin-checker": "^0.8.0",
|
2024-10-23 09:49:51 +00:00
|
|
|
"vite-plugin-dts": "^4.3.0",
|
2024-10-15 08:27:44 +00:00
|
|
|
"vitest": "^2.1.3"
|
2022-08-25 09:03:07 +00:00
|
|
|
}
|
|
|
|
}
|