2019-11-18 23:37:36 +00:00
|
|
|
{
|
2021-10-08 04:00:06 +00:00
|
|
|
"name": "authelia",
|
2022-05-25 22:32:20 +00:00
|
|
|
"version": "4.35.6",
|
2019-11-18 23:37:36 +00:00
|
|
|
"private": true,
|
2022-05-03 06:19:42 +00:00
|
|
|
"pnpm": {
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"allowedVersions": {
|
|
|
|
"@types/react": "18",
|
|
|
|
"react": "18",
|
|
|
|
"react-dom": "18"
|
|
|
|
},
|
|
|
|
"ignoreMissing": [
|
2022-06-23 00:27:27 +00:00
|
|
|
"@babel/core",
|
2022-05-03 06:19:42 +00:00
|
|
|
"@babel/plugin-syntax-flow",
|
|
|
|
"@babel/plugin-transform-react-jsx",
|
|
|
|
"prop-types"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2019-11-18 23:37:36 +00:00
|
|
|
"dependencies": {
|
2022-06-21 00:35:30 +00:00
|
|
|
"@emotion/cache": "11.9.3",
|
|
|
|
"@emotion/react": "11.9.3",
|
|
|
|
"@emotion/styled": "11.9.3",
|
2022-03-26 08:09:42 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "6.1.1",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "6.1.1",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "6.1.1",
|
2022-03-16 21:32:16 +00:00
|
|
|
"@fortawesome/react-fontawesome": "0.1.18",
|
2022-06-21 00:35:30 +00:00
|
|
|
"@mui/icons-material": "5.8.4",
|
2022-06-23 00:49:52 +00:00
|
|
|
"@mui/material": "5.8.5",
|
2022-06-21 00:35:30 +00:00
|
|
|
"@mui/styles": "5.8.4",
|
2022-04-28 22:54:26 +00:00
|
|
|
"axios": "0.27.2",
|
2021-04-03 09:17:36 +00:00
|
|
|
"classnames": "2.3.1",
|
2022-06-16 22:59:51 +00:00
|
|
|
"i18next": "21.8.10",
|
2022-03-24 04:10:42 +00:00
|
|
|
"i18next-browser-languagedetector": "6.1.4",
|
2022-05-25 21:15:25 +00:00
|
|
|
"i18next-http-backend": "1.4.1",
|
2022-05-16 05:25:10 +00:00
|
|
|
"qrcode.react": "3.0.2",
|
2022-02-24 08:27:57 +00:00
|
|
|
"query-string": "7.1.1",
|
2022-06-14 21:38:48 +00:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2022-06-14 22:38:34 +00:00
|
|
|
"react-i18next": "11.17.2",
|
2021-01-30 05:26:23 +00:00
|
|
|
"react-loading": "2.0.3",
|
2021-06-24 11:22:30 +00:00
|
|
|
"react-otp-input": "2.4.0",
|
2022-04-02 22:32:57 +00:00
|
|
|
"react-router-dom": "6.3.0",
|
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",
|
2021-10-08 04:00:06 +00:00
|
|
|
"test": "jest --coverage --no-cache",
|
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"
|
|
|
|
},
|
2021-10-08 04:00:06 +00:00
|
|
|
"jest": {
|
|
|
|
"roots": [
|
|
|
|
"<rootDir>/src"
|
|
|
|
],
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
|
|
"!src/**/*.d.ts"
|
|
|
|
],
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/src/setupTests.js"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
|
|
|
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
|
|
|
|
],
|
|
|
|
"testEnvironment": "jsdom",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": [
|
|
|
|
"esbuild-jest",
|
|
|
|
{
|
|
|
|
"sourcemap": true
|
|
|
|
}
|
|
|
|
],
|
2021-11-15 08:37:58 +00:00
|
|
|
"^.+\\.(css|png|svg)$": "jest-transform-stub"
|
2021-10-08 04:00:06 +00:00
|
|
|
},
|
|
|
|
"transformIgnorePatterns": [
|
|
|
|
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@root/(.*)$": [
|
|
|
|
"<rootDir>/src/$1"
|
|
|
|
],
|
|
|
|
"^@assets/(.*)$": [
|
|
|
|
"<rootDir>/src/assets/$1"
|
|
|
|
],
|
|
|
|
"^@components/(.*)$": [
|
|
|
|
"<rootDir>/src/components/$1"
|
|
|
|
],
|
|
|
|
"^@constants/(.*)$": [
|
|
|
|
"<rootDir>/src/constants/$1"
|
|
|
|
],
|
|
|
|
"^@hooks/(.*)$": [
|
|
|
|
"<rootDir>/src/hooks/$1"
|
|
|
|
],
|
2022-01-21 12:05:46 +00:00
|
|
|
"^@i18n/(.*)$": [
|
|
|
|
"<rootDir>/src/i18n/$1"
|
|
|
|
],
|
2021-10-08 04:00:06 +00:00
|
|
|
"^@layouts/(.*)$": [
|
|
|
|
"<rootDir>/src/layouts/$1"
|
|
|
|
],
|
|
|
|
"^@models/(.*)$": [
|
|
|
|
"<rootDir>/src/models/$1"
|
|
|
|
],
|
|
|
|
"^@services/(.*)$": [
|
|
|
|
"<rootDir>/src/services/$1"
|
|
|
|
],
|
|
|
|
"^@themes/(.*)$": [
|
|
|
|
"<rootDir>/src/themes/$1"
|
|
|
|
],
|
|
|
|
"^@utils/(.*)$": [
|
|
|
|
"<rootDir>/src/utils/$1"
|
|
|
|
],
|
|
|
|
"^@views/(.*)$": [
|
|
|
|
"<rootDir>/src/views/$1"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"watchPlugins": [
|
|
|
|
"jest-watch-typeahead/filename",
|
|
|
|
"jest-watch-typeahead/testname"
|
|
|
|
],
|
|
|
|
"resetMocks": true
|
|
|
|
},
|
2019-11-18 23:37:36 +00:00
|
|
|
"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": {
|
2022-06-25 11:44:19 +00:00
|
|
|
"@commitlint/cli": "17.0.3",
|
|
|
|
"@commitlint/config-conventional": "17.0.3",
|
2022-04-05 22:22:27 +00:00
|
|
|
"@testing-library/jest-dom": "5.16.4",
|
2022-05-28 11:57:58 +00:00
|
|
|
"@testing-library/react": "13.3.0",
|
2022-06-23 01:04:47 +00:00
|
|
|
"@types/jest": "28.1.3",
|
2022-06-15 23:22:38 +00:00
|
|
|
"@types/node": "16.11.41",
|
2021-08-03 06:25:13 +00:00
|
|
|
"@types/qrcode.react": "1.0.2",
|
2022-06-16 22:24:28 +00:00
|
|
|
"@types/react": "18.0.14",
|
2022-05-24 23:59:19 +00:00
|
|
|
"@types/react-dom": "18.0.5",
|
2022-04-03 11:58:27 +00:00
|
|
|
"@types/zxcvbn": "4.4.1",
|
2022-06-21 00:13:41 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
|
|
"@typescript-eslint/parser": "5.29.0",
|
2022-05-03 07:44:39 +00:00
|
|
|
"@vitejs/plugin-react": "1.3.2",
|
2022-06-21 00:35:30 +00:00
|
|
|
"esbuild": "0.14.17",
|
2021-10-08 04:00:06 +00:00
|
|
|
"esbuild-jest": "0.5.0",
|
2022-06-18 00:06:10 +00:00
|
|
|
"eslint": "8.18.0",
|
2022-03-03 01:29:26 +00:00
|
|
|
"eslint-config-prettier": "8.5.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",
|
2022-04-03 07:02:59 +00:00
|
|
|
"eslint-import-resolver-typescript": "2.7.1",
|
2022-04-05 23:34:20 +00:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-06-25 00:21:25 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.6.0",
|
2021-08-31 00:23:06 +00:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2022-06-24 02:14:09 +00:00
|
|
|
"eslint-plugin-react": "7.30.1",
|
2022-06-14 21:38:48 +00:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2022-05-09 12:17:54 +00:00
|
|
|
"husky": "8.0.1",
|
2022-06-07 22:08:04 +00:00
|
|
|
"jest": "28.1.1",
|
|
|
|
"jest-environment-jsdom": "28.1.1",
|
2021-10-08 04:00:06 +00:00
|
|
|
"jest-transform-stub": "2.0.0",
|
2022-04-29 00:29:51 +00:00
|
|
|
"jest-watch-typeahead": "1.1.0",
|
2022-06-16 23:45:44 +00:00
|
|
|
"prettier": "2.7.1",
|
2022-06-14 23:05:09 +00:00
|
|
|
"react-test-renderer": "18.2.0",
|
2022-06-17 23:46:27 +00:00
|
|
|
"typescript": "4.7.4",
|
2022-06-10 23:34:07 +00:00
|
|
|
"vite": "2.9.12",
|
2022-05-19 06:19:41 +00:00
|
|
|
"vite-plugin-eslint": "1.6.1",
|
2022-06-10 23:14:52 +00:00
|
|
|
"vite-plugin-istanbul": "2.8.0",
|
2022-06-23 11:45:13 +00:00
|
|
|
"vite-plugin-svgr": "2.2.0",
|
2022-05-26 23:28:14 +00:00
|
|
|
"vite-tsconfig-paths": "3.5.0"
|
2019-11-18 23:37:36 +00:00
|
|
|
}
|
|
|
|
}
|