keycloak-scim/package.json

85 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "keycloak-admin-ui",
2021-06-17 10:01:00 +00:00
"version": "0.0.1",
"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",
"engines": {
"node": "16"
},
"scripts": {
"build": "snowpack build",
2021-07-16 08:59:46 +00:00
"build:rh-sso": "THEME_NAME=rh-sso snowpack build",
2021-07-15 20:56:25 +00:00
"lint": "eslint \"./src/**/*.{js,jsx,mjs,ts,tsx}\"",
"start": "snowpack dev",
2021-07-16 08:59:46 +00:00
"start:rh-sso": "THEME_NAME=rh-sso snowpack dev",
"test": "jest",
"start:cypress": "cypress open",
"start:cypress-tests": "cypress run",
"prepare": "husky install"
},
"dependencies": {
2021-08-06 10:06:26 +00:00
"@patternfly/patternfly": "^4.125.3",
"@patternfly/react-core": "4.147.0",
"@patternfly/react-icons": "4.11.8",
"@patternfly/react-table": "4.29.37",
"file-saver": "^2.0.5",
"i18next": "^20.3.5",
"keycloak-admin": "^1.14.20",
"lodash": "^4.17.20",
2020-12-11 13:05:41 +00:00
"moment": "^2.29.1",
2021-07-07 12:04:44 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-hook-form": "^6.15.8",
"react-i18next": "^11.11.4",
"react-router-dom": "^5.2.0",
"use-react-router-breadcrumbs": "^2.0.2"
},
"devDependencies": {
"@jest/types": "^27.0.6",
"@snowpack/app-scripts-react": "^2.0.1",
2021-07-16 08:59:46 +00:00
"@snowpack/plugin-postcss": "^1.4.3",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/snowpack-env": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.5",
"cypress": "8.1.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
2021-07-16 08:59:46 +00:00
"http2-proxy": "^5.0.53",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.1.1",
"mutationobserver-shim": "^0.3.7",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"prettier": "^2.3.2",
"snowpack": "^3.8.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
2021-07-07 14:48:13 +00:00
"typescript": "4.2.4"
},
"lint-staged": {
2021-07-15 20:56:25 +00:00
"*.{js,jsx,mjs,ts,tsx}": "eslint --cache --fix"
}
}