2019-11-18 23:37:36 +00:00
|
|
|
{
|
2021-10-08 04:00:06 +00:00
|
|
|
"name": "authelia",
|
2022-12-21 08:24:30 +00:00
|
|
|
"version": "4.37.5",
|
2019-11-18 23:37:36 +00:00
|
|
|
"private": true,
|
2022-05-03 06:19:42 +00:00
|
|
|
"pnpm": {
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"allowedVersions": {
|
|
|
|
"@types/react": "18",
|
2023-04-11 02:16:41 +00:00
|
|
|
"react": "18"
|
|
|
|
}
|
2022-05-03 06:19:42 +00:00
|
|
|
}
|
|
|
|
},
|
2019-11-18 23:37:36 +00:00
|
|
|
"dependencies": {
|
2023-04-28 13:08:38 +00:00
|
|
|
"@emotion/cache": "11.10.8",
|
|
|
|
"@emotion/react": "11.10.8",
|
|
|
|
"@emotion/styled": "11.10.8",
|
2023-03-27 23:14:02 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "6.4.0",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "6.4.0",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "6.4.0",
|
2022-06-29 21:37:40 +00:00
|
|
|
"@fortawesome/react-fontawesome": "0.2.0",
|
2023-04-04 18:47:51 +00:00
|
|
|
"@mui/icons-material": "5.11.16",
|
2023-04-25 20:39:46 +00:00
|
|
|
"@mui/material": "5.12.2",
|
2023-04-11 13:16:14 +00:00
|
|
|
"@mui/styles": "5.12.0",
|
2023-04-28 04:17:03 +00:00
|
|
|
"axios": "1.4.0",
|
2023-04-26 15:35:24 +00:00
|
|
|
"broadcast-channel": "5.1.0",
|
2022-09-13 22:56:02 +00:00
|
|
|
"classnames": "2.3.2",
|
2023-04-20 00:04:44 +00:00
|
|
|
"i18next": "22.4.15",
|
2022-11-03 23:47:28 +00:00
|
|
|
"i18next-browser-languagedetector": "7.0.1",
|
2023-03-14 09:55:19 +00:00
|
|
|
"i18next-http-backend": "2.2.0",
|
2022-06-25 23:26:23 +00:00
|
|
|
"qrcode.react": "3.1.0",
|
2022-06-14 21:38:48 +00:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2023-04-24 15:14:32 +00:00
|
|
|
"react-i18next": "12.2.2",
|
2021-01-30 05:26:23 +00:00
|
|
|
"react-loading": "2.0.3",
|
2023-03-30 02:53:36 +00:00
|
|
|
"react-router-dom": "6.10.0",
|
2023-03-12 14:55:38 +00:00
|
|
|
"react18-input-otp": "1.1.3",
|
2022-04-03 00:48:26 +00:00
|
|
|
"zxcvbn": "4.4.2"
|
2019-11-18 23:37:36 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-09-09 02:22:11 +00:00
|
|
|
"prepare": "cd .. && husky install .github",
|
2021-10-08 04:00:06 +00:00
|
|
|
"start": "vite --host",
|
|
|
|
"build": "vite build",
|
|
|
|
"coverage": "VITE_COVERAGE=true vite build",
|
2021-12-01 03:32:58 +00:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
2023-04-11 03:25:37 +00:00
|
|
|
"test": "vitest run --coverage",
|
|
|
|
"test:watch": "vitest --coverage",
|
|
|
|
"test:preview": "vitest-preview",
|
2021-12-02 10:28:16 +00:00
|
|
|
"report": "nyc report -r clover -r json -r lcov -r text"
|
2019-11-18 23:37:36 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
2021-03-13 03:09:51 +00:00
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all",
|
2019-11-18 23:37:36 +00:00
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2021-01-02 10:58:24 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-14 14:21:30 +00:00
|
|
|
"@commitlint/cli": "17.6.1",
|
|
|
|
"@commitlint/config-conventional": "17.6.1",
|
2022-11-28 03:22:06 +00:00
|
|
|
"@limegrass/eslint-plugin-import-alias": "1.0.6",
|
2022-08-06 04:14:15 +00:00
|
|
|
"@testing-library/jest-dom": "5.16.5",
|
2023-02-17 05:28:42 +00:00
|
|
|
"@testing-library/react": "14.0.0",
|
2023-04-28 04:05:46 +00:00
|
|
|
"@types/node": "18.16.2",
|
2021-08-03 06:25:13 +00:00
|
|
|
"@types/qrcode.react": "1.0.2",
|
2023-04-26 15:47:15 +00:00
|
|
|
"@types/react": "18.2.0",
|
|
|
|
"@types/react-dom": "18.2.1",
|
2023-04-11 03:25:37 +00:00
|
|
|
"@types/testing-library__jest-dom": "5.14.5",
|
2022-04-03 11:58:27 +00:00
|
|
|
"@types/zxcvbn": "4.4.1",
|
2023-04-25 08:36:20 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.59.1",
|
|
|
|
"@typescript-eslint/parser": "5.59.1",
|
2023-04-20 22:53:22 +00:00
|
|
|
"@vitejs/plugin-react": "4.0.0",
|
2023-04-11 18:37:57 +00:00
|
|
|
"@vitest/coverage-istanbul": "0.30.1",
|
2023-04-22 22:34:49 +00:00
|
|
|
"esbuild": "0.17.18",
|
2023-04-23 02:31:57 +00:00
|
|
|
"eslint": "8.39.0",
|
2023-03-20 20:08:31 +00:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2022-04-12 21:53:33 +00:00
|
|
|
"eslint-config-react-app": "7.0.1",
|
2021-06-20 23:39:17 +00:00
|
|
|
"eslint-formatter-rdjson": "1.0.5",
|
2023-04-05 17:16:58 +00:00
|
|
|
"eslint-import-resolver-typescript": "3.5.5",
|
2023-01-16 22:41:26 +00:00
|
|
|
"eslint-plugin-import": "2.27.5",
|
2023-01-12 06:38:12 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.7.1",
|
2022-06-30 05:17:54 +00:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-01-29 09:04:49 +00:00
|
|
|
"eslint-plugin-react": "7.32.2",
|
2022-06-14 21:38:48 +00:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2023-04-28 20:44:36 +00:00
|
|
|
"happy-dom": "9.10.0",
|
2023-01-03 10:19:43 +00:00
|
|
|
"husky": "8.0.3",
|
2023-04-23 10:59:09 +00:00
|
|
|
"prettier": "2.8.8",
|
2022-06-14 23:05:09 +00:00
|
|
|
"react-test-renderer": "18.2.0",
|
2023-04-07 21:05:10 +00:00
|
|
|
"typescript": "5.0.4",
|
2023-04-26 15:21:06 +00:00
|
|
|
"vite": "4.3.3",
|
2022-08-18 01:52:40 +00:00
|
|
|
"vite-plugin-eslint": "1.8.1",
|
2023-02-28 03:30:19 +00:00
|
|
|
"vite-plugin-istanbul": "4.0.1",
|
2022-12-12 07:03:15 +00:00
|
|
|
"vite-plugin-svgr": "2.4.0",
|
2023-04-13 01:12:19 +00:00
|
|
|
"vite-tsconfig-paths": "4.2.0",
|
2023-04-11 18:37:57 +00:00
|
|
|
"vitest": "0.30.1",
|
2023-04-11 03:25:37 +00:00
|
|
|
"vitest-preview": "0.0.1"
|
2019-11-18 23:37:36 +00:00
|
|
|
}
|
|
|
|
}
|