authelia/web/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^5.8.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@types/chai": "^4.2.14",
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/qrcode.react": "^1.0.1",
"@types/query-string": "^6.3.0",
[MISC] (deps): Bump @types/react from 16.9.43 to 16.9.56 in /web (#1429) * [MISC] (deps): Bump @types/react from 16.9.43 to 16.9.56 in /web Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.43 to 16.9.56. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Cast style to React.CSSProperties for LinearProgressBar Upgrading this typescript library results in the following type issue: Failed to compile. /buildkite/builds/authelia/authelia/web/src/components/LinearProgressBar.tsx TypeScript error in /buildkite/builds/authelia/authelia/web/src/components/LinearProgressBar.tsx(23,13): Type 'import("/buildkite/builds/authelia/authelia/web/node_modules/@material-ui/styles/withStyles/withStyles").CSSProperties | undefined' is not assignable to type 'React.CSSProperties | undefined'. Type 'import("/buildkite/builds/authelia/authelia/web/node_modules/@material-ui/styles/withStyles/withStyles").CSSProperties' is not assignable to type 'React.CSSProperties'. Types of property 'appearance' are incompatible. Type '"-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "none" | "button-bevel" | "checkbox" | "listbox" | "menulist" | "menulist-button" | "meter" | "progress-bar" | "push-button" | ... 7 more ... | undefined' is not assignable to type '"-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "none" | "checkbox" | "listbox" | "menulist" | "menulist-button" | "meter" | "progress-bar" | "push-button" | ... 7 more ... | undefined'. Type '"button-bevel"' is not assignable to type '"-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "none" | "checkbox" | "listbox" | "menulist" | "menulist-button" | "meter" | "progress-bar" | "push-button" | ... 7 more ... | undefined'. TS2322 21 | return ( 22 | <LinearProgress > 23 | style={props.style} | ^ 24 | variant="determinate" 25 | classes={{ 26 | root: style.progressRoot, error Command failed with exit code 1. Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
2020-11-09 00:14:50 +00:00
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-ga": "^2.3.0",
"@types/react-router-dom": "^5.1.6",
"axios": "^0.21.0",
"babel-preset-react-app": "^10.0.0",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"qrcode.react": "^1.0.0",
"query-string": "^6.13.7",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-ga": "^3.2.1",
"react-loading": "^2.0.3",
"react-otp-input": "^2.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"react-test-renderer": "^16.14.0",
"typescript": "^4.0.5",
"u2f-api": "^1.1.1"
},
"scripts": {
"start": "craco start",
"build": "react-scripts build",
"coverage": "craco build",
"test": "react-scripts test --coverage --no-cache",
"report": "nyc report -r clover -r json -r lcov -r text",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}