2022-10-10 10:14:19 +00:00
|
|
|
{
|
|
|
|
"name": "account-ui",
|
|
|
|
"scripts": {
|
2022-11-03 14:06:26 +00:00
|
|
|
"dev": "wireit",
|
|
|
|
"build": "wireit",
|
|
|
|
"preview": "wireit",
|
|
|
|
"lint": "wireit"
|
2022-10-10 10:14:19 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-27 16:29:38 +00:00
|
|
|
"@patternfly/patternfly": "^4.224.2",
|
2023-03-28 11:09:22 +00:00
|
|
|
"@patternfly/react-core": "^4.276.8",
|
2023-01-27 16:29:38 +00:00
|
|
|
"@patternfly/react-icons": "^4.93.6",
|
2023-03-23 15:23:18 +00:00
|
|
|
"i18next": "^22.4.13",
|
2023-03-20 17:21:56 +00:00
|
|
|
"i18next-http-backend": "^2.2.0",
|
2023-03-03 10:11:55 +00:00
|
|
|
"keycloak-js": "999.0.0-SNAPSHOT",
|
|
|
|
"keycloak-masthead": "999.0.0-SNAPSHOT",
|
2023-03-02 12:54:34 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
2023-02-13 07:18:16 +00:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-03-27 09:36:08 +00:00
|
|
|
"react-hook-form": "^7.43.8",
|
2023-02-28 12:44:27 +00:00
|
|
|
"react-i18next": "^12.2.0",
|
2023-03-14 11:50:55 +00:00
|
|
|
"react-router-dom": "6.9.0",
|
2023-03-03 10:11:55 +00:00
|
|
|
"ui-shared": "999.0.0-SNAPSHOT"
|
2022-10-10 10:14:19 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-20 16:44:58 +00:00
|
|
|
"@types/lodash-es": "^4.17.7",
|
2023-03-29 10:39:34 +00:00
|
|
|
"@types/react": "^18.0.31",
|
2023-02-20 14:18:10 +00:00
|
|
|
"@types/react-dom": "^18.0.11",
|
2023-02-20 15:38:11 +00:00
|
|
|
"@vitejs/plugin-react-swc": "^3.2.0",
|
2023-02-28 13:17:42 +00:00
|
|
|
"vite": "^4.1.4",
|
2023-02-20 14:18:57 +00:00
|
|
|
"vite-plugin-checker": "^0.5.6"
|
2022-11-03 14:06:26 +00:00
|
|
|
},
|
|
|
|
"wireit": {
|
|
|
|
"dev": {
|
|
|
|
"command": "vite --host",
|
|
|
|
"dependencies": [
|
2023-02-07 11:29:30 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-03 14:06:26 +00:00
|
|
|
"../../libs/keycloak-masthead:build",
|
|
|
|
"../../libs/keycloak-js:build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"preview": {
|
|
|
|
"command": "vite preview",
|
|
|
|
"dependencies": [
|
2023-02-07 11:29:30 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-03 14:06:26 +00:00
|
|
|
"../../libs/keycloak-masthead:build",
|
|
|
|
"../../libs/keycloak-js:build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"command": "vite build",
|
|
|
|
"dependencies": [
|
2023-02-07 11:29:30 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-03 14:06:26 +00:00
|
|
|
"../../libs/keycloak-masthead:build",
|
|
|
|
"../../libs/keycloak-js:build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"command": "eslint . --ext js,jsx,mjs,ts,tsx",
|
|
|
|
"dependencies": [
|
2023-02-07 11:29:30 +00:00
|
|
|
"../../libs/ui-shared:build",
|
2022-11-03 14:06:26 +00:00
|
|
|
"../../libs/keycloak-masthead:build",
|
|
|
|
"../../libs/keycloak-js:build"
|
|
|
|
]
|
|
|
|
}
|
2022-10-10 10:14:19 +00:00
|
|
|
}
|
|
|
|
}
|