2020-08-04 12:59:41 +00:00
|
|
|
{
|
2020-11-24 20:45:12 +00:00
|
|
|
"name": "keycloak-admin-ui",
|
2020-08-04 12:59:41 +00:00
|
|
|
"main": "index.js",
|
2021-06-17 10:01:00 +00:00
|
|
|
"homepage": "https://github.com/keycloak/keycloak-admin-ui",
|
|
|
|
"bugs": "https://github.com/keycloak/keycloak-admin-ui/issues",
|
|
|
|
"repository": {
|
|
|
|
"url": "https://github.com/keycloak/keycloak-admin-ui",
|
|
|
|
"type": "git"
|
|
|
|
},
|
|
|
|
"license": "Apache",
|
2021-04-30 08:43:23 +00:00
|
|
|
"engines": {
|
2022-04-21 14:52:49 +00:00
|
|
|
"node": "^18"
|
2021-04-30 08:43:23 +00:00
|
|
|
},
|
2020-08-04 12:59:41 +00:00
|
|
|
"scripts": {
|
2022-08-02 12:11:38 +00:00
|
|
|
"dev": "vite",
|
|
|
|
"build": "vite build",
|
|
|
|
"preview": "vite preview",
|
2021-09-16 10:24:21 +00:00
|
|
|
"lint": "eslint . --ext js,jsx,mjs,ts,tsx",
|
2022-07-07 05:23:54 +00:00
|
|
|
"test": "vitest",
|
2022-06-13 10:08:13 +00:00
|
|
|
"cy:open": "cypress open --e2e --browser chrome",
|
|
|
|
"cy:run": "cypress run --browser chrome",
|
2022-06-29 13:36:24 +00:00
|
|
|
"cy:check-types": "tsc --project cypress/tsconfig.json",
|
2022-04-08 17:32:44 +00:00
|
|
|
"prepare": "husky install",
|
|
|
|
"server:start": "./scripts/start-server.mjs",
|
|
|
|
"server:import-client": "./scripts/import-client.mjs"
|
2020-08-04 12:59:41 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-29 11:11:34 +00:00
|
|
|
"@keycloak/keycloak-admin-client": "^19.0.1",
|
2022-07-04 11:54:22 +00:00
|
|
|
"@patternfly/patternfly": "^4.202.1",
|
|
|
|
"@patternfly/react-code-editor": "^4.65.1",
|
|
|
|
"@patternfly/react-core": "^4.224.1",
|
|
|
|
"@patternfly/react-icons": "^4.75.1",
|
|
|
|
"@patternfly/react-table": "^4.93.1",
|
2021-08-09 08:47:34 +00:00
|
|
|
"dagre": "^0.8.5",
|
2021-04-30 16:43:34 +00:00
|
|
|
"file-saver": "^2.0.5",
|
2021-12-08 15:08:42 +00:00
|
|
|
"flat": "^5.0.2",
|
2022-08-01 04:15:13 +00:00
|
|
|
"i18next": "^21.8.16",
|
2022-05-30 09:22:33 +00:00
|
|
|
"i18next-http-backend": "^1.4.1",
|
2022-07-29 13:34:56 +00:00
|
|
|
"keycloak-js": "^19.0.1",
|
2022-02-02 10:33:57 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
2021-07-07 12:04:44 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2021-11-01 04:14:09 +00:00
|
|
|
"react-error-boundary": "^3.1.4",
|
2022-03-21 16:08:13 +00:00
|
|
|
"react-flow-renderer": "^9.7.4",
|
2021-07-05 10:23:59 +00:00
|
|
|
"react-hook-form": "^6.15.8",
|
2022-07-29 11:09:44 +00:00
|
|
|
"react-i18next": "^11.18.3",
|
2022-05-23 04:10:38 +00:00
|
|
|
"react-router-dom": "^5.3.3",
|
2021-07-05 10:26:03 +00:00
|
|
|
"use-react-router-breadcrumbs": "^2.0.2"
|
2020-08-04 12:59:41 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-07-04 04:24:58 +00:00
|
|
|
"@4tw/cypress-drag-drop": "^2.2.1",
|
2022-07-25 09:52:56 +00:00
|
|
|
"@babel/core": "^7.18.9",
|
|
|
|
"@babel/preset-env": "^7.18.9",
|
|
|
|
"@cypress/webpack-batteries-included-preprocessor": "^2.2.3",
|
|
|
|
"@cypress/webpack-preprocessor": "^5.12.0",
|
2022-07-08 12:33:26 +00:00
|
|
|
"@octokit/rest": "^19.0.1",
|
2022-06-06 04:09:53 +00:00
|
|
|
"@testing-library/cypress": "^8.0.3",
|
2022-04-11 04:12:26 +00:00
|
|
|
"@testing-library/jest-dom": "^5.16.4",
|
2022-04-18 04:10:25 +00:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2022-06-20 04:10:46 +00:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2021-12-27 04:08:02 +00:00
|
|
|
"@types/dagre": "^0.7.47",
|
2022-01-17 10:39:49 +00:00
|
|
|
"@types/file-saver": "^2.0.5",
|
2021-12-08 15:08:42 +00:00
|
|
|
"@types/flat": "^5.0.2",
|
2022-04-08 17:32:44 +00:00
|
|
|
"@types/gunzip-maybe": "^1.4.0",
|
2022-02-07 04:10:29 +00:00
|
|
|
"@types/lodash-es": "^4.17.6",
|
2022-08-01 04:13:16 +00:00
|
|
|
"@types/node": "^18.6.3",
|
2022-05-10 09:53:26 +00:00
|
|
|
"@types/react": "^17.0.45",
|
2022-05-11 05:22:58 +00:00
|
|
|
"@types/react-dom": "^17.0.16",
|
2022-01-24 04:12:24 +00:00
|
|
|
"@types/react-router-dom": "^5.3.3",
|
2022-04-08 17:32:44 +00:00
|
|
|
"@types/tar-fs": "^2.0.1",
|
2022-07-29 11:06:51 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.31.0",
|
2022-07-29 14:23:22 +00:00
|
|
|
"@typescript-eslint/parser": "^5.31.0",
|
2022-07-29 11:09:09 +00:00
|
|
|
"@vitejs/plugin-react": "^2.0.0",
|
2022-07-25 09:52:56 +00:00
|
|
|
"babel-loader": "^8.2.5",
|
2022-07-23 11:45:01 +00:00
|
|
|
"cypress": "^10.3.1",
|
2020-08-06 09:31:45 +00:00
|
|
|
"decompress": "^4.2.1",
|
2022-07-23 15:21:16 +00:00
|
|
|
"del": "^7.0.0",
|
2022-07-18 04:08:05 +00:00
|
|
|
"eslint": "^8.20.0",
|
2022-03-06 11:12:55 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-09-16 10:24:21 +00:00
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
2022-02-21 04:06:26 +00:00
|
|
|
"eslint-plugin-lodash": "^7.4.0",
|
2022-07-04 04:17:10 +00:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-06-27 04:10:50 +00:00
|
|
|
"eslint-plugin-react": "^7.30.1",
|
2022-04-08 17:32:44 +00:00
|
|
|
"gunzip-maybe": "^1.4.2",
|
2021-07-16 08:59:46 +00:00
|
|
|
"http2-proxy": "^5.0.53",
|
2022-05-10 10:11:14 +00:00
|
|
|
"husky": "^8.0.1",
|
2022-06-27 04:08:57 +00:00
|
|
|
"lint-staged": "^13.0.3",
|
2022-08-01 04:13:41 +00:00
|
|
|
"node-fetch": "^3.2.10",
|
2022-06-20 04:10:11 +00:00
|
|
|
"prettier": "^2.7.1",
|
2021-11-15 07:28:55 +00:00
|
|
|
"progress-promise": "^0.0.6",
|
2022-04-08 17:32:44 +00:00
|
|
|
"tar-fs": "^2.1.1",
|
2022-07-18 04:14:18 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2022-07-07 05:23:54 +00:00
|
|
|
"typescript": "^4.7.4",
|
2022-07-29 11:12:11 +00:00
|
|
|
"vite": "^3.0.4",
|
2022-08-02 12:11:38 +00:00
|
|
|
"vite-plugin-checker": "^0.4.8",
|
2022-08-01 04:14:23 +00:00
|
|
|
"vitest": "^0.20.2",
|
2022-07-29 11:08:26 +00:00
|
|
|
"webpack": "^5.74.0"
|
2021-07-13 11:33:46 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2021-07-15 20:56:25 +00:00
|
|
|
"*.{js,jsx,mjs,ts,tsx}": "eslint --cache --fix"
|
2020-08-04 12:59:41 +00:00
|
|
|
}
|
|
|
|
}
|