2020-08-04 12:59:41 +00:00
|
|
|
{
|
|
|
|
"name": "keycloak-admin",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"main": "index.js",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2020-08-17 07:01:56 +00:00
|
|
|
"postinstall": "grunt",
|
2020-08-04 12:59:41 +00:00
|
|
|
"start": "snowpack dev",
|
|
|
|
"build": "snowpack build",
|
|
|
|
"test": "jest",
|
2020-09-08 05:56:44 +00:00
|
|
|
"check-types": "tsc -p ./",
|
2020-08-17 07:22:40 +00:00
|
|
|
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
2020-09-01 14:51:59 +00:00
|
|
|
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
|
2020-08-06 08:51:35 +00:00
|
|
|
"lint": "eslint ./src/**/*.ts*",
|
2020-09-03 17:26:36 +00:00
|
|
|
"storybook": "start-storybook -p 6006 -s public",
|
|
|
|
"build-storybook": "build-storybook -s public"
|
2020-08-04 12:59:41 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-21 00:09:05 +00:00
|
|
|
"@patternfly/patternfly": "^4.31.6",
|
|
|
|
"@patternfly/react-core": "^4.40.4",
|
|
|
|
"@patternfly/react-icons": "^4.7.2",
|
|
|
|
"@patternfly/react-table": "^4.15.5",
|
2020-08-04 12:59:41 +00:00
|
|
|
"i18next": "^19.6.2",
|
2020-09-03 12:58:42 +00:00
|
|
|
"i18next-http-backend": "^1.0.18",
|
2020-08-04 12:59:41 +00:00
|
|
|
"keycloak-js": "^11.0.0",
|
|
|
|
"react": "^16.8.5",
|
|
|
|
"react-dom": "^16.8.5",
|
2020-08-27 12:09:36 +00:00
|
|
|
"react-i18next": "^11.7.0",
|
|
|
|
"react-router-dom": "^5.2.0"
|
2020-08-04 12:59:41 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.10.5",
|
2020-08-20 10:43:13 +00:00
|
|
|
"@babel/preset-typescript": "^7.10.4",
|
2020-09-01 12:21:47 +00:00
|
|
|
"@snowpack/app-scripts-react": "^1.10.0",
|
2020-09-01 20:17:48 +00:00
|
|
|
"@snowpack/plugin-postcss": "^1.0.2",
|
2020-09-01 12:21:47 +00:00
|
|
|
"@snowpack/plugin-webpack": "^2.0.6",
|
2020-09-03 17:26:36 +00:00
|
|
|
"@storybook/addon-actions": "^6.0.21",
|
|
|
|
"@storybook/addon-essentials": "^6.0.21",
|
|
|
|
"@storybook/addon-info": "^5.3.21",
|
|
|
|
"@storybook/addon-links": "^6.0.21",
|
|
|
|
"@storybook/addons": "^6.0.21",
|
|
|
|
"@storybook/node-logger": "^6.0.21",
|
|
|
|
"@storybook/preset-create-react-app": "^3.1.4",
|
|
|
|
"@storybook/preset-typescript": "^3.0.0",
|
|
|
|
"@storybook/react": "^6.0.21",
|
2020-08-04 12:59:41 +00:00
|
|
|
"@testing-library/jest-dom": "^5.11.0",
|
|
|
|
"@testing-library/react": "^10.4.6",
|
|
|
|
"@types/dot": "^1.1.4",
|
2020-09-01 12:21:47 +00:00
|
|
|
"@types/enzyme": "^3.10.5",
|
2020-08-04 12:59:41 +00:00
|
|
|
"@types/jest": "^26.0.4",
|
|
|
|
"@types/react": "^16.9.23",
|
|
|
|
"@types/react-dom": "^16.9.5",
|
2020-08-27 12:09:36 +00:00
|
|
|
"@types/react-router-dom": "^5.1.5",
|
2020-09-01 12:21:47 +00:00
|
|
|
"@types/snowpack-env": "^2.3.0",
|
2020-08-06 08:51:35 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
|
|
|
"@typescript-eslint/parser": "^3.8.0",
|
2020-08-04 12:59:41 +00:00
|
|
|
"babel-loader": "^8.1.0",
|
2020-08-06 09:31:45 +00:00
|
|
|
"decompress": "^4.2.1",
|
|
|
|
"decompress-targz": "^4.1.1",
|
2020-08-31 08:23:57 +00:00
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.15.3",
|
|
|
|
"enzyme-to-json": "^3.5.0",
|
2020-08-06 08:51:35 +00:00
|
|
|
"eslint": "^7.6.0",
|
|
|
|
"eslint-plugin-react": "^7.20.5",
|
2020-08-17 07:01:56 +00:00
|
|
|
"grunt": "^1.2.1",
|
|
|
|
"grunt-contrib-copy": "^1.0.0",
|
2020-08-04 12:59:41 +00:00
|
|
|
"jest": "^25.4.0",
|
|
|
|
"postcss": "^7.0.32",
|
|
|
|
"postcss-cli": "^7.1.1",
|
|
|
|
"postcss-import": "^12.0.1",
|
|
|
|
"prettier": "^2.0.5",
|
2020-09-03 17:26:36 +00:00
|
|
|
"react-is": "^16.13.1",
|
2020-08-04 12:59:41 +00:00
|
|
|
"react-scripts": "^3.4.1",
|
2020-09-01 12:21:47 +00:00
|
|
|
"snowpack": "^2.10.0",
|
2020-08-04 12:59:41 +00:00
|
|
|
"typescript": "^3.8.3"
|
|
|
|
}
|
|
|
|
}
|