diff --git a/README.md b/README.md
index 4427c1b1c..e150074cd 100644
--- a/README.md
+++ b/README.md
@@ -80,7 +80,12 @@ Installation with other ways: https://pnpm.io/installation
3. Then install Bit on your computer (local): https://docs.bit.dev/docs/installation
-4. Check your Bit authentication token with the following command:
+4. Login to Bit on your terminal
+```
+bit login
+```
+
+5. Check your Bit authentication token with the following command:
```
bit config
```
@@ -207,7 +212,7 @@ Whenever there is some progress in your work, commit it.
```
Please refer to this link about how to write a commit message: https://www.conventionalcommits.org/en/v1.0.0/
-4. Push your changes to Github
+4. Push your changes to GitHub
```
git push origin feature/{name-of-your-new-feature}
```
@@ -226,7 +231,9 @@ Whenever there is some progress in your work, commit it.
## Create a new app (micro-app) in WasedaTime
-*For new big features which is obviously less related to other existing apps (syllabus, campus, feeds)*
+*This section is being moved to internal documentation since it is an instruction for creating new & big features, which would be leave to our team members.*
+
+
+
# Contributors
@@ -321,4 +330,4 @@ This project follows the [all-contributors](https://github.com/kentcdodds/all-co
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
-[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fwasedatime%2Fwasedatime-web.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fwasedatime%2Fwasedatime-web?ref=badge_large)
\ No newline at end of file
+[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fwasedatime%2Fwasedatime-web.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fwasedatime%2Fwasedatime-web?ref=badge_large)
diff --git a/campus/.eslintrc.json b/campus/.eslintrc.json
index a01135b12..4347967c3 100644
--- a/campus/.eslintrc.json
+++ b/campus/.eslintrc.json
@@ -78,7 +78,7 @@
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
- { "devDependencies": ["**/webpack.*.js"], "peerDependencies": true }
+ { "devDependencies": [], "peerDependencies": true }
]
},
"overrides": [
diff --git a/campus/package.json b/campus/package.json
index f573f8471..6da8f3af7 100644
--- a/campus/package.json
+++ b/campus/package.json
@@ -2,12 +2,13 @@
"name": "@wasedatime/campus",
"scripts": {
"preinstall": "npx only-allow pnpm",
- "start": "webpack serve --port 8081 --env isLocal",
- "start:standalone": "webpack serve --env standalone",
+ "start": "vite --port 8081",
+ "build": "vite build",
+ "build-dev": "vite build",
+ "preview": "vite preview --port 8081",
+ "preview-dev": "vite preview --port 8081",
+ "tsc": "tsc",
"local": "concurrently --kill-others \"pnpm start\" \"cd ../root && pnpm start\"",
- "build": "webpack --mode=production",
- "build-dev": "webpack --mode=production --env isDev",
- "analyze": "webpack --mode=production --env analyze",
"fix": "pnpm run format && pnpm run lint:fix",
"lint": "eslint src --ext \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts,tsx}\"",
@@ -16,19 +17,23 @@
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/eslint-parser": "7.17.0",
+ "@babel/plugin-syntax-flow": "^7.17.12",
+ "@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.2",
- "@types/systemjs": "6.1.1",
+ "@fortawesome/fontawesome-svg-core": "1.3.0",
+ "@popperjs/core": "^2.11.5",
+ "@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"autoprefixer": "10.4.2",
"babel-plugin-styled-components": "2.0.6",
"concurrently": "7.0.0",
- "css-loader": "6.7.1",
"cssnano": "5.1.0",
+ "dotenv": "^16.0.1",
"eslint": "8.10.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
@@ -38,30 +43,24 @@
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
+ "eslint-plugin-react-hooks": "4.3.0",
"postcss": "8.4.8",
- "postcss-loader": "5.3.0",
"prettier": "2.5.1",
"prettier-eslint": "13.0.0",
+ "prop-types": "^15.8.1",
+ "react-is": "^18.1.0",
+ "react-native": "^0.68.2",
"sass": "1.49.9",
- "sass-loader": "12.6.0",
- "style-loader": "3.3.1",
"tailwindcss": "3.0.23",
"ts-config-single-spa": "2.0.1",
- "ts-loader": "9.2.8",
- "typescript": "4.6.2",
- "webpack": "5.70.0",
- "webpack-cli": "4.9.2",
- "webpack-config-single-spa-react-ts": "4.0.3",
- "webpack-dev-server": "4.7.4",
- "webpack-merge": "5.8.0"
+ "typescript": "4.6.2"
},
"dependencies": {
"@aws-amplify/auth": "4.4.4",
- "@bit/wasedatime.core.assets.img.logo": "0.0.1",
- "@bit/wasedatime.core.theme.colors": "0.0.5",
+ "@bit/wasedatime.core.theme.colors": "0.0.4",
"@bit/wasedatime.core.ts.constants.langs": "0.0.5",
- "@bit/wasedatime.core.ts.ui.header": "0.2.17",
- "@bit/wasedatime.core.ts.ui.loading-spinner": "0.1.2",
+ "@bit/wasedatime.core.ts.ui.header": "0.2.21",
+ "@bit/wasedatime.core.ts.ui.loading-spinner": "0.1.5",
"@bit/wasedatime.core.ts.utils.i18n": "0.0.4",
"@bit/wasedatime.core.ts.utils.responsive-utils": "0.0.1",
"@fortawesome/free-solid-svg-icons": "6.0.0",
@@ -69,8 +68,7 @@
"@types/react": "17.0.39",
"@types/react-dom": "17.0.13",
"@types/styled-components": "5.1.24",
- "@types/systemjs": "6.1.1",
- "@types/webpack-env": "1.16.3",
+ "@vitejs/plugin-react-refresh": "^1.3.6",
"bootstrap": "5.1.3",
"i18next": "19.9.2",
"react": "17.0.2",
@@ -80,8 +78,23 @@
"react-ga": "3.3.0",
"react-helmet": "6.1.0",
"react-i18next": "11.15.6",
- "react-router-dom": "^6.2.2",
+ "react-router-dom": "^6.3.0",
"single-spa-react": "3.2.0",
- "styled-components": "5.3.3"
+ "styled-components": "5.3.3",
+ "vite": "^2.9.9",
+ "vite-plugin-dynamic-import": "^0.7.1"
+ },
+ "resolutions": {
+ "esbuild": "0.14.43"
+ },
+ "peerDependencies": {
+ "@babel/plugin-syntax-flow": "^7.16.7",
+ "@babel/plugin-transform-react-jsx": "^7.17.3",
+ "@fortawesome/fontawesome-svg-core": "1.3.0",
+ "@popperjs/core": "^2.11.5",
+ "eslint-plugin-react-hooks": "4.3.0",
+ "prop-types": "^15.8.1",
+ "react-is": "^18.1.0",
+ "react-native": "^0.68.1"
}
}
diff --git a/campus/pnpm-lock.yaml b/campus/pnpm-lock.yaml
index ff070fc3b..8c8276266 100644
--- a/campus/pnpm-lock.yaml
+++ b/campus/pnpm-lock.yaml
@@ -1,36 +1,42 @@
lockfileVersion: 5.3
+overrides:
+ esbuild: 0.14.43
+
specifiers:
'@aws-amplify/auth': 4.4.4
'@babel/core': 7.17.5
'@babel/eslint-parser': 7.17.0
+ '@babel/plugin-syntax-flow': ^7.17.12
+ '@babel/plugin-transform-react-jsx': ^7.17.12
'@babel/plugin-transform-runtime': 7.17.0
'@babel/preset-env': 7.16.11
'@babel/preset-react': 7.16.7
'@babel/preset-typescript': 7.16.7
'@babel/runtime': 7.17.2
- '@bit/wasedatime.core.assets.img.logo': 0.0.1
- '@bit/wasedatime.core.theme.colors': 0.0.5
+ '@bit/wasedatime.core.theme.colors': 0.0.4
'@bit/wasedatime.core.ts.constants.langs': 0.0.5
- '@bit/wasedatime.core.ts.ui.header': 0.2.17
- '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.2
+ '@bit/wasedatime.core.ts.ui.header': 0.2.21
+ '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.5
'@bit/wasedatime.core.ts.utils.i18n': 0.0.4
'@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1
+ '@fortawesome/fontawesome-svg-core': 1.3.0
'@fortawesome/free-solid-svg-icons': 6.0.0
'@fortawesome/react-fontawesome': 0.1.17
+ '@popperjs/core': ^2.11.5
+ '@types/node': 17.0.21
'@types/react': 17.0.39
'@types/react-dom': 17.0.13
'@types/styled-components': 5.1.24
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
'@typescript-eslint/eslint-plugin': 5.14.0
'@typescript-eslint/parser': 5.14.0
+ '@vitejs/plugin-react-refresh': ^1.3.6
autoprefixer: 10.4.2
babel-plugin-styled-components: 2.0.6
bootstrap: 5.1.3
concurrently: 7.0.0
- css-loader: 6.7.1
cssnano: 5.1.0
+ dotenv: ^16.0.1
eslint: 8.10.0
eslint-config-airbnb: 19.0.4
eslint-config-prettier: 8.5.0
@@ -40,11 +46,12 @@ specifiers:
eslint-plugin-prefer-arrow: 1.2.3
eslint-plugin-prettier: 4.0.0
eslint-plugin-react: 7.29.4
+ eslint-plugin-react-hooks: 4.3.0
i18next: 19.9.2
postcss: 8.4.8
- postcss-loader: 5.3.0
prettier: 2.5.1
prettier-eslint: 13.0.0
+ prop-types: ^15.8.1
react: 17.0.2
react-bootstrap: 1.6.4
react-datepicker: 3.8.0
@@ -52,106 +59,102 @@ specifiers:
react-ga: 3.3.0
react-helmet: 6.1.0
react-i18next: 11.15.6
- react-router-dom: ^6.2.2
+ react-is: ^18.1.0
+ react-native: ^0.68.2
+ react-router-dom: ^6.3.0
sass: 1.49.9
- sass-loader: 12.6.0
single-spa-react: 3.2.0
- style-loader: 3.3.1
styled-components: 5.3.3
tailwindcss: 3.0.23
ts-config-single-spa: 2.0.1
- ts-loader: 9.2.8
typescript: 4.6.2
- webpack: 5.70.0
- webpack-cli: 4.9.2
- webpack-config-single-spa-react-ts: 4.0.3
- webpack-dev-server: 4.7.4
- webpack-merge: 5.8.0
+ vite: ^2.9.9
+ vite-plugin-dynamic-import: ^0.7.1
dependencies:
- '@aws-amplify/auth': 4.4.4
- '@bit/wasedatime.core.assets.img.logo': node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.theme.colors': 0.0.5
+ '@aws-amplify/auth': 4.4.4_react-native@0.68.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.4
'@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.header': node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17_b8fdba992ce7d797017dc07106486496
- '@bit/wasedatime.core.ts.ui.loading-spinner': node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.utils.i18n': node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_8f2a12f93b34591c18c344cd829419b1
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.ui.header': node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21_7a2827d49f1d5811fc8b956626d7d656
+ '@bit/wasedatime.core.ts.ui.loading-spinner': node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.utils.i18n': node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_4c698a524a9b4026764e85649d37b2b3
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
'@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17_react@17.0.2
+ '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
'@types/react': 17.0.39
'@types/react-dom': 17.0.13
'@types/styled-components': 5.1.24
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
- bootstrap: 5.1.3
+ '@vitejs/plugin-react-refresh': 1.3.6
+ bootstrap: 5.1.3_@popperjs+core@2.11.5
i18next: 19.9.2
react: 17.0.2
react-bootstrap: 1.6.4_react-dom@17.0.2+react@17.0.2
react-datepicker: 3.8.0_react-dom@17.0.2+react@17.0.2
react-dom: 17.0.2_react@17.0.2
- react-ga: 3.3.0_react@17.0.2
+ react-ga: 3.3.0_prop-types@15.8.1+react@17.0.2
react-helmet: 6.1.0_react@17.0.2
- react-i18next: 11.15.6_8f2a12f93b34591c18c344cd829419b1
- react-router-dom: 6.2.2_react-dom@17.0.2+react@17.0.2
+ react-i18next: 11.15.6_4c698a524a9b4026764e85649d37b2b3
+ react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2
single-spa-react: 3.2.0_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3
+ vite: 2.9.9_sass@1.49.9
+ vite-plugin-dynamic-import: 0.7.1
devDependencies:
'@babel/core': 7.17.5
'@babel/eslint-parser': 7.17.0_@babel+core@7.17.5+eslint@8.10.0
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
'@babel/preset-env': 7.16.11_@babel+core@7.17.5
'@babel/preset-react': 7.16.7_@babel+core@7.17.5
'@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
'@babel/runtime': 7.17.2
+ '@fortawesome/fontawesome-svg-core': 1.3.0
+ '@popperjs/core': 2.11.5
+ '@types/node': 17.0.21
'@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
'@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
autoprefixer: 10.4.2_postcss@8.4.8
babel-plugin-styled-components: 2.0.6_styled-components@5.3.3
concurrently: 7.0.0
- css-loader: 6.7.1_webpack@5.70.0
cssnano: 5.1.0_postcss@8.4.8
+ dotenv: 16.0.1
eslint: 8.10.0
- eslint-config-airbnb: 19.0.4_d088d899c01a254e9346ef40899b7d56
+ eslint-config-airbnb: 19.0.4_1a200a0ef4d49ba6b286d48d7621cc60
eslint-config-prettier: 8.5.0_eslint@8.10.0
- eslint-config-react-app: 7.0.0_eslint@8.10.0+typescript@4.6.2
+ eslint-config-react-app: 7.0.0_c4c000d5afc09a03279e9cf5f4bd5be7
eslint-plugin-import: 2.25.4_eslint@8.10.0
eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
eslint-plugin-prefer-arrow: 1.2.3_eslint@8.10.0
eslint-plugin-prettier: 4.0.0_f3d13a703a9c1079e3d1af6044603beb
eslint-plugin-react: 7.29.4_eslint@8.10.0
+ eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
postcss: 8.4.8
- postcss-loader: 5.3.0_postcss@8.4.8+webpack@5.70.0
prettier: 2.5.1
prettier-eslint: 13.0.0
+ prop-types: 15.8.1
+ react-is: 18.1.0
+ react-native: 0.68.2_24353ddb04343aa31089be039ffbe27f
sass: 1.49.9
- sass-loader: 12.6.0_sass@1.49.9+webpack@5.70.0
- style-loader: 3.3.1_webpack@5.70.0
tailwindcss: 3.0.23_autoprefixer@10.4.2
ts-config-single-spa: 2.0.1
- ts-loader: 9.2.8_typescript@4.6.2+webpack@5.70.0
typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-config-single-spa-react-ts: 4.0.3_6ed29217d3dea9188d7e08e233aa8cd3
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
packages:
- /@ampproject/remapping/2.1.2:
- resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
+ /@ampproject/remapping/2.2.0:
+ resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.4
- dev: true
+ '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/trace-mapping': 0.3.13
- /@aws-amplify/auth/4.4.4:
+ /@aws-amplify/auth/4.4.4_react-native@0.68.2:
resolution: {integrity: sha512-/iQB8teOXxb6XkOK2nPBxldU5YZjMLy6vTpihWMOPP96TWqldgnKSZykYtsrTb6uYK8iF1VWr7DI9OE7UpKONQ==}
dependencies:
- '@aws-amplify/cache': 4.0.37
- '@aws-amplify/core': 4.4.2
+ '@aws-amplify/cache': 4.0.37_react-native@0.68.2
+ '@aws-amplify/core': 4.4.2_react-native@0.68.2
amazon-cognito-identity-js: 5.2.8
crypto-js: 4.1.1
transitivePeerDependencies:
@@ -159,21 +162,21 @@ packages:
- react-native
dev: false
- /@aws-amplify/cache/4.0.37:
+ /@aws-amplify/cache/4.0.37_react-native@0.68.2:
resolution: {integrity: sha512-SlUYGVTCv848TAOVW+8PhMQKUaC6fAiflEqvW6LkXN0Etj1tetsUhXoSDFVevxkKQEXXouFrj9dSWnYE6SOIhA==}
dependencies:
- '@aws-amplify/core': 4.4.2
+ '@aws-amplify/core': 4.4.2_react-native@0.68.2
transitivePeerDependencies:
- react-native
dev: false
- /@aws-amplify/core/4.4.2:
+ /@aws-amplify/core/4.4.2_react-native@0.68.2:
resolution: {integrity: sha512-5Q6Te5WcLaUcJpXPVVCb/i/HLBr7dS2KyODqiadb2G4ocqmr6DQaMGo7f77LjQ6WqMDETSijqsLjU8nK+2xOpg==}
dependencies:
'@aws-crypto/sha256-js': 1.0.0-alpha.0
- '@aws-sdk/client-cloudwatch-logs': 3.6.1
- '@aws-sdk/client-cognito-identity': 3.6.1
- '@aws-sdk/credential-provider-cognito-identity': 3.6.1
+ '@aws-sdk/client-cloudwatch-logs': 3.6.1_react-native@0.68.2
+ '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.2
+ '@aws-sdk/credential-provider-cognito-identity': 3.6.1_react-native@0.68.2
'@aws-sdk/types': 3.6.1
'@aws-sdk/util-hex-encoding': 3.6.1
universal-cookie: 4.0.4
@@ -238,7 +241,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/client-cloudwatch-logs/3.6.1:
+ /@aws-sdk/client-cloudwatch-logs/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-QOxIDnlVTpnwJ26Gap6RGz61cDLH6TKrIp30VqwdMeT1pCGy8mn9rWln6XA+ymkofHy/08RfpGp+VN4axwd4Lw==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -252,7 +255,7 @@ packages:
'@aws-sdk/middleware-content-length': 3.6.1
'@aws-sdk/middleware-host-header': 3.6.1
'@aws-sdk/middleware-logger': 3.6.1
- '@aws-sdk/middleware-retry': 3.6.1
+ '@aws-sdk/middleware-retry': 3.6.1_react-native@0.68.2
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -272,12 +275,12 @@ packages:
'@aws-sdk/util-user-agent-node': 3.6.1
'@aws-sdk/util-utf8-browser': 3.6.1
'@aws-sdk/util-utf8-node': 3.6.1
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- react-native
dev: false
- /@aws-sdk/client-cognito-identity/3.6.1:
+ /@aws-sdk/client-cognito-identity/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-FMj2GR9R5oCKb3/NI16GIvWeHcE4uX42fBAaQKPbjg2gALFDx9CcJYsdOtDP37V89GtPyZilLv6GJxrwJKzYGg==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -291,7 +294,7 @@ packages:
'@aws-sdk/middleware-content-length': 3.6.1
'@aws-sdk/middleware-host-header': 3.6.1
'@aws-sdk/middleware-logger': 3.6.1
- '@aws-sdk/middleware-retry': 3.6.1
+ '@aws-sdk/middleware-retry': 3.6.1_react-native@0.68.2
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -311,7 +314,7 @@ packages:
'@aws-sdk/util-user-agent-node': 3.6.1
'@aws-sdk/util-utf8-browser': 3.6.1
'@aws-sdk/util-utf8-node': 3.6.1
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- react-native
dev: false
@@ -325,11 +328,11 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-cognito-identity/3.6.1:
+ /@aws-sdk/credential-provider-cognito-identity/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-uJ9q+yq+Dhdo32gcv0p/AT7sKSAUH0y4ts9XRK/vx0dW9Q3XJy99mOJlq/6fkh4LfWeavJJlaCo9lSHNMWXx4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@aws-sdk/client-cognito-identity': 3.6.1
+ '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.2
'@aws-sdk/property-provider': 3.6.1
'@aws-sdk/types': 3.6.1
tslib: 1.14.1
@@ -449,14 +452,14 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-retry/3.6.1:
+ /@aws-sdk/middleware-retry/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-WHeo4d2jsXxBP+cec2SeLb0btYXwYXuE56WLmNt0RvJYmiBzytUeGJeRa9HuwV574kgigAuHGCeHlPO36G4Y0Q==}
engines: {node: '>= 10.0.0'}
dependencies:
'@aws-sdk/protocol-http': 3.6.1
'@aws-sdk/service-error-classification': 3.6.1
'@aws-sdk/types': 3.6.1
- react-native-get-random-values: 1.7.2
+ react-native-get-random-values: 1.8.0_react-native@0.68.2
tslib: 1.14.1
uuid: 3.4.0
transitivePeerDependencies:
@@ -657,7 +660,7 @@ packages:
resolution: {integrity: sha512-0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg==}
engines: {node: '>= 12.0.0'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/@aws-sdk/util-uri-escape/3.6.1:
@@ -707,34 +710,33 @@ packages:
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
- '@babel/highlight': 7.16.10
+ '@babel/highlight': 7.17.12
dev: true
/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.16.10
+ '@babel/highlight': 7.17.12
- /@babel/compat-data/7.17.7:
- resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
+ /@babel/compat-data/7.17.10:
+ resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/core/7.17.5:
resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.1.2
+ '@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.7
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helpers': 7.17.8
- '@babel/parser': 7.17.8
+ '@babel/generator': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.17.5
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helpers': 7.18.2
+ '@babel/parser': 7.18.4
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -742,7 +744,6 @@ packages:
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/eslint-parser/7.17.0_@babel+core@7.17.5+eslint@8.10.0:
resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
@@ -758,61 +759,60 @@ packages:
semver: 6.3.0
dev: true
- /@babel/generator/7.17.7:
- resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==}
+ /@babel/generator/7.18.2:
+ resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
+ '@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
- source-map: 0.5.7
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
/@babel/helper-builder-binary-assignment-operator-visitor/7.16.7:
resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
dev: true
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
+ /@babel/helper-compilation-targets/7.18.2_@babel+core@7.17.5:
+ resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.17.10
'@babel/core': 7.17.5
'@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.2
+ browserslist: 4.20.3
semver: 6.3.0
- dev: true
- /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.5:
- resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
+ /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
+ '@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
+ /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -828,10 +828,10 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.17.5
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.3
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/traverse': 7.18.2
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.0
@@ -840,79 +840,68 @@ packages:
- supports-color
dev: true
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
+ /@babel/helper-environment-visitor/7.18.2:
+ resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
/@babel/helper-explode-assignable-expression/7.16.7:
resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
dev: true
- /@babel/helper-function-name/7.16.7:
- resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
+ /@babel/helper-function-name/7.17.9:
+ resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-get-function-arity': 7.16.7
'@babel/template': 7.16.7
- '@babel/types': 7.17.0
-
- /@babel/helper-get-function-arity/7.16.7:
- resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
/@babel/helper-member-expression-to-functions/7.17.7:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
dev: true
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
- /@babel/helper-module-transforms/7.17.7:
- resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==}
+ /@babel/helper-module-transforms/7.18.0:
+ resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.17.7
+ '@babel/helper-simple-access': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/helper-optimise-call-expression/7.16.7:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
dev: true
- /@babel/helper-plugin-utils/7.16.7:
- resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==}
+ /@babel/helper-plugin-utils/7.17.12:
+ resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-remap-async-to-generator/7.16.8:
resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
@@ -920,43 +909,42 @@ packages:
dependencies:
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.16.7:
- resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
+ /@babel/helper-replace-supers/7.18.2:
+ resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-simple-access/7.17.7:
- resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
+ /@babel/helper-simple-access/7.18.2:
+ resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
- dev: true
+ '@babel/types': 7.18.4
/@babel/helper-skip-transparent-expression-wrappers/7.16.0:
resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
dev: true
/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
@@ -965,118 +953,119 @@ packages:
/@babel/helper-validator-option/7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-wrap-function/7.16.8:
resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.16.7
+ '@babel/helper-function-name': 7.17.9
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.17.8:
- resolution: {integrity: sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==}
+ /@babel/helpers/7.18.2:
+ resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/highlight/7.16.10:
- resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
+ /@babel/highlight/7.17.12:
+ resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.17.8:
- resolution: {integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==}
+ /@babel/parser/7.18.4:
+ resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.18.4
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
+ /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-remap-async-to-generator': 7.16.8
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
+ /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.5:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
+ /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.17.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-U69odN4Umyyx1xO1rTII0IDkAEC+RNlcKXtqOblfpzqy1C+aOplb76BQNq0+XdpVkOaPlpEDwd++joY8FNFJKA==}
+ /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.17.5:
+ resolution: {integrity: sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
+ '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.17.5
charcodes: 0.2.0
transitivePeerDependencies:
- supports-color
@@ -1089,51 +1078,62 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
+ /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.5
+ dev: true
+
+ /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
+ /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
dev: true
@@ -1144,22 +1144,22 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
+ /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.17.10
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.17.5
dev: true
/@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.5:
@@ -1169,59 +1169,59 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
+ /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
dev: true
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.5:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
+ /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
+ /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
+ /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.5:
@@ -1230,7 +1230,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.5:
@@ -1239,7 +1239,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.5:
@@ -1249,17 +1249,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==}
+ /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.5:
@@ -1268,7 +1268,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.5:
@@ -1277,17 +1287,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
+ /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5:
@@ -1296,17 +1306,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==}
+ /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.5:
@@ -1315,7 +1325,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.5:
@@ -1324,7 +1334,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.5:
@@ -1333,7 +1343,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.5:
@@ -1342,7 +1352,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.5:
@@ -1351,7 +1361,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.5:
@@ -1360,7 +1370,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.5:
@@ -1370,7 +1380,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.5:
@@ -1380,38 +1390,38 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
+ /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
+ /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-remap-async-to-generator': 7.16.8
transitivePeerDependencies:
- supports-color
@@ -1424,56 +1434,56 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
+ /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.17.5:
+ resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
+ /@babel/plugin-transform-classes/7.18.4_@babel+core@7.17.5:
+ resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
+ '@babel/helper-function-name': 7.17.9
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
+ /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
+ /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.5:
@@ -1483,18 +1493,18 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
+ /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.5:
@@ -1505,28 +1515,28 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
+ /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.17.5
dev: true
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
+ /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.17.5:
+ resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.5:
@@ -1536,19 +1546,19 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.17.5
+ '@babel/helper-function-name': 7.17.9
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
+ /@babel/plugin-transform-literals/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.5:
@@ -1558,85 +1568,96 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
+ /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
+ /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.17.5:
+ resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.17.7
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-simple-access': 7.18.2
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
+ /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.17.5:
+ resolution: {integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-identifier': 7.16.7
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
+ /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
+ /@babel/plugin-transform-object-assign/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.5:
@@ -1646,20 +1667,20 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.5:
@@ -1669,7 +1690,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.5:
@@ -1679,7 +1700,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.5:
@@ -1689,11 +1710,29 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
dev: true
- /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==}
+ /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+
+ /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+
+ /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1701,40 +1740,41 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.17.5
+ '@babel/types': 7.18.4
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
+ /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
+ /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.17.12
+ regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
+ /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-runtime/7.17.0_@babel+core@7.17.5:
@@ -1745,7 +1785,7 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5
babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
@@ -1761,17 +1801,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
+ /@babel/plugin-transform-spread/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
dev: true
@@ -1782,39 +1822,39 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
+ /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.17.5:
+ resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
+ /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.17.5:
+ resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -1826,7 +1866,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.5:
@@ -1836,8 +1876,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/preset-env/7.16.11_@babel+core@7.17.5:
@@ -1846,28 +1886,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.17.10
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.17.5
'@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.17.5
'@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.17.5
'@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.17.5
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
@@ -1882,59 +1922,71 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.5
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.5
+ '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.17.5
'@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.17.5
'@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.5
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.5
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.5
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-systemjs': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.5
'@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.5
'@babel/preset-modules': 0.1.5_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5
babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
- core-js-compat: 3.21.1
+ core-js-compat: 3.22.7
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/preset-flow/7.17.12_@babel+core@7.17.5:
+ resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-validator-option': 7.16.7
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.17.5
+ dev: true
+
/@babel/preset-modules/0.1.5_@babel+core@7.17.5:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.4
esutils: 2.0.3
dev: true
@@ -1945,12 +1997,12 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
'@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.17.5
dev: true
/@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
@@ -1960,18 +2012,32 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.5
+ '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/runtime-corejs3/7.17.8:
- resolution: {integrity: sha512-ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ==}
+ /@babel/register/7.17.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.5
+ source-map-support: 0.5.21
+ dev: true
+
+ /@babel/runtime-corejs3/7.18.3:
+ resolution: {integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.21.1
+ core-js-pure: 3.22.7
regenerator-runtime: 0.13.9
dev: true
@@ -1986,61 +2052,51 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.8
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
- /@babel/traverse/7.17.3:
- resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
+ /@babel/traverse/7.18.2:
+ resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
+ '@babel/generator': 7.18.2
+ '@babel/helper-environment-visitor': 7.18.2
+ '@babel/helper-function-name': 7.17.9
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.8
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/traverse/7.17.3_supports-color@5.5.0:
- resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
+ /@babel/traverse/7.18.2_supports-color@5.5.0:
+ resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
+ '@babel/generator': 7.18.2
+ '@babel/helper-environment-visitor': 7.18.2
+ '@babel/helper-function-name': 7.17.9
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.8
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
debug: 4.3.4_supports-color@5.5.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types/7.17.0:
- resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
+ /@babel/types/7.18.4:
+ resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
to-fast-properties: 2.0.0
- /@bit/wasedatime.core.theme.colors/0.0.5:
- resolution: {integrity: sha1-K7sD8kjDztzqeg0jgeHErLF4mYE=, tarball: wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.5.tgz}
- dev: false
-
- /@discoveryjs/json-ext/0.5.7:
- resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
- engines: {node: '>=10.0.0'}
- dev: true
-
/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
dev: false
@@ -2070,7 +2126,7 @@ packages:
ajv: 6.12.6
debug: 4.3.4
espree: 7.3.1
- globals: 13.13.0
+ globals: 13.15.0
ignore: 4.0.6
import-fresh: 3.3.0
js-yaml: 3.14.1
@@ -2080,14 +2136,14 @@ packages:
- supports-color
dev: true
- /@eslint/eslintrc/1.2.1:
- resolution: {integrity: sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==}
+ /@eslint/eslintrc/1.3.0:
+ resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.1
- globals: 13.13.0
+ espree: 9.3.2
+ globals: 13.15.0
ignore: 5.2.0
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -2108,7 +2164,6 @@ packages:
engines: {node: '>=6'}
deprecated: Please upgrade to 6.1.0. https://fontawesome.com/docs/changelog/
requiresBuild: true
- dev: false
/@fortawesome/fontawesome-svg-core/1.3.0:
resolution: {integrity: sha512-UIL6crBWhjTNQcONt96ExjUnKt1D68foe3xjEensLDclqQ6YagwCRYVQdrp/hW0ALRp/5Fv/VKw+MqTUWYYvPg==}
@@ -2117,7 +2172,6 @@ packages:
requiresBuild: true
dependencies:
'@fortawesome/fontawesome-common-types': 0.3.0
- dev: false
/@fortawesome/free-solid-svg-icons/5.15.4:
resolution: {integrity: sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==}
@@ -2146,15 +2200,15 @@ packages:
react: 17.0.2
dev: false
- /@fortawesome/react-fontawesome/0.1.17_react@17.0.2:
- resolution: {integrity: sha512-dX43Z5IvMaW7fwzU8farosYjKNGfRb2HB/DgjVBHeJZ/NSnuuaujPPx0YOdcAq+n3mqn70tyCde2HM1mqbhiuw==}
- peerDependencies:
- '@fortawesome/fontawesome-svg-core': ~1 || >=1.3.0-beta1
- react: '>=16.x'
+ /@hapi/hoek/9.3.0:
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+ dev: true
+
+ /@hapi/topo/5.1.0:
+ resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
- prop-types: 15.8.1
- react: 17.0.2
- dev: false
+ '@hapi/hoek': 9.3.0
+ dev: true
/@humanwhocodes/config-array/0.5.0:
resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
@@ -2194,26 +2248,70 @@ packages:
warning: 4.0.3
dev: false
- /@jridgewell/resolve-uri/3.0.5:
- resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
- engines: {node: '>=6.0.0'}
+ /@jest/create-cache-key-function/27.5.1:
+ resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
dev: true
- /@jridgewell/sourcemap-codec/1.4.11:
- resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
+ /@jest/types/26.6.2:
+ resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 17.0.21
+ '@types/yargs': 15.0.14
+ chalk: 4.1.2
dev: true
- /@jridgewell/trace-mapping/0.3.4:
- resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==}
+ /@jest/types/27.5.1:
+ resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@jridgewell/resolve-uri': 3.0.5
- '@jridgewell/sourcemap-codec': 1.4.11
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 17.0.21
+ '@types/yargs': 16.0.4
+ chalk: 4.1.2
dev: true
- /@material-ui/core/4.12.3_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-sdpgI/PL56QVsEJldwEe4FFaFTLUqN+rd7sSZiRCdx2E/C7z5yK0y/khAWVBH24tXwto7I1hCzNWfJGZIYJKnw==}
+ /@jridgewell/gen-mapping/0.1.1:
+ resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.1
+ '@jridgewell/sourcemap-codec': 1.4.13
+
+ /@jridgewell/gen-mapping/0.3.1:
+ resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.1
+ '@jridgewell/sourcemap-codec': 1.4.13
+ '@jridgewell/trace-mapping': 0.3.13
+
+ /@jridgewell/resolve-uri/3.0.7:
+ resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/set-array/1.1.1:
+ resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/sourcemap-codec/1.4.13:
+ resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
+
+ /@jridgewell/trace-mapping/0.3.13:
+ resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.0.7
+ '@jridgewell/sourcemap-codec': 1.4.13
+
+ /@material-ui/core/4.12.4_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/material. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -2223,10 +2321,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.17.2
- '@material-ui/styles': 4.11.4_b8fdba992ce7d797017dc07106486496
- '@material-ui/system': 4.12.1_b8fdba992ce7d797017dc07106486496
+ '@material-ui/styles': 4.11.5_b8fdba992ce7d797017dc07106486496
+ '@material-ui/system': 4.12.2_b8fdba992ce7d797017dc07106486496
'@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
'@types/react-transition-group': 4.4.4
clsx: 1.1.1
@@ -2239,10 +2337,9 @@ packages:
react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2
dev: false
- /@material-ui/styles/4.11.4_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew==}
+ /@material-ui/styles/4.11.5_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/styles. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -2254,7 +2351,7 @@ packages:
'@babel/runtime': 7.17.2
'@emotion/hash': 0.8.0
'@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
clsx: 1.1.1
csstype: 2.6.20
@@ -2272,10 +2369,9 @@ packages:
react-dom: 17.0.2_react@17.0.2
dev: false
- /@material-ui/system/4.12.1_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw==}
+ /@material-ui/system/4.12.2_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/system. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -2285,7 +2381,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.17.2
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
csstype: 2.6.20
prop-types: 15.8.1
@@ -2304,8 +2400,8 @@ packages:
'@types/react': 17.0.39
dev: false
- /@material-ui/utils/4.11.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==}
+ /@material-ui/utils/4.11.3_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
@@ -2324,12 +2420,10 @@ packages:
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- dev: true
/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- dev: true
/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
@@ -2337,15 +2431,210 @@ packages:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.13.0
+
+ /@popperjs/core/2.11.5:
+ resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==}
+
+ /@react-native-community/cli-debugger-ui/7.0.3:
+ resolution: {integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==}
+ dependencies:
+ serve-static: 1.15.0
+ dev: true
+
+ /@react-native-community/cli-hermes/6.3.0:
+ resolution: {integrity: sha512-Uhbm9bubyZLZ12vFCIfWbE/Qi3SBTbYIN/TC08EudTLhv/KbPomCQnmFsnJ7AXQFuOZJs73mBxoEAYSbRbwyVA==}
+ dependencies:
+ '@react-native-community/cli-platform-android': 6.3.0
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ hermes-profile-transformer: 0.0.6
+ ip: 1.1.8
+ transitivePeerDependencies:
+ - encoding
dev: true
- /@polka/url/1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ /@react-native-community/cli-platform-android/6.3.0:
+ resolution: {integrity: sha512-d5ufyYcvrZoHznYm5bjBXaiHIJv552t5gYtQpnUsxBhHSQ8QlaNmlLUyeSPRDfOw4ND9b0tPHqs4ufwx6vp/fQ==}
+ dependencies:
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ execa: 1.0.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ jetifier: 1.6.8
+ lodash: 4.17.21
+ logkitty: 0.7.1
+ slash: 3.0.0
+ xmldoc: 1.1.2
+ transitivePeerDependencies:
+ - encoding
dev: true
- /@popperjs/core/2.11.4:
- resolution: {integrity: sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg==}
- dev: false
+ /@react-native-community/cli-platform-android/7.0.1:
+ resolution: {integrity: sha512-nOr0aMkxAymCnbtsQwXBlyoRN2Y+IzC7Qz5T+/zyWwEbTY8SKQI8uV+8+qttUvzSvuXa2PeXsTWluuliOS8KCw==}
+ dependencies:
+ '@react-native-community/cli-tools': 7.0.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ jetifier: 1.6.8
+ lodash: 4.17.21
+ logkitty: 0.7.1
+ slash: 3.0.0
+ xmldoc: 1.1.2
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-platform-ios/7.0.1:
+ resolution: {integrity: sha512-PLRIbzrCzSedmpjuFtQqcqUD45G8q7sEciI1lf5zUbVMXqjIBwJWS7iz8235PyWwj8J4MNHohLC+oyRueFtbGg==}
+ dependencies:
+ '@react-native-community/cli-tools': 7.0.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ glob: 7.2.3
+ js-yaml: 3.14.1
+ lodash: 4.17.21
+ ora: 5.4.1
+ plist: 3.0.5
+ xcode: 3.0.1
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-plugin-metro/7.0.3:
+ resolution: {integrity: sha512-HJrEkFbxv9DNixsGwO+Q0zCcZMghDltyzeB9yQ//D5ZR4ZUEuAIPrRDdEp9xVw0WkBxAIZs6KXLux2/yPMwLhA==}
+ dependencies:
+ '@react-native-community/cli-server-api': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ metro: 0.67.0
+ metro-config: 0.67.0
+ metro-core: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0
+ metro-resolver: 0.67.0
+ metro-runtime: 0.67.0
+ readline: 1.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@react-native-community/cli-server-api/7.0.3:
+ resolution: {integrity: sha512-JDrLsrkBgNxbG2u3fouoVGL9tKrXUrTsaNwr+oCV+3XyMwbVe42r/OaQ681/iW/7mHXjuVkDnMcp7BMg7e2yJg==}
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ compression: 1.7.4
+ connect: 3.7.0
+ errorhandler: 1.5.1
+ nocache: 2.1.0
+ pretty-format: 26.6.2
+ serve-static: 1.15.0
+ ws: 7.5.8
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+ dev: true
+
+ /@react-native-community/cli-tools/6.2.0:
+ resolution: {integrity: sha512-08ssz4GMEnRxC/1FgTTN/Ud7mExQi5xMphItPjfHiTxpZPhrFn+IMx6mya0ncFEhhxQ207wYlJMRLPRRdBZ8oA==}
+ dependencies:
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ lodash: 4.17.21
+ mime: 2.6.0
+ node-fetch: 2.6.7
+ open: 6.4.0
+ semver: 6.3.0
+ shell-quote: 1.6.1
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-tools/7.0.1:
+ resolution: {integrity: sha512-0xra4hKNA5PR2zYVXsDMNiXMGaDNoNRYMY6eTP2aVIxQbqIcVMDWSyCA8wMWX5iOpMWg0cZGaQ6a77f3Rlb34g==}
+ dependencies:
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ lodash: 4.17.21
+ mime: 2.6.0
+ node-fetch: 2.6.7
+ open: 6.4.0
+ ora: 5.4.1
+ semver: 6.3.0
+ shell-quote: 1.7.3
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-types/6.0.0:
+ resolution: {integrity: sha512-K493Fk2DMJC0ZM8s8gnfseKxGasIhuDaCUDeLZcoCSFlrjKEuEs1BKKEJiev0CARhKEXKOyyp/uqYM9nWhisNw==}
+ dependencies:
+ ora: 3.4.0
+ dev: true
+
+ /@react-native-community/cli/7.0.3_react-native@0.68.2:
+ resolution: {integrity: sha512-WyJOA829KAhU1pw2MDQt0YhOS9kyR2KqyqgJyTuQhzFVCBPX4F5aDEkZYYn4jdldaDHCPrLJ3ho3gxYTXy+x7w==}
+ engines: {node: '>=12'}
+ hasBin: true
+ peerDependencies:
+ react-native: '*'
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 7.0.3
+ '@react-native-community/cli-hermes': 6.3.0
+ '@react-native-community/cli-plugin-metro': 7.0.3
+ '@react-native-community/cli-server-api': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ '@react-native-community/cli-types': 6.0.0
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ command-exists: 1.2.9
+ commander: 2.20.3
+ cosmiconfig: 5.2.1
+ deepmerge: 3.3.0
+ envinfo: 7.8.1
+ execa: 1.0.0
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ graceful-fs: 4.2.10
+ joi: 17.6.0
+ leven: 3.1.0
+ lodash: 4.17.21
+ minimist: 1.2.6
+ node-stream-zip: 1.15.0
+ ora: 3.4.0
+ pretty-format: 26.6.2
+ prompts: 2.4.2
+ react-native: 0.68.2_24353ddb04343aa31089be039ffbe27f
+ semver: 6.3.0
+ serve-static: 1.15.0
+ strip-ansi: 5.2.0
+ sudo-prompt: 9.2.1
+ wcwidth: 1.0.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@react-native/assets/1.0.0:
+ resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
+ dev: true
+
+ /@react-native/normalize-color/2.0.0:
+ resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==}
+ dev: true
+
+ /@react-native/polyfills/2.0.0:
+ resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==}
+ dev: true
/@restart/context/2.1.4_react@17.0.2:
resolution: {integrity: sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==}
@@ -2364,82 +2653,58 @@ packages:
react: 17.0.2
dev: false
- /@rushstack/eslint-patch/1.1.1:
- resolution: {integrity: sha512-BUyKJGdDWqvWC5GEhyOiUrGNi9iJUr4CU0O2WxJL6QJhHeeA/NVBalH+FeK0r/x/W0rPymXt5s78TDS7d6lCwg==}
- dev: true
+ /@restart/hooks/0.4.7_react@17.0.2:
+ resolution: {integrity: sha512-ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A==}
+ peerDependencies:
+ react: '>=16.8.0'
+ dependencies:
+ dequal: 2.0.2
+ react: 17.0.2
+ dev: false
- /@trysound/sax/0.2.0:
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
+ /@rollup/pluginutils/4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: false
+
+ /@rushstack/eslint-patch/1.1.3:
+ resolution: {integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==}
dev: true
- /@types/body-parser/1.19.2:
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
+ /@sideway/address/4.1.4:
+ resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 17.0.23
+ '@hapi/hoek': 9.3.0
dev: true
- /@types/bonjour/3.5.10:
- resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
- dependencies:
- '@types/node': 17.0.23
+ /@sideway/formula/3.0.0:
+ resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
dev: true
- /@types/connect-history-api-fallback/1.3.5:
- resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
- dependencies:
- '@types/express-serve-static-core': 4.17.28
- '@types/node': 17.0.23
+ /@sideway/pinpoint/2.0.0:
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: true
- /@types/connect/3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
- dependencies:
- '@types/node': 17.0.23
+ /@trysound/sax/0.2.0:
+ resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
+ engines: {node: '>=10.13.0'}
dev: true
/@types/cookie/0.3.3:
resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
dev: false
- /@types/eslint-scope/3.7.3:
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
- dependencies:
- '@types/eslint': 8.4.1
- '@types/estree': 0.0.51
- dev: true
-
/@types/eslint-visitor-keys/1.0.0:
resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
dev: true
- /@types/eslint/8.4.1:
- resolution: {integrity: sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==}
+ /@types/graceful-fs/4.1.5:
+ resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
dependencies:
- '@types/estree': 0.0.51
- '@types/json-schema': 7.0.11
- dev: true
-
- /@types/estree/0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- dev: true
-
- /@types/express-serve-static-core/4.17.28:
- resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
- dependencies:
- '@types/node': 17.0.23
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- dev: true
-
- /@types/express/4.17.13:
- resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==}
- dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.28
- '@types/qs': 6.9.7
- '@types/serve-static': 1.13.10
+ '@types/node': 17.0.21
dev: true
/@types/hoist-non-react-statics/3.3.1:
@@ -2449,52 +2714,46 @@ packages:
hoist-non-react-statics: 3.3.2
dev: false
- /@types/html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
+ /@types/invariant/2.2.35:
+ resolution: {integrity: sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==}
+ dev: false
+
+ /@types/istanbul-lib-coverage/2.0.4:
+ resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: true
- /@types/http-proxy/1.17.8:
- resolution: {integrity: sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==}
+ /@types/istanbul-lib-report/3.0.0:
+ resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
- '@types/node': 17.0.23
+ '@types/istanbul-lib-coverage': 2.0.4
dev: true
- /@types/invariant/2.2.35:
- resolution: {integrity: sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==}
- dev: false
+ /@types/istanbul-reports/3.0.1:
+ resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ dependencies:
+ '@types/istanbul-lib-report': 3.0.0
+ dev: true
/@types/json-schema/7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
dev: true
/@types/json5/0.0.29:
- resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
- dev: true
-
- /@types/mime/1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/node/17.0.23:
- resolution: {integrity: sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==}
+ /@types/node/17.0.21:
+ resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==}
dev: true
/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
- /@types/prop-types/15.7.4:
- resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
+ /@types/prop-types/15.7.5:
+ resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/qs/6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- dev: true
-
- /@types/range-parser/1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- dev: true
-
/@types/react-dom/17.0.13:
resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
dependencies:
@@ -2510,62 +2769,41 @@ packages:
/@types/react/17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
dependencies:
- '@types/prop-types': 15.7.4
+ '@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.0.11
+ csstype: 3.1.0
dev: false
- /@types/retry/0.12.1:
- resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
- dev: true
-
/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: false
- /@types/serve-index/1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
+ /@types/styled-components/5.1.24:
+ resolution: {integrity: sha512-mz0fzq2nez+Lq5IuYammYwWgyLUE6OMAJTQL9D8hFLP4Pkh7gVYJii/VQWxq8/TK34g/OrkehXaFNdcEKcItug==}
dependencies:
- '@types/express': 4.17.13
- dev: true
+ '@types/hoist-non-react-statics': 3.3.1
+ '@types/react': 17.0.39
+ csstype: 3.1.0
+ dev: false
- /@types/serve-static/1.13.10:
- resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==}
- dependencies:
- '@types/mime': 1.3.2
- '@types/node': 17.0.23
- dev: true
+ /@types/warning/3.0.0:
+ resolution: {integrity: sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==}
+ dev: false
- /@types/sockjs/0.3.33:
- resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
- dependencies:
- '@types/node': 17.0.23
+ /@types/yargs-parser/21.0.0:
+ resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
- /@types/styled-components/5.1.24:
- resolution: {integrity: sha512-mz0fzq2nez+Lq5IuYammYwWgyLUE6OMAJTQL9D8hFLP4Pkh7gVYJii/VQWxq8/TK34g/OrkehXaFNdcEKcItug==}
+ /@types/yargs/15.0.14:
+ resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==}
dependencies:
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.39
- csstype: 3.0.11
- dev: false
-
- /@types/systemjs/6.1.1:
- resolution: {integrity: sha512-d1M6eDKBGWx7RbYy295VEFoOF9YDJkPI959QYnmzcmeaV+SP4D0xV7dEh3sN5XF3GvO3PhGzm+17Z598nvHQuQ==}
- dev: false
-
- /@types/warning/3.0.0:
- resolution: {integrity: sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=}
- dev: false
-
- /@types/webpack-env/1.16.3:
- resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
- dev: false
+ '@types/yargs-parser': 21.0.0
+ dev: true
- /@types/ws/8.5.3:
- resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+ /@types/yargs/16.0.4:
+ resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
dependencies:
- '@types/node': 17.0.23
+ '@types/yargs-parser': 21.0.0
dev: true
/@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0:
@@ -2588,7 +2826,7 @@ packages:
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
- semver: 7.3.5
+ semver: 7.3.7
tsutils: 3.21.0_typescript@4.6.2
typescript: 4.6.2
transitivePeerDependencies:
@@ -2612,13 +2850,13 @@ packages:
- typescript
dev: true
- /@typescript-eslint/experimental-utils/5.16.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-bitZtqO13XX64/UOQKoDbVg2H4VHzbHnWWlTRc7ofq7SuQyPCwEycF1Zmn5ZAMTJZ3p5uMS7xJGUdOtZK7LrNw==}
+ /@typescript-eslint/experimental-utils/5.26.0_eslint@8.10.0+typescript@4.6.2:
+ resolution: {integrity: sha512-OgUGXC/teXD8PYOkn33RSwBJPVwL0I2ipm5OHr9g9cfAhVrPC2DxQiWqaq88MNO5mbr/ZWnav3EVBpuwDreS5Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.16.0_eslint@8.10.0+typescript@4.6.2
+ '@typescript-eslint/utils': 5.26.0_eslint@8.10.0+typescript@4.6.2
eslint: 8.10.0
transitivePeerDependencies:
- supports-color
@@ -2674,12 +2912,12 @@ packages:
'@typescript-eslint/visitor-keys': 5.14.0
dev: true
- /@typescript-eslint/scope-manager/5.16.0:
- resolution: {integrity: sha512-P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ==}
+ /@typescript-eslint/scope-manager/5.26.0:
+ resolution: {integrity: sha512-gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/visitor-keys': 5.16.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/visitor-keys': 5.26.0
dev: true
/@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
@@ -2711,8 +2949,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.16.0:
- resolution: {integrity: sha512-oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g==}
+ /@typescript-eslint/types/5.26.0:
+ resolution: {integrity: sha512-8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -2728,10 +2966,10 @@ packages:
'@typescript-eslint/types': 3.10.1
'@typescript-eslint/visitor-keys': 3.10.1
debug: 4.3.4
- glob: 7.2.0
+ glob: 7.2.3
is-glob: 4.0.3
lodash: 4.17.21
- semver: 7.3.5
+ semver: 7.3.7
tsutils: 3.21.0_typescript@3.9.10
typescript: 3.9.10
transitivePeerDependencies:
@@ -2752,15 +2990,15 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
+ semver: 7.3.7
tsutils: 3.21.0_typescript@4.6.2
typescript: 4.6.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.16.0_typescript@4.6.2:
- resolution: {integrity: sha512-SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ==}
+ /@typescript-eslint/typescript-estree/5.26.0_typescript@4.6.2:
+ resolution: {integrity: sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2768,12 +3006,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/visitor-keys': 5.16.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/visitor-keys': 5.26.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
+ semver: 7.3.7
tsutils: 3.21.0_typescript@4.6.2
typescript: 4.6.2
transitivePeerDependencies:
@@ -2798,16 +3036,16 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils/5.16.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ==}
+ /@typescript-eslint/utils/5.26.0_eslint@8.10.0+typescript@4.6.2:
+ resolution: {integrity: sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.16.0
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/typescript-estree': 5.16.0_typescript@4.6.2
+ '@typescript-eslint/scope-manager': 5.26.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.6.2
eslint: 8.10.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.10.0
@@ -2831,158 +3069,37 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.16.0:
- resolution: {integrity: sha512-jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g==}
+ /@typescript-eslint/visitor-keys/5.26.0:
+ resolution: {integrity: sha512-wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.16.0
+ '@typescript-eslint/types': 5.26.0
eslint-visitor-keys: 3.3.0
dev: true
- /@webassemblyjs/ast/1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- dev: true
-
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- dev: true
-
- /@webassemblyjs/helper-api-error/1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- dev: true
-
- /@webassemblyjs/helper-buffer/1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- dev: true
-
- /@webassemblyjs/helper-numbers/1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- dev: true
-
- /@webassemblyjs/helper-wasm-section/1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- dev: true
-
- /@webassemblyjs/ieee754/1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
- dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
-
- /@webassemblyjs/leb128/1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/utf8/1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- dev: true
-
- /@webassemblyjs/wasm-edit/1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-gen/1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-opt/1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-parser/1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wast-printer/1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==}
- peerDependencies:
- webpack: 4.x.x || 5.x.x
- webpack-cli: 4.x.x
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
-
- /@webpack-cli/info/1.4.1_webpack-cli@4.9.2:
- resolution: {integrity: sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==}
- peerDependencies:
- webpack-cli: 4.x.x
+ /@vitejs/plugin-react-refresh/1.3.6:
+ resolution: {integrity: sha512-iNR/UqhUOmFFxiezt0em9CgmiJBdWR+5jGxB2FihaoJfqGt76kiwaKoVOJVU5NYcDWMdN06LbyN2VIGIoYdsEA==}
+ engines: {node: '>=12.0.0'}
+ deprecated: This package has been deprecated in favor of @vitejs/plugin-react
dependencies:
- envinfo: 7.8.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
+ '@babel/core': 7.17.5
+ '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.17.5
+ '@rollup/pluginutils': 4.2.1
+ react-refresh: 0.10.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /@webpack-cli/serve/1.6.1_9a0b5ed2553fd0953b975a959afcbb80:
- resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==}
- peerDependencies:
- webpack-cli: 4.x.x
- webpack-dev-server: '*'
- peerDependenciesMeta:
- webpack-dev-server:
- optional: true
+ /abort-controller/3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
dependencies:
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- dev: true
-
- /@xtuc/ieee754/1.2.0:
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
+ event-target-shim: 5.0.1
dev: true
- /@xtuc/long/4.2.2:
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ /absolute-path/0.0.0:
+ resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
dev: true
/accepts/1.3.8:
@@ -2993,14 +3110,6 @@ packages:
negotiator: 0.6.3
dev: true
- /acorn-import-assertions/1.8.0_acorn@8.7.0:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
- dependencies:
- acorn: 8.7.0
- dev: true
-
/acorn-jsx/5.3.2_acorn@7.4.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -3009,12 +3118,12 @@ packages:
acorn: 7.4.1
dev: true
- /acorn-jsx/5.3.2_acorn@8.7.0:
+ /acorn-jsx/5.3.2_acorn@8.7.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.7.0
+ acorn: 8.7.1
dev: true
/acorn-node/1.8.2:
@@ -3033,7 +3142,7 @@ packages:
/acorn-walk/8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
- dev: true
+ dev: false
/acorn/7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
@@ -3041,46 +3150,12 @@ packages:
hasBin: true
dev: true
- /acorn/8.7.0:
- resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==}
+ /acorn/8.7.1:
+ resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /aggregate-error/3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
- dev: true
-
- /ajv-formats/2.1.1:
- resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependenciesMeta:
- ajv:
- optional: true
- dependencies:
- ajv: 8.11.0
- dev: true
-
- /ajv-keywords/3.5.2_ajv@6.12.6:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
- dependencies:
- ajv: 6.12.6
- dev: true
-
- /ajv-keywords/5.1.0_ajv@8.11.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
- dependencies:
- ajv: 8.11.0
- fast-deep-equal: 3.1.3
- dev: true
-
/ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
@@ -3111,39 +3186,45 @@ packages:
- encoding
dev: false
- /ansi-colors/4.1.1:
- resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
+ /anser/1.4.10:
+ resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
+ dev: true
+
+ /ansi-colors/4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
dev: true
- /ansi-html-community/0.0.8:
- resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
+ /ansi-fragments/0.2.1:
+ resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
+ dependencies:
+ colorette: 1.4.0
+ slice-ansi: 2.1.0
+ strip-ansi: 5.2.0
dev: true
/ansi-regex/2.1.1:
- resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
dev: true
- /ansi-regex/3.0.0:
- resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=}
+ /ansi-regex/3.0.1:
+ resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
engines: {node: '>=4'}
dev: true
+ /ansi-regex/4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
+ dev: true
+
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
- /ansi-regex/6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
- engines: {node: '>=12'}
- dev: true
-
/ansi-styles/2.2.1:
- resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -3168,6 +3249,10 @@ packages:
picomatch: 2.3.1
dev: true
+ /appdirsjs/1.2.6:
+ resolution: {integrity: sha512-D8wJNkqMCeQs3kLasatELsddox/Xqkhp+J07iXGyL54fVN7oc+nmNfYzGuCs1IEP6uBw+TfpuO3JKwc+lECy4w==}
+ dev: true
+
/arg/5.0.1:
resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==}
dev: true
@@ -3187,53 +3272,100 @@ packages:
engines: {node: '>=6.0'}
dependencies:
'@babel/runtime': 7.17.2
- '@babel/runtime-corejs3': 7.17.8
+ '@babel/runtime-corejs3': 7.18.3
+ dev: true
+
+ /arr-diff/4.0.0:
+ resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /arr-flatten/1.1.0:
+ resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
+ engines: {node: '>=0.10.0'}
dev: true
- /array-flatten/1.1.1:
- resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
+ /arr-union/3.1.0:
+ resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
+ engines: {node: '>=0.10.0'}
dev: true
- /array-flatten/2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
+ /array-filter/0.0.1:
+ resolution: {integrity: sha512-VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw==}
dev: true
- /array-includes/3.1.4:
- resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
+ /array-includes/3.1.5:
+ resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
get-intrinsic: 1.1.1
is-string: 1.0.7
dev: true
+ /array-map/0.0.0:
+ resolution: {integrity: sha512-123XMszMB01QKVptpDQ7x1m1pP5NmJIG1kbl0JSPPRezvwQChxAN0Gvzo7rvR1IZ2tOL2tmiy7kY/KKgnpVVpg==}
+ dev: true
+
+ /array-reduce/0.0.0:
+ resolution: {integrity: sha512-8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw==}
+ dev: true
+
/array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: true
- /array.prototype.flat/1.2.5:
- resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==}
+ /array-unique/0.3.2:
+ resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array.prototype.flat/1.3.0:
+ resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap/1.2.5:
- resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==}
+ /array.prototype.flatmap/1.3.0:
+ resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ es-shim-unscopables: 1.0.0
+ dev: true
+
+ /asap/2.0.6:
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+ dev: true
+
+ /assign-symbols/1.0.0:
+ resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
+ engines: {node: '>=0.10.0'}
dev: true
/ast-types-flow/0.0.7:
- resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
+ dev: true
+
+ /ast-types/0.14.2:
+ resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.4.0
+ dev: true
+
+ /astral-regex/1.0.0:
+ resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
+ engines: {node: '>=4'}
dev: true
/astral-regex/2.0.0:
@@ -3241,15 +3373,20 @@ packages:
engines: {node: '>=8'}
dev: true
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
+ /async-limiter/1.0.1:
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
+ dev: true
+
+ /async/2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
dev: true
- /at-least-node/1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
+ /atob/2.1.2:
+ resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
dev: true
/autoprefixer/10.4.2_postcss@8.4.8:
@@ -3259,8 +3396,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001320
+ browserslist: 4.20.3
+ caniuse-lite: 1.0.30001344
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -3268,28 +3405,21 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /axe-core/4.4.1:
- resolution: {integrity: sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==}
- engines: {node: '>=4'}
+ /axe-core/4.4.2:
+ resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==}
+ engines: {node: '>=12'}
dev: true
/axobject-query/2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-loader/8.2.4_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==}
- engines: {node: '>= 8.9'}
+ /babel-core/7.0.0-bridge.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
+ '@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- find-cache-dir: 3.3.2
- loader-utils: 2.0.2
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
dev: true
/babel-plugin-dynamic-import-node/2.3.3:
@@ -3312,7 +3442,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.17.10
'@babel/core': 7.17.5
'@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
semver: 6.3.0
@@ -3327,7 +3457,7 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
- core-js-compat: 3.21.1
+ core-js-compat: 3.22.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -3353,26 +3483,68 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3
/babel-plugin-syntax-jsx/6.18.0:
- resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=}
+ resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
+
+ /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0:
+ resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
+ dev: true
/babel-plugin-transform-react-remove-prop-types/0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: true
+ /babel-preset-fbjs/3.4.0_@babel+core@7.17.5:
+ resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.17.5
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.17.5
+ babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-preset-react-app/10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
'@babel/core': 7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-decorators': 7.17.8_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.17.5
'@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.17.5
'@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
'@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
'@babel/preset-env': 7.16.11_@babel+core@7.17.5
@@ -3389,16 +3561,25 @@ packages:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
+ /base/0.11.2:
+ resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: true
+
/base64-js/1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: false
-
- /batch/0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
- dev: true
- /big.js/5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+ /big-integer/1.6.51:
+ resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
+ engines: {node: '>=0.6'}
dev: true
/binary-extensions/2.2.0:
@@ -3406,47 +3587,43 @@ packages:
engines: {node: '>=8'}
dev: true
- /body-parser/1.19.2:
- resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.4
- debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.9.7
- raw-body: 2.4.3
- type-is: 1.6.18
- dev: true
-
- /bonjour/3.5.0:
- resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=}
+ /bl/4.1.0:
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
- array-flatten: 2.1.2
- deep-equal: 1.1.1
- dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.0
dev: true
/boolbase/1.0.0:
- resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /bootstrap/5.1.3:
+ /bootstrap/5.1.3_@popperjs+core@2.11.5:
resolution: {integrity: sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==}
peerDependencies:
'@popperjs/core': ^2.10.2
+ dependencies:
+ '@popperjs/core': 2.11.5
dev: false
/bowser/2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
dev: false
+ /bplist-creator/0.1.0:
+ resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
+ dependencies:
+ stream-buffers: 2.2.0
+ dev: true
+
+ /bplist-parser/0.3.1:
+ resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==}
+ engines: {node: '>= 5.10.0'}
+ dependencies:
+ big-integer: 1.6.51
+ dev: true
+
/brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -3454,33 +3631,49 @@ packages:
concat-map: 0.0.1
dev: true
+ /braces/2.3.2:
+ resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ dev: true
+
/braces/3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- dev: true
- /browserslist/4.20.2:
- resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==}
+ /browserslist/4.20.3:
+ resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001320
- electron-to-chromium: 1.4.95
+ caniuse-lite: 1.0.30001344
+ electron-to-chromium: 1.4.141
escalade: 3.1.1
- node-releases: 2.0.2
+ node-releases: 2.0.5
picocolors: 1.0.0
+
+ /bser/2.1.1:
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ dependencies:
+ node-int64: 0.4.0
dev: true
/buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /buffer-indexof/1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
- dev: true
-
/buffer/4.9.2:
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
dependencies:
@@ -3489,14 +3682,31 @@ packages:
isarray: 1.0.0
dev: false
+ /buffer/5.7.1:
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ dev: true
+
/bytes/3.0.0:
resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
engines: {node: '>= 0.8'}
dev: true
- /bytes/3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
- engines: {node: '>= 0.8'}
+ /cache-base/1.0.1:
+ resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
dev: true
/call-bind/1.0.2:
@@ -3505,16 +3715,28 @@ packages:
function-bind: 1.1.1
get-intrinsic: 1.1.1
- /callsites/3.1.0:
- resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
- engines: {node: '>=6'}
+ /caller-callsite/2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ callsites: 2.0.0
dev: true
- /camel-case/4.1.2:
- resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
+ /caller-path/2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
dependencies:
- pascal-case: 3.1.2
- tslib: 2.3.1
+ caller-callsite: 2.0.0
+ dev: true
+
+ /callsites/2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /callsites/3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
dev: true
/camelcase-css/2.0.1:
@@ -3522,25 +3744,34 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /camelcase/5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /camelcase/6.3.0:
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
+ dev: true
+
/camelize/1.0.0:
- resolution: {integrity: sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=}
+ resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==}
dev: false
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001320
+ browserslist: 4.20.3
+ caniuse-lite: 1.0.30001344
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001320:
- resolution: {integrity: sha512-MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA==}
- dev: true
+ /caniuse-lite/1.0.30001344:
+ resolution: {integrity: sha512-0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g==}
/chalk/1.1.3:
- resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=}
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-styles: 2.2.1
@@ -3586,27 +3817,55 @@ packages:
fsevents: 2.3.2
dev: true
- /chrome-trace-event/1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
- engines: {node: '>=6.0'}
+ /ci-info/2.0.0:
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+ dev: true
+
+ /ci-info/3.3.1:
+ resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==}
+ dev: true
+
+ /class-utils/0.3.6:
+ resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
dev: true
/classnames/2.3.1:
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
dev: false
- /clean-css/5.2.4:
- resolution: {integrity: sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg==}
- engines: {node: '>= 10.0'}
+ /cli-cursor/2.1.0:
+ resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
+ engines: {node: '>=4'}
dependencies:
- source-map: 0.6.1
+ restore-cursor: 2.0.0
+ dev: true
+
+ /cli-cursor/3.1.0:
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
dev: true
- /clean-stack/2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ /cli-spinners/2.6.1:
+ resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
dev: true
+ /cliui/6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+
/cliui/7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
@@ -3624,12 +3883,25 @@ packages:
shallow-clone: 3.0.1
dev: true
+ /clone/1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+ dev: true
+
/clsx/1.1.1:
resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
engines: {node: '>=6'}
dev: false
- /color-convert/1.9.3:
+ /collection-visit/1.0.0:
+ resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: true
+
+ /color-convert/1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
@@ -3642,7 +3914,7 @@ packages:
dev: true
/color-name/1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -3652,8 +3924,16 @@ packages:
resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==}
dev: true
- /colorette/2.0.16:
- resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
+ /colorette/1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+ dev: true
+
+ /command-exists/1.2.9:
+ resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
+ dev: true
+
+ /commander/2.13.0:
+ resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
dev: true
/commander/2.20.3:
@@ -3665,18 +3945,17 @@ packages:
engines: {node: '>= 10'}
dev: true
- /commander/8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
- dev: true
-
/common-tags/1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
dev: true
/commondir/1.0.1:
- resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+ dev: true
+
+ /component-emitter/1.3.0:
+ resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
dev: true
/compressible/2.0.18:
@@ -3722,46 +4001,40 @@ packages:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: true
- /connect-history-api-fallback/1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
- dev: true
-
- /content-disposition/0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
+ /connect/3.7.0:
+ resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
+ engines: {node: '>= 0.10.0'}
dependencies:
- safe-buffer: 5.2.1
- dev: true
-
- /content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
- engines: {node: '>= 0.6'}
+ debug: 2.6.9
+ finalhandler: 1.1.2
+ parseurl: 1.3.3
+ utils-merge: 1.0.1
dev: true
/convert-source-map/1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
dependencies:
safe-buffer: 5.1.2
- dev: true
-
- /cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
- dev: true
/cookie/0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
+ dev: false
+
+ /copy-descriptor/0.1.1:
+ resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
- /core-js-compat/3.21.1:
- resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==}
+ /core-js-compat/3.22.7:
+ resolution: {integrity: sha512-uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==}
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
semver: 7.0.0
dev: true
- /core-js-pure/3.21.1:
- resolution: {integrity: sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==}
+ /core-js-pure/3.22.7:
+ resolution: {integrity: sha512-wTriFxiZI+C8msGeh7fJcbC/a0V8fdInN1oS2eK79DMBGs8iIJiXhtFJCiT3rBa8w6zroHWW3p8ArlujZ/Mz+w==}
requiresBuild: true
dev: true
@@ -3769,15 +4042,14 @@ packages:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
- /cosmiconfig/6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
+ /cosmiconfig/5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
dependencies:
- '@types/parse-json': 4.0.0
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
dev: true
/cosmiconfig/7.0.1:
@@ -3799,6 +4071,17 @@ packages:
- encoding
dev: false
+ /cross-spawn/6.0.5:
+ resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
+ engines: {node: '>=4.8'}
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.1
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+
/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -3813,12 +4096,12 @@ packages:
dev: false
/css-color-keywords/1.0.0:
- resolution: {integrity: sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=}
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
dev: false
- /css-declaration-sorter/6.2.1_postcss@8.4.8:
- resolution: {integrity: sha512-4qvWVSwnc5f1ZxCe80LccU5aenhZdhuCCyaOSMhr3dDAOTXtJNfAvthW+5x0UV4k1pWzE1EwNk4ztSDCk6WzKw==}
+ /css-declaration-sorter/6.2.2_postcss@8.4.8:
+ resolution: {integrity: sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
@@ -3826,54 +4109,18 @@ packages:
postcss: 8.4.8
dev: true
- /css-loader/5.2.7_webpack@5.70.0:
- resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- loader-utils: 2.0.2
- postcss: 8.4.8
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.8
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.8
- postcss-modules-scope: 3.0.0_postcss@8.4.8
- postcss-modules-values: 4.0.0_postcss@8.4.8
- postcss-value-parser: 4.2.0
- schema-utils: 3.1.1
- semver: 7.3.5
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /css-loader/6.7.1_webpack@5.70.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.8
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.8
- postcss-modules-scope: 3.0.0_postcss@8.4.8
- postcss-modules-values: 4.0.0_postcss@8.4.8
- postcss-value-parser: 4.2.0
- semver: 7.3.5
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/css-mediaquery/0.1.2:
- resolution: {integrity: sha1-aiw3NEkoYYYxxUvTPO3TAdoYvqA=}
+ resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==}
dev: false
- /css-select/4.2.1:
- resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==}
+ /css-select/4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
- css-what: 5.1.0
+ css-what: 6.1.0
domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
+ nth-check: 2.1.1
dev: true
/css-to-react-native/3.0.0:
@@ -3899,8 +4146,8 @@ packages:
is-in-browser: 1.1.3
dev: false
- /css-what/5.1.0:
- resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
+ /css-what/6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
@@ -3910,28 +4157,28 @@ packages:
hasBin: true
dev: true
- /cssnano-preset-default/5.2.5_postcss@8.4.8:
- resolution: {integrity: sha512-WopL7PzN7sos3X8B54/QGl+CZUh1f0qN4ds+y2d5EPwRSSc3jsitVw81O+Uyop0pXyOfPfZxnc+LmA8w/Ki/WQ==}
+ /cssnano-preset-default/5.2.10_postcss@8.4.8:
+ resolution: {integrity: sha512-H8TJRhTjBKVOPltp9vr9El9I+IfYsOMhmXdK0LwdvwJcxYX9oWkY7ctacWusgPWAgQq1vt/WO8v+uqpfLnM7QA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.2.1_postcss@8.4.8
+ css-declaration-sorter: 6.2.2_postcss@8.4.8
cssnano-utils: 3.1.0_postcss@8.4.8
postcss: 8.4.8
postcss-calc: 8.2.4_postcss@8.4.8
postcss-colormin: 5.3.0_postcss@8.4.8
- postcss-convert-values: 5.1.0_postcss@8.4.8
- postcss-discard-comments: 5.1.1_postcss@8.4.8
+ postcss-convert-values: 5.1.2_postcss@8.4.8
+ postcss-discard-comments: 5.1.2_postcss@8.4.8
postcss-discard-duplicates: 5.1.0_postcss@8.4.8
postcss-discard-empty: 5.1.1_postcss@8.4.8
postcss-discard-overridden: 5.1.0_postcss@8.4.8
- postcss-merge-longhand: 5.1.3_postcss@8.4.8
- postcss-merge-rules: 5.1.1_postcss@8.4.8
+ postcss-merge-longhand: 5.1.5_postcss@8.4.8
+ postcss-merge-rules: 5.1.2_postcss@8.4.8
postcss-minify-font-values: 5.1.0_postcss@8.4.8
postcss-minify-gradients: 5.1.1_postcss@8.4.8
- postcss-minify-params: 5.1.2_postcss@8.4.8
- postcss-minify-selectors: 5.2.0_postcss@8.4.8
+ postcss-minify-params: 5.1.3_postcss@8.4.8
+ postcss-minify-selectors: 5.2.1_postcss@8.4.8
postcss-normalize-charset: 5.1.0_postcss@8.4.8
postcss-normalize-display-values: 5.1.0_postcss@8.4.8
postcss-normalize-positions: 5.1.0_postcss@8.4.8
@@ -3963,7 +4210,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.5_postcss@8.4.8
+ cssnano-preset-default: 5.2.10_postcss@8.4.8
lilconfig: 2.0.5
postcss: 8.4.8
yaml: 1.10.2
@@ -3980,8 +4227,8 @@ packages:
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
dev: false
- /csstype/3.0.11:
- resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==}
+ /csstype/3.1.0:
+ resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
dev: false
/damerau-levenshtein/1.0.8:
@@ -3992,6 +4239,10 @@ packages:
resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==}
engines: {node: '>=0.11'}
+ /dayjs/1.11.2:
+ resolution: {integrity: sha512-F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw==}
+ dev: true
+
/debug/2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
dependencies:
@@ -4014,7 +4265,6 @@ packages:
optional: true
dependencies:
ms: 2.1.2
- dev: true
/debug/4.3.4_supports-color@5.5.0:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
@@ -4029,6 +4279,16 @@ packages:
supports-color: 5.5.0
dev: false
+ /decamelize/1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /decode-uri-component/0.2.0:
+ resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
+ engines: {node: '>=0.10'}
+ dev: true
+
/deep-equal/1.1.1:
resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
dependencies:
@@ -4037,56 +4297,72 @@ packages:
is-regex: 1.1.4
object-is: 1.1.5
object-keys: 1.1.1
- regexp.prototype.flags: 1.4.1
+ regexp.prototype.flags: 1.4.3
+ dev: false
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /deepmerge/4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
+ /deepmerge/3.3.0:
+ resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
engines: {node: '>=0.10.0'}
dev: true
- /default-gateway/6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
+ /defaults/1.0.3:
+ resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==}
dependencies:
- execa: 5.1.1
+ clone: 1.0.4
dev: true
- /define-lazy-prop/2.0.0:
- resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
- engines: {node: '>=8'}
- dev: true
-
- /define-properties/1.1.3:
- resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
+ /define-properties/1.1.4:
+ resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
dependencies:
+ has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /defined/1.0.0:
- resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=}
+ /define-property/0.2.5:
+ resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 0.1.6
dev: true
- /del/6.0.0:
- resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==}
- engines: {node: '>=10'}
+ /define-property/1.0.0:
+ resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
+ engines: {node: '>=0.10.0'}
dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.9
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
+ is-descriptor: 1.0.2
dev: true
- /depd/1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
- engines: {node: '>= 0.6'}
+ /define-property/2.0.2:
+ resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: true
+
+ /defined/1.0.0:
+ resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
+ dev: true
+
+ /denodeify/1.2.1:
+ resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
+ dev: true
+
+ /depd/2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /deprecated-react-native-prop-types/2.3.0:
+ resolution: {integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==}
+ dependencies:
+ '@react-native/normalize-color': 2.0.0
+ invariant: 2.2.4
+ prop-types: 15.8.1
dev: true
/dequal/2.0.2:
@@ -4094,16 +4370,13 @@ packages:
engines: {node: '>=6'}
dev: false
- /destroy/1.0.4:
- resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=}
- dev: true
-
- /detect-node/2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ /destroy/1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: true
- /detective/5.2.0:
- resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==}
+ /detective/5.2.1:
+ resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
@@ -4127,23 +4400,6 @@ packages:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: true
- /dns-equal/1.0.0:
- resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
- dev: true
-
- /dns-packet/1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
- dependencies:
- ip: 1.1.5
- safe-buffer: 5.2.1
- dev: true
-
- /dns-txt/2.0.2:
- resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=}
- dependencies:
- buffer-indexof: 1.1.1
- dev: true
-
/doctrine/2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
@@ -4158,64 +4414,51 @@ packages:
esutils: 2.0.3
dev: true
- /dom-converter/0.2.0:
- resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
- dependencies:
- utila: 0.4.0
- dev: true
-
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
'@babel/runtime': 7.17.2
- csstype: 3.0.11
+ csstype: 3.1.0
dev: false
- /dom-serializer/1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
+ /dom-serializer/1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
dev: true
- /domelementtype/2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
+ /domelementtype/2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
/domhandler/4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
dev: true
/domutils/2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
domhandler: 4.3.1
dev: true
- /dot-case/3.0.4:
- resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
- dependencies:
- no-case: 3.0.4
- tslib: 2.3.1
- dev: true
-
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+ /dotenv/16.0.1:
+ resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==}
+ engines: {node: '>=12'}
dev: true
/ee-first/1.1.1:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
dev: true
- /electron-to-chromium/1.4.95:
- resolution: {integrity: sha512-h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg==}
- dev: true
+ /electron-to-chromium/1.4.141:
+ resolution: {integrity: sha512-mfBcbqc0qc6RlxrsIgLG2wCqkiPAjEezHxGTu7p3dHHFOurH4EjS9rFZndX5axC8264rI1Pcbw8uQP39oZckeA==}
/emoji-regex/8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -4225,29 +4468,22 @@ packages:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
- dev: true
-
/encodeurl/1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
dev: true
- /enhanced-resolve/5.9.2:
- resolution: {integrity: sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==}
- engines: {node: '>=10.13.0'}
+ /end-of-stream/1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
- graceful-fs: 4.2.9
- tapable: 2.2.1
+ once: 1.4.0
dev: true
/enquirer/2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
- ansi-colors: 4.1.1
+ ansi-colors: 4.1.3
dev: true
/entities/2.2.0:
@@ -4266,34 +4502,53 @@ packages:
is-arrayish: 0.2.1
dev: true
- /es-abstract/1.19.1:
- resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==}
+ /error-stack-parser/2.0.7:
+ resolution: {integrity: sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==}
+ dependencies:
+ stackframe: 1.2.1
+ dev: true
+
+ /errorhandler/1.5.1:
+ resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ accepts: 1.3.8
+ escape-html: 1.0.3
+ dev: true
+
+ /es-abstract/1.20.1:
+ resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
es-to-primitive: 1.2.1
function-bind: 1.1.1
+ function.prototype.name: 1.1.5
get-intrinsic: 1.1.1
get-symbol-description: 1.0.0
has: 1.0.3
+ has-property-descriptors: 1.0.0
has-symbols: 1.0.3
internal-slot: 1.0.3
is-callable: 1.2.4
is-negative-zero: 2.0.2
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.1
+ is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
- object-inspect: 1.12.0
+ object-inspect: 1.12.2
object-keys: 1.1.1
object.assign: 4.1.2
- string.prototype.trimend: 1.0.4
- string.prototype.trimstart: 1.0.4
- unbox-primitive: 1.0.1
+ regexp.prototype.flags: 1.4.3
+ string.prototype.trimend: 1.0.5
+ string.prototype.trimstart: 1.0.5
+ unbox-primitive: 1.0.2
dev: true
- /es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+ /es-shim-unscopables/1.0.0:
+ resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ dependencies:
+ has: 1.0.3
dev: true
/es-to-primitive/1.2.1:
@@ -4305,17 +4560,224 @@ packages:
is-symbol: 1.0.4
dev: true
+ /esbuild-android-64/0.14.43:
+ resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-android-arm64/0.14.43:
+ resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-darwin-64/0.14.43:
+ resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-darwin-arm64/0.14.43:
+ resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-freebsd-64/0.14.43:
+ resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-freebsd-arm64/0.14.43:
+ resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-32/0.14.43:
+ resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-64/0.14.43:
+ resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-arm/0.14.43:
+ resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-arm64/0.14.43:
+ resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-mips64le/0.14.43:
+ resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-ppc64le/0.14.43:
+ resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-riscv64/0.14.43:
+ resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-linux-s390x/0.14.43:
+ resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-netbsd-64/0.14.43:
+ resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-openbsd-64/0.14.43:
+ resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-sunos-64/0.14.43:
+ resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-windows-32/0.14.43:
+ resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-windows-64/0.14.43:
+ resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild-windows-arm64/0.14.43:
+ resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /esbuild/0.14.43:
+ resolution: {integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ esbuild-android-64: 0.14.43
+ esbuild-android-arm64: 0.14.43
+ esbuild-darwin-64: 0.14.43
+ esbuild-darwin-arm64: 0.14.43
+ esbuild-freebsd-64: 0.14.43
+ esbuild-freebsd-arm64: 0.14.43
+ esbuild-linux-32: 0.14.43
+ esbuild-linux-64: 0.14.43
+ esbuild-linux-arm: 0.14.43
+ esbuild-linux-arm64: 0.14.43
+ esbuild-linux-mips64le: 0.14.43
+ esbuild-linux-ppc64le: 0.14.43
+ esbuild-linux-riscv64: 0.14.43
+ esbuild-linux-s390x: 0.14.43
+ esbuild-netbsd-64: 0.14.43
+ esbuild-openbsd-64: 0.14.43
+ esbuild-sunos-64: 0.14.43
+ esbuild-windows-32: 0.14.43
+ esbuild-windows-64: 0.14.43
+ esbuild-windows-arm64: 0.14.43
+ dev: false
+
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- dev: true
/escape-html/1.0.3:
- resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: true
/escape-string-regexp/1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
/escape-string-regexp/4.0.0:
@@ -4338,7 +4800,7 @@ packages:
semver: 6.3.0
dev: true
- /eslint-config-airbnb/19.0.4_d088d899c01a254e9346ef40899b7d56:
+ /eslint-config-airbnb/19.0.4_1a200a0ef4d49ba6b286d48d7621cc60:
resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4353,6 +4815,7 @@ packages:
eslint-plugin-import: 2.25.4_eslint@8.10.0
eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
eslint-plugin-react: 7.29.4_eslint@8.10.0
+ eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
object.assign: 4.1.2
object.entries: 1.1.5
dev: true
@@ -4366,7 +4829,7 @@ packages:
eslint: 8.10.0
dev: true
- /eslint-config-react-app/7.0.0_eslint@8.10.0+typescript@4.6.2:
+ /eslint-config-react-app/7.0.0_c4c000d5afc09a03279e9cf5f4bd5be7:
resolution: {integrity: sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4374,19 +4837,19 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/eslint-parser': 7.17.0_@babel+core@7.17.5+eslint@8.10.0
- '@rushstack/eslint-patch': 1.1.1
+ '@rushstack/eslint-patch': 1.1.3
'@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
'@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.10.0
- eslint-plugin-flowtype: 8.0.3_eslint@8.10.0
+ eslint-plugin-flowtype: 8.0.3_f91336b21824aab28e9e1f9278ca4078
eslint-plugin-import: 2.25.4_eslint@8.10.0
eslint-plugin-jest: 25.7.0_22191a90d902226c492032929b57715a
eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
eslint-plugin-react: 7.29.4_eslint@8.10.0
eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
- eslint-plugin-testing-library: 5.1.0_eslint@8.10.0+typescript@4.6.2
+ eslint-plugin-testing-library: 5.5.1_eslint@8.10.0+typescript@4.6.2
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -4410,7 +4873,7 @@ packages:
find-up: 2.1.0
dev: true
- /eslint-plugin-flowtype/8.0.3_eslint@8.10.0:
+ /eslint-plugin-flowtype/8.0.3_f91336b21824aab28e9e1f9278ca4078:
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -4418,6 +4881,8 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
eslint: 8.10.0
lodash: 4.17.21
string-natural-compare: 3.0.1
@@ -4429,15 +4894,15 @@ packages:
peerDependencies:
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
+ array-includes: 3.1.5
+ array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
eslint: 8.10.0
eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.3
has: 1.0.3
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
@@ -4459,7 +4924,7 @@ packages:
optional: true
dependencies:
'@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/experimental-utils': 5.16.0_eslint@8.10.0+typescript@4.6.2
+ '@typescript-eslint/experimental-utils': 5.26.0_eslint@8.10.0+typescript@4.6.2
eslint: 8.10.0
transitivePeerDependencies:
- supports-color
@@ -4474,15 +4939,15 @@ packages:
dependencies:
'@babel/runtime': 7.17.2
aria-query: 4.2.2
- array-includes: 3.1.4
+ array-includes: 3.1.5
ast-types-flow: 0.0.7
- axe-core: 4.4.1
+ axe-core: 4.4.2
axobject-query: 2.2.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.10.0
has: 1.0.3
- jsx-ast-utils: 3.2.1
+ jsx-ast-utils: 3.3.0
language-tags: 1.0.5
minimatch: 3.1.2
dev: true
@@ -4527,16 +4992,16 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flatmap: 1.2.5
+ array-includes: 3.1.5
+ array.prototype.flatmap: 1.3.0
doctrine: 2.1.0
eslint: 8.10.0
estraverse: 5.3.0
- jsx-ast-utils: 3.2.1
+ jsx-ast-utils: 3.3.0
minimatch: 3.1.2
object.entries: 1.1.5
object.fromentries: 2.0.5
- object.hasown: 1.1.0
+ object.hasown: 1.1.1
object.values: 1.1.5
prop-types: 15.8.1
resolve: 2.0.0-next.3
@@ -4544,13 +5009,13 @@ packages:
string.prototype.matchall: 4.0.7
dev: true
- /eslint-plugin-testing-library/5.1.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-YSNzasJUbyhOTe14ZPygeOBvcPvcaNkwHwrj4vdf+uirr2D32JTDaKi6CP5Os2aWtOcvt4uBSPXp9h5xGoqvWQ==}
+ /eslint-plugin-testing-library/5.5.1_eslint@8.10.0+typescript@4.6.2:
+ resolution: {integrity: sha512-plLEkkbAKBjPxsLj7x4jNapcHAg2ernkQlKKrN2I8NrQwPISZHyCUNvg5Hv3EDqOQReToQb5bnqXYbkijJPE/g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.16.0_eslint@8.10.0+typescript@4.6.2
+ '@typescript-eslint/utils': 5.26.0_eslint@8.10.0+typescript@4.6.2
eslint: 8.10.0
transitivePeerDependencies:
- supports-color
@@ -4630,7 +5095,7 @@ packages:
file-entry-cache: 6.0.1
functional-red-black-tree: 1.0.1
glob-parent: 5.1.2
- globals: 13.13.0
+ globals: 13.15.0
ignore: 4.0.6
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -4644,7 +5109,7 @@ packages:
optionator: 0.9.1
progress: 2.0.3
regexpp: 3.2.0
- semver: 7.3.5
+ semver: 7.3.7
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
table: 6.8.0
@@ -4659,7 +5124,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.2.1
+ '@eslint/eslintrc': 1.3.0
'@humanwhocodes/config-array': 0.9.5
ajv: 6.12.6
chalk: 4.1.2
@@ -4670,14 +5135,14 @@ packages:
eslint-scope: 7.1.1
eslint-utils: 3.0.0_eslint@8.10.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.1
+ espree: 9.3.2
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
- globals: 13.13.0
+ globals: 13.15.0
ignore: 5.2.0
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -4716,12 +5181,12 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /espree/9.3.1:
- resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==}
+ /espree/9.3.2:
+ resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.7.0
- acorn-jsx: 5.3.2_acorn@8.7.0
+ acorn: 8.7.1
+ acorn-jsx: 5.3.2_acorn@8.7.1
eslint-visitor-keys: 3.3.0
dev: true
@@ -4755,74 +5220,78 @@ packages:
engines: {node: '>=4.0'}
dev: true
+ /estree-walker/2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: false
+
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
/etag/1.8.1:
- resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: true
- /eventemitter3/4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- dev: true
-
- /events/3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
+ /event-target-shim/5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
dev: true
- /execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
+ /execa/1.0.0:
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
+ engines: {node: '>=6'}
dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
signal-exit: 3.0.7
- strip-final-newline: 2.0.0
+ strip-eof: 1.0.0
dev: true
- /express/4.17.3:
- resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==}
- engines: {node: '>= 0.10.0'}
+ /expand-brackets/2.1.4:
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
+ engines: {node: '>=0.10.0'}
dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.19.2
- content-disposition: 0.5.4
- content-type: 1.0.4
- cookie: 0.4.2
- cookie-signature: 1.0.6
debug: 2.6.9
- depd: 1.1.2
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.1.2
- fresh: 0.5.2
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.3.0
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.9.7
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.17.2
- serve-static: 1.14.2
- setprototypeof: 1.2.0
- statuses: 1.5.0
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+
+ /extend-shallow/2.0.1:
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 0.1.1
+ dev: true
+
+ /extend-shallow/3.0.2:
+ resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: true
+
+ /extglob/2.0.4:
+ resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
dev: true
/fast-base64-decode/1.0.0:
@@ -4846,31 +5315,24 @@ packages:
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
- dev: true
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
/fast-levenshtein/2.0.6:
- resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
- dev: true
-
- /fastest-levenshtein/1.0.12:
- resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==}
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
/fastq/1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
dependencies:
reusify: 1.0.4
- dev: true
- /faye-websocket/0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
+ /fb-watchman/2.0.1:
+ resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
dependencies:
- websocket-driver: 0.7.4
+ bser: 2.1.1
dev: true
/file-entry-cache/6.0.1:
@@ -4880,12 +5342,21 @@ packages:
flat-cache: 3.0.4
dev: true
+ /fill-range/4.0.0:
+ resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: true
+
/fill-range/7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- dev: true
/finalhandler/1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
@@ -4900,22 +5371,29 @@ packages:
unpipe: 1.0.0
dev: true
- /find-cache-dir/3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
+ /find-cache-dir/2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
dependencies:
commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
dev: true
/find-up/2.1.0:
- resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
engines: {node: '>=4'}
dependencies:
locate-path: 2.0.0
dev: true
+ /find-up/3.0.0:
+ resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
+ engines: {node: '>=6'}
+ dependencies:
+ locate-path: 3.0.0
+ dev: true
+
/find-up/4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -4936,78 +5414,51 @@ packages:
resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==}
dev: true
- /follow-redirects/1.14.9:
- resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: true
-
- /fork-ts-checker-webpack-plugin/6.5.0_2847fb73abdc24f6b671e90820eac890:
- resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.16.7
- '@types/json-schema': 7.0.11
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 6.0.0
- deepmerge: 4.2.2
- eslint: 8.10.0
- fs-extra: 9.1.0
- glob: 7.2.0
- memfs: 3.4.1
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.3.5
- tapable: 1.1.3
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
+ /flow-parser/0.121.0:
+ resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
+ engines: {node: '>=0.4.0'}
dev: true
- /forwarded/0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
- engines: {node: '>= 0.6'}
+ /for-in/1.0.2:
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
+ engines: {node: '>=0.10.0'}
dev: true
/fraction.js/4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
+ /fragment-cache/0.2.1:
+ resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-cache: 0.2.2
+ dev: true
+
/fresh/0.5.2:
resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
engines: {node: '>= 0.6'}
dev: true
- /fs-extra/9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
+ /fs-extra/1.0.0:
+ resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==}
dependencies:
- at-least-node: 1.0.0
- graceful-fs: 4.2.9
- jsonfile: 6.1.0
- universalify: 2.0.0
+ graceful-fs: 4.2.10
+ jsonfile: 2.4.0
+ klaw: 1.3.1
dev: true
- /fs-monkey/1.0.3:
- resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
+ /fs-extra/8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.10
+ jsonfile: 4.0.0
+ universalify: 0.1.2
dev: true
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
/fsevents/2.3.2:
@@ -5015,20 +5466,31 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
- dev: true
optional: true
/function-bind/1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ /function.prototype.name/1.1.5:
+ resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ functions-have-names: 1.2.3
+ dev: true
+
/functional-red-black-tree/1.0.1:
- resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
dev: true
+ /functions-have-names/1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+
/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- dev: true
/get-caller-file/2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
@@ -5042,9 +5504,11 @@ packages:
has: 1.0.3
has-symbols: 1.0.3
- /get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
+ /get-stream/4.1.0:
+ resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
+ engines: {node: '>=6'}
+ dependencies:
+ pump: 3.0.0
dev: true
/get-symbol-description/1.0.0:
@@ -5055,12 +5519,16 @@ packages:
get-intrinsic: 1.1.1
dev: true
+ /get-value/2.0.6:
+ resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- dev: true
/glob-parent/6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
@@ -5069,12 +5537,8 @@ packages:
is-glob: 4.0.3
dev: true
- /glob-to-regexp/0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: true
-
- /glob/7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -5088,8 +5552,8 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.13.0:
- resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==}
+ /globals/13.15.0:
+ resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -5107,38 +5571,27 @@ packages:
slash: 3.0.0
dev: true
- /graceful-fs/4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
+ /graceful-fs/4.2.10:
+ resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
/gud/1.0.0:
resolution: {integrity: sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==}
dev: false
- /gzip-size/6.0.0:
- resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
- engines: {node: '>=10'}
- dependencies:
- duplexer: 0.1.2
- dev: true
-
- /handle-thing/2.0.1:
- resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- dev: true
-
/has-ansi/2.0.0:
- resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
dev: true
- /has-bigints/1.0.1:
- resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
+ /has-bigints/1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
/has-flag/3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
/has-flag/4.0.0:
@@ -5146,6 +5599,11 @@ packages:
engines: {node: '>=8'}
dev: true
+ /has-property-descriptors/1.0.0:
+ resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
+ dependencies:
+ get-intrinsic: 1.1.1
+
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
@@ -5156,15 +5614,62 @@ packages:
dependencies:
has-symbols: 1.0.3
+ /has-value/0.3.1:
+ resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: true
+
+ /has-value/1.0.0:
+ resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: true
+
+ /has-values/0.1.4:
+ resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /has-values/1.0.0:
+ resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: true
+
/has/1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /he/1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
+ /hermes-engine/0.11.0:
+ resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==}
+ dev: true
+
+ /hermes-estree/0.5.0:
+ resolution: {integrity: sha512-1h8rvG23HhIR5K6Kt0e5C7BC72J1Ath/8MmSta49vxXp/j6wl7IMHvIRFYBQr35tWnQY97dSGR2uoAJ5pHUQkg==}
+ dev: true
+
+ /hermes-parser/0.5.0:
+ resolution: {integrity: sha512-ARnJBScKAkkq8j3BHrNGBUv/4cSpZNbKDsVizEtzmsFeqC67Dopa5s4XRe+e3wN52Dh5Mj2kDB5wJvhcxwDkPg==}
+ dependencies:
+ hermes-estree: 0.5.0
+ dev: true
+
+ /hermes-profile-transformer/0.0.6:
+ resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ source-map: 0.7.3
dev: true
/history/5.3.0:
@@ -5179,130 +5684,27 @@ packages:
react-is: 16.13.1
dev: false
- /hpack.js/2.1.6:
- resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=}
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.7
- wbuf: 1.7.3
- dev: true
-
- /html-entities/2.3.3:
- resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- dev: true
-
/html-escaper/2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: false
- /html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
- engines: {node: '>=12'}
- hasBin: true
- dependencies:
- camel-case: 4.1.2
- clean-css: 5.2.4
- commander: 8.3.0
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.12.1
- dev: true
-
/html-parse-stringify/3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
dependencies:
void-elements: 3.1.0
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.70.0:
- resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
- engines: {node: '>=10.13.0'}
- peerDependencies:
- webpack: ^5.20.0
- dependencies:
- '@types/html-minifier-terser': 6.1.0
- html-minifier-terser: 6.1.0
- lodash: 4.17.21
- pretty-error: 4.0.0
- tapable: 2.2.1
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /htmlparser2/6.1.0:
- resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
- dependencies:
- domelementtype: 2.2.0
- domhandler: 4.3.1
- domutils: 2.8.0
- entities: 2.2.0
- dev: true
-
- /http-deceiver/1.2.7:
- resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=}
- dev: true
-
- /http-errors/1.6.3:
- resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
- dev: true
-
- /http-errors/1.8.1:
- resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
- engines: {node: '>= 0.6'}
+ /http-errors/2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
dependencies:
- depd: 1.1.2
+ depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
- statuses: 1.5.0
+ statuses: 2.0.1
toidentifier: 1.0.1
dev: true
- /http-parser-js/0.5.6:
- resolution: {integrity: sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==}
- dev: true
-
- /http-proxy-middleware/2.0.4_@types+express@4.17.13:
- resolution: {integrity: sha512-m/4FxX17SUvz4lJ5WPXOHDUuCwIqXLfLHs1s0uZ3oYjhoXlx9csYxaOa0ElDEJ+h8Q4iJ1s+lTMbiCa4EXIJqg==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
- dependencies:
- '@types/express': 4.17.13
- '@types/http-proxy': 1.17.8
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.5
- transitivePeerDependencies:
- - debug
- dev: true
-
- /http-proxy/1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.14.9
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- dev: true
-
- /human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
- dev: true
-
/hyphenate-style-name/1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
dev: false
@@ -5313,8 +5715,8 @@ packages:
'@babel/runtime': 7.17.2
dev: false
- /i18next-http-backend/1.4.0:
- resolution: {integrity: sha512-wsvx7E/CT1pHmBM99Vu57YLJpsrHbVjxGxf25EIJ/6oTjsvCkZZ6c3SA4TejcK5jIHfv9oLxQX8l+DFKZHZ0Gg==}
+ /i18next-http-backend/1.4.1:
+ resolution: {integrity: sha512-s4Q9hK2jS29iyhniMP82z+yYY8riGTrWbnyvsSzi5TaF7Le4E7b5deTmtuaRuab9fdDcYXtcwdBgawZG+JCEjA==}
dependencies:
cross-fetch: 3.1.5
transitivePeerDependencies:
@@ -5327,25 +5729,8 @@ packages:
'@babel/runtime': 7.17.2
dev: false
- /iconv-lite/0.4.24:
- resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- dev: true
-
- /icss-utils/5.1.0_postcss@8.4.8:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
- dev: true
-
/ieee754/1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: false
/ignore/4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
@@ -5357,8 +5742,22 @@ packages:
engines: {node: '>= 4'}
dev: true
- /immutable/4.0.0:
- resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==}
+ /image-size/0.6.3:
+ resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
+ engines: {node: '>=4.0'}
+ hasBin: true
+ dev: true
+
+ /immutable/4.1.0:
+ resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
+ dev: true
+
+ /import-fresh/2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
dev: true
/import-fresh/3.3.0:
@@ -5369,17 +5768,8 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-local/3.1.0:
- resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- pkg-dir: 4.2.0
- resolve-cwd: 3.0.0
- dev: true
-
/imurmurhash/0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: true
@@ -5389,16 +5779,12 @@ packages:
dev: true
/inflight/1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
dev: true
- /inherits/2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
- dev: true
-
/inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
@@ -5412,29 +5798,27 @@ packages:
side-channel: 1.0.4
dev: true
- /interpret/2.2.0:
- resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
- engines: {node: '>= 0.10'}
- dev: true
-
/invariant/2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- dev: false
- /ip/1.1.5:
- resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=}
+ /ip/1.1.8:
+ resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
dev: true
- /ipaddr.js/1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
- engines: {node: '>= 0.10'}
+ /is-accessor-descriptor/0.1.6:
+ resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
dev: true
- /ipaddr.js/2.0.1:
- resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
- engines: {node: '>= 10'}
+ /is-accessor-descriptor/1.0.0:
+ resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
dev: true
/is-arguments/1.1.1:
@@ -5443,15 +5827,16 @@ packages:
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
+ dev: false
/is-arrayish/0.2.1:
- resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
- has-bigints: 1.0.1
+ has-bigints: 1.0.2
dev: true
/is-binary-path/2.1.0:
@@ -5469,15 +5854,32 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-buffer/1.1.6:
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
+ dev: true
+
/is-callable/1.2.4:
resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
engines: {node: '>= 0.4'}
dev: true
- /is-core-module/2.8.1:
- resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==}
+ /is-core-module/2.9.0:
+ resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
dependencies:
has: 1.0.3
+
+ /is-data-descriptor/0.1.4:
+ resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-data-descriptor/1.0.0:
+ resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
dev: true
/is-date-object/1.0.5:
@@ -5486,15 +5888,48 @@ packages:
dependencies:
has-tostringtag: 1.0.0
- /is-docker/2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
+ /is-descriptor/0.1.6:
+ resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: true
+
+ /is-descriptor/1.0.2:
+ resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.3
+ dev: true
+
+ /is-directory/0.3.1:
+ resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-extendable/0.1.1:
+ resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-extendable/1.0.1:
+ resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
dev: true
/is-extglob/2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+
+ /is-fullwidth-code-point/2.0.0:
+ resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
+ engines: {node: '>=4'}
dev: true
/is-fullwidth-code-point/3.0.0:
@@ -5507,43 +5942,38 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- dev: true
/is-in-browser/1.1.3:
- resolution: {integrity: sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=}
+ resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
dev: false
+ /is-interactive/1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+ dev: true
+
/is-negative-zero/2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
dev: true
- /is-number-object/1.0.6:
- resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==}
+ /is-number-object/1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
+ /is-number/3.0.0:
+ resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
/is-number/7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- dev: true
-
- /is-path-cwd/2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: true
-
- /is-path-inside/3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: true
-
- /is-plain-obj/3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
- dev: true
/is-plain-object/2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
@@ -5559,13 +5989,15 @@ packages:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-shared-array-buffer/1.0.1:
- resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
+ /is-shared-array-buffer/1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ dependencies:
+ call-bind: 1.0.2
dev: true
- /is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
+ /is-stream/1.1.0:
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
dev: true
/is-string/1.0.7:
@@ -5582,28 +6014,43 @@ packages:
has-symbols: 1.0.3
dev: true
+ /is-unicode-supported/0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+ dev: true
+
/is-weakref/1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
- /is-wsl/2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
+ /is-windows/1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-wsl/1.1.0:
+ resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
+ engines: {node: '>=4'}
dev: true
/isarray/1.0.0:
- resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
/isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ dev: true
+
+ /isobject/2.1.0:
+ resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isarray: 1.0.0
dev: true
/isobject/3.0.1:
- resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: true
@@ -5616,15 +6063,101 @@ packages:
- encoding
dev: false
+ /jest-get-type/26.3.0:
+ resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
+ engines: {node: '>= 10.14.2'}
+ dev: true
+
+ /jest-haste-map/27.5.1:
+ resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
+ '@types/graceful-fs': 4.1.5
+ '@types/node': 17.0.21
+ anymatch: 3.1.2
+ fb-watchman: 2.0.1
+ graceful-fs: 4.2.10
+ jest-regex-util: 27.5.1
+ jest-serializer: 27.5.1
+ jest-util: 27.5.1
+ jest-worker: 27.5.1
+ micromatch: 4.0.5
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /jest-regex-util/27.5.1:
+ resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dev: true
+
+ /jest-serializer/27.5.1:
+ resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@types/node': 17.0.21
+ graceful-fs: 4.2.10
+ dev: true
+
+ /jest-util/27.5.1:
+ resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
+ '@types/node': 17.0.21
+ chalk: 4.1.2
+ ci-info: 3.3.1
+ graceful-fs: 4.2.10
+ picomatch: 2.3.1
+ dev: true
+
+ /jest-validate/26.6.2:
+ resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ camelcase: 6.3.0
+ chalk: 4.1.2
+ jest-get-type: 26.3.0
+ leven: 3.1.0
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-worker/26.6.2:
+ resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/node': 17.0.21
+ merge-stream: 2.0.0
+ supports-color: 7.2.0
+ dev: true
+
/jest-worker/27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.23
+ '@types/node': 17.0.21
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
+ /jetifier/1.6.8:
+ resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==}
+ hasBin: true
+ dev: true
+
+ /joi/17.6.0:
+ resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
+ dependencies:
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.4
+ '@sideway/formula': 3.0.0
+ '@sideway/pinpoint': 2.0.0
+ dev: true
+
/js-cookie/2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
dev: false
@@ -5647,8 +6180,42 @@ packages:
argparse: 2.0.1
dev: true
+ /jsc-android/250230.2.1:
+ resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
+ dev: true
+
+ /jscodeshift/0.13.1_@babel+preset-env@7.16.11:
+ resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/parser': 7.18.4
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.17.5
+ '@babel/preset-env': 7.16.11_@babel+core@7.17.5
+ '@babel/preset-flow': 7.17.12_@babel+core@7.17.5
+ '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/register': 7.17.7_@babel+core@7.17.5
+ babel-core: 7.0.0-bridge.0_@babel+core@7.17.5
+ chalk: 4.1.2
+ flow-parser: 0.121.0
+ graceful-fs: 4.2.10
+ micromatch: 3.1.10
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.20.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/jsesc/0.5.0:
- resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
dev: true
@@ -5674,7 +6241,7 @@ packages:
dev: true
/json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
/json5/1.0.1:
@@ -5688,14 +6255,21 @@ packages:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
engines: {node: '>=6'}
hasBin: true
+
+ /jsonfile/2.4.0:
+ resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
+ optionalDependencies:
+ graceful-fs: 4.2.10
dev: true
- /jsonfile/6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- dependencies:
- universalify: 2.0.0
+ /jsonfile/4.0.0:
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.10
+ dev: true
+
+ /jsonify/0.0.0:
+ resolution: {integrity: sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==}
dev: true
/jss-plugin-camel-case/10.9.0:
@@ -5755,27 +6329,52 @@ packages:
resolution: {integrity: sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw==}
dependencies:
'@babel/runtime': 7.17.2
- csstype: 3.0.11
+ csstype: 3.1.0
is-in-browser: 1.1.3
tiny-warning: 1.0.3
dev: false
- /jsx-ast-utils/3.2.1:
- resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
+ /jsx-ast-utils/3.3.0:
+ resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.5
object.assign: 4.1.2
dev: true
+ /kind-of/3.2.2:
+ resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of/4.0.0:
+ resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of/5.1.0:
+ resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/kind-of/6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
dev: true
- /klona/2.0.5:
- resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
- engines: {node: '>= 8'}
+ /klaw/1.3.1:
+ resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
+ optionalDependencies:
+ graceful-fs: 4.2.10
+ dev: true
+
+ /kleur/3.0.3:
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
dev: true
/language-subtag-registry/0.3.21:
@@ -5783,11 +6382,16 @@ packages:
dev: true
/language-tags/1.0.5:
- resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
language-subtag-registry: 0.3.21
dev: true
+ /leven/3.1.0:
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
+ dev: true
+
/levn/0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
@@ -5805,28 +6409,22 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /loader-runner/4.2.0:
- resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
- engines: {node: '>=6.11.5'}
- dev: true
-
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.1
- dev: true
-
/locate-path/2.0.0:
- resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
dependencies:
p-locate: 2.0.0
path-exists: 3.0.0
dev: true
+ /locate-path/3.0.0:
+ resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: true
+
/locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -5835,30 +6433,58 @@ packages:
dev: true
/lodash.debounce/4.0.8:
- resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
/lodash.memoize/4.1.2:
- resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
/lodash.merge/4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
+ /lodash.throttle/4.1.1:
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
+ dev: true
+
/lodash.truncate/4.4.2:
- resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=}
+ resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
dev: true
/lodash.uniq/4.5.0:
- resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
/lodash/4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ /log-symbols/2.2.0:
+ resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
+ engines: {node: '>=4'}
+ dependencies:
+ chalk: 2.4.2
+ dev: true
+
+ /log-symbols/4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: true
+
+ /logkitty/0.7.1:
+ resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
+ hasBin: true
+ dependencies:
+ ansi-fragments: 0.2.1
+ dayjs: 1.11.2
+ yargs: 15.4.1
+ dev: true
+
/loglevel-colored-level-prefix/1.0.0:
- resolution: {integrity: sha1-akAhj9x64V/HbD0PPmdsRlOIYD4=}
+ resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
dependencies:
chalk: 1.1.3
loglevel: 1.8.0
@@ -5875,12 +6501,6 @@ packages:
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
- resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
- dependencies:
- tslib: 2.3.1
- dev: true
-
/lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
@@ -5888,11 +6508,30 @@ packages:
yallist: 4.0.0
dev: true
- /make-dir/3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
+ /make-dir/2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
dependencies:
- semver: 6.3.0
+ pify: 4.0.1
+ semver: 5.7.1
+ dev: true
+
+ /makeerror/1.0.12:
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+ dependencies:
+ tmpl: 1.0.5
+ dev: true
+
+ /map-cache/0.2.2:
+ resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /map-visit/1.0.0:
+ resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-visit: 1.0.1
dev: true
/matchmediaquery/0.3.1:
@@ -5905,34 +6544,299 @@ packages:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: true
- /media-typer/0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
- engines: {node: '>= 0.6'}
+ /merge-stream/2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
dev: true
- /memfs/3.4.1:
- resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==}
- engines: {node: '>= 4.0.0'}
+ /merge2/1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ /metro-babel-transformer/0.67.0:
+ resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==}
dependencies:
- fs-monkey: 1.0.3
+ '@babel/core': 7.17.5
+ hermes-parser: 0.5.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /merge-descriptors/1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ /metro-cache-key/0.67.0:
+ resolution: {integrity: sha512-FNJe5Rcb2uzY6G6tsqCf0RV4t2rCeX6vSHBxmP7k+4aI4NqX4evtPI0K82r221nBzm5DqNWCURZ0RYUT6jZMGA==}
dev: true
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ /metro-cache/0.67.0:
+ resolution: {integrity: sha512-IY5dXiR76L75b2ue/mv+9vW8g5hdQJU6YEe81lj6gTSoUrhcONT0rzY+Gh5QOS2Kk6z9utZQMvd9PRKL9/635A==}
+ dependencies:
+ metro-core: 0.67.0
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
dev: true
- /merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
+ /metro-config/0.67.0:
+ resolution: {integrity: sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g==}
+ dependencies:
+ cosmiconfig: 5.2.1
+ jest-validate: 26.6.2
+ metro: 0.67.0
+ metro-cache: 0.67.0
+ metro-core: 0.67.0
+ metro-runtime: 0.67.0
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /metro-core/0.67.0:
+ resolution: {integrity: sha512-TOa/ShE1bUq83fGNfV6rFwyfZ288M8ydmWN3g9C2OW8emOHLhJslYD/SIU4DhDkP/99yaJluIALdZ2g0+pCrvQ==}
+ dependencies:
+ jest-haste-map: 27.5.1
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.67.0
+ dev: true
+
+ /metro-hermes-compiler/0.67.0:
+ resolution: {integrity: sha512-X5Pr1jC8/kO6d1EBDJ6yhtuc5euHX89UDNv8qdPJHAET03xfFnlojRPwOw6il2udAH20WLBv+F5M9VY+58zspQ==}
+ dev: true
+
+ /metro-inspector-proxy/0.67.0:
+ resolution: {integrity: sha512-5Ubjk94qpNaU3OT2IZa4/dec09bauic1hzWms4czorBzDenkp4kYXG9/aWTmgQLtCk92H3Q8jKl1PQRxUSkrOQ==}
+ hasBin: true
+ dependencies:
+ connect: 3.7.0
+ debug: 2.6.9
+ ws: 7.5.8
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: true
+
+ /metro-minify-uglify/0.67.0:
+ resolution: {integrity: sha512-4CmM5b3MTAmQ/yFEfsHOhD2SuBObB2YF6PKzXZc4agUsQVVtkrrNElaiWa8w26vrTzA9emwcyurxMf4Nl3lYPQ==}
+ dependencies:
+ uglify-es: 3.3.9
+ dev: true
+
+ /metro-react-native-babel-preset/0.67.0:
+ resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==}
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.17.5
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-transform-object-assign': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.17.5
+ '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.17.5
+ '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.17.5
+ '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.17.5
+ '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.5
+ '@babel/template': 7.16.7
+ react-refresh: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-react-native-babel-transformer/0.67.0:
+ resolution: {integrity: sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ==}
+ dependencies:
+ '@babel/core': 7.17.5
+ babel-preset-fbjs: 3.4.0_@babel+core@7.17.5
+ hermes-parser: 0.5.0
+ metro-babel-transformer: 0.67.0
+ metro-react-native-babel-preset: 0.67.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-resolver/0.67.0:
+ resolution: {integrity: sha512-d2KS/zAyOA/z/q4/ff41rAp+1txF4H6qItwpsls/RHStV2j6PqgRHUzq/3ga+VIeoUJntYJ8nGW3+3qSrhFlig==}
+ dependencies:
+ absolute-path: 0.0.0
+ dev: true
+
+ /metro-runtime/0.67.0:
+ resolution: {integrity: sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g==}
+ dev: true
+
+ /metro-source-map/0.67.0:
+ resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==}
+ dependencies:
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
+ invariant: 2.2.4
+ metro-symbolicate: 0.67.0
+ nullthrows: 1.1.1
+ ob1: 0.67.0
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-symbolicate/0.67.0:
+ resolution: {integrity: sha512-ZqVVcfa0xSz40eFzA5P8pCF3V6Tna9RU1prFzAJTa3j9dCGqwh0HTXC8AIkMtgX7hNdZrCJI1YipzUBlwkT0/A==}
+ engines: {node: '>=8.3'}
+ hasBin: true
+ dependencies:
+ invariant: 2.2.4
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ through2: 2.0.5
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-transform-plugins/0.67.0:
+ resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==}
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/generator': 7.18.2
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-transform-worker/0.67.0:
+ resolution: {integrity: sha512-29n+JdTb80ROiv/wDiBVlY/xRAF/nrjhp/Udv/XJl1DZb+x7JEiPxpbpthPhwwl+AYxVrostGB0W06WJ61hfiw==}
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/generator': 7.18.2
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
+ babel-preset-fbjs: 3.4.0_@babel+core@7.17.5
+ metro: 0.67.0
+ metro-babel-transformer: 0.67.0
+ metro-cache: 0.67.0
+ metro-cache-key: 0.67.0
+ metro-hermes-compiler: 0.67.0
+ metro-source-map: 0.67.0
+ metro-transform-plugins: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /metro/0.67.0:
+ resolution: {integrity: sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ==}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.16.7
+ '@babel/core': 7.17.5
+ '@babel/generator': 7.18.2
+ '@babel/parser': 7.18.4
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
+ absolute-path: 0.0.0
+ accepts: 1.3.8
+ async: 2.6.4
+ chalk: 4.1.2
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ denodeify: 1.2.1
+ error-stack-parser: 2.0.7
+ fs-extra: 1.0.0
+ graceful-fs: 4.2.10
+ hermes-parser: 0.5.0
+ image-size: 0.6.3
+ invariant: 2.2.4
+ jest-haste-map: 27.5.1
+ jest-worker: 26.6.2
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.67.0
+ metro-cache: 0.67.0
+ metro-cache-key: 0.67.0
+ metro-config: 0.67.0
+ metro-core: 0.67.0
+ metro-hermes-compiler: 0.67.0
+ metro-inspector-proxy: 0.67.0
+ metro-minify-uglify: 0.67.0
+ metro-react-native-babel-preset: 0.67.0
+ metro-resolver: 0.67.0
+ metro-runtime: 0.67.0
+ metro-source-map: 0.67.0
+ metro-symbolicate: 0.67.0
+ metro-transform-plugins: 0.67.0
+ metro-transform-worker: 0.67.0
+ mime-types: 2.1.35
+ mkdirp: 0.5.6
+ node-fetch: 2.6.7
+ nullthrows: 1.1.1
+ rimraf: 2.7.1
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ strip-ansi: 6.0.1
+ temp: 0.8.3
+ throat: 5.0.0
+ ws: 7.5.8
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
dev: true
- /methods/1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
- engines: {node: '>= 0.6'}
+ /micromatch/3.1.10:
+ resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
dev: true
/micromatch/4.0.5:
@@ -5941,7 +6845,6 @@ packages:
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- dev: true
/mime-db/1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
@@ -5961,15 +6864,22 @@ packages:
hasBin: true
dev: true
+ /mime/2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+ dev: true
+
+ /mimic-fn/1.2.0:
+ resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
+ engines: {node: '>=4'}
+ dev: true
+
/mimic-fn/2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
dev: true
- /minimalistic-assert/1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- dev: true
-
/minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -5980,6 +6890,14 @@ packages:
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
dev: true
+ /mixin-deep/1.3.2:
+ resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: true
+
/mkdirp/0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -5987,11 +6905,6 @@ packages:
minimist: 1.2.6
dev: true
- /mrmime/1.0.0:
- resolution: {integrity: sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ==}
- engines: {node: '>=10'}
- dev: true
-
/ms/2.0.0:
resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
dev: true
@@ -6003,22 +6916,26 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /multicast-dns-service-types/1.1.0:
- resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=}
- dev: true
-
- /multicast-dns/6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
- hasBin: true
- dependencies:
- dns-packet: 1.3.4
- thunky: 1.1.0
- dev: true
-
- /nanoid/3.3.1:
- resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==}
+ /nanoid/3.3.4:
+ resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+
+ /nanomatch/1.2.13:
+ resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
dev: true
/natural-compare/1.4.0:
@@ -6034,11 +6951,20 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
- /no-case/3.0.4:
- resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
+ /nice-try/1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+ dev: true
+
+ /nocache/2.1.0:
+ resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==}
+ engines: {node: '>=4.0.0'}
+ dev: true
+
+ /node-dir/0.1.17:
+ resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=}
+ engines: {node: '>= 0.10.5'}
dependencies:
- lower-case: 2.0.2
- tslib: 2.3.1
+ minimatch: 3.1.2
dev: true
/node-fetch/2.6.7:
@@ -6051,15 +6977,17 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
- dev: false
- /node-forge/1.3.0:
- resolution: {integrity: sha512-08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA==}
- engines: {node: '>= 6.13.0'}
+ /node-int64/0.4.0:
+ resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=}
dev: true
- /node-releases/2.0.2:
- resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==}
+ /node-releases/2.0.5:
+ resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
+
+ /node-stream-zip/1.15.0:
+ resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
+ engines: {node: '>=0.12.0'}
dev: true
/normalize-path/3.0.0:
@@ -6077,30 +7005,47 @@ packages:
engines: {node: '>=10'}
dev: true
- /npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
+ /npm-run-path/2.0.2:
+ resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
+ engines: {node: '>=4'}
dependencies:
- path-key: 3.1.1
+ path-key: 2.0.1
dev: true
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check/2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: true
+ /nullthrows/1.1.1:
+ resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
+ dev: true
+
+ /ob1/0.67.0:
+ resolution: {integrity: sha512-YvZtX8HKYackQ5PwdFIuuNFVsMChRPHvnARRRT0Vk59xsBvL5t9U1Ock3M1sYrKj+Gp73+0q9xcHLAxI+xLi5g==}
+ dev: true
+
/object-assign/4.1.1:
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
engines: {node: '>=0.10.0'}
+ /object-copy/0.1.0:
+ resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: true
+
/object-hash/2.2.0:
resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
engines: {node: '>= 6'}
dev: true
- /object-inspect/1.12.0:
- resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
+ /object-inspect/1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
/object-is/1.1.5:
@@ -6108,18 +7053,26 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ dev: false
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
+ /object-visit/1.0.1:
+ resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
/object.assign/4.1.2:
resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
has-symbols: 1.0.3
object-keys: 1.1.1
dev: true
@@ -6129,8 +7082,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/object.fromentries/2.0.5:
@@ -6138,15 +7091,22 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ dev: true
+
+ /object.hasown/1.1.1:
+ resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==}
+ dependencies:
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /object.hasown/1.1.0:
- resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==}
+ /object.pick/1.3.0:
+ resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=}
+ engines: {node: '>=0.10.0'}
dependencies:
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ isobject: 3.0.1
dev: true
/object.values/1.1.5:
@@ -6154,12 +7114,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- dev: true
-
- /obuf/1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/on-finished/2.3.0:
@@ -6169,6 +7125,13 @@ packages:
ee-first: 1.1.1
dev: true
+ /on-finished/2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: true
+
/on-headers/1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
@@ -6180,6 +7143,13 @@ packages:
wrappy: 1.0.2
dev: true
+ /onetime/2.0.1:
+ resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: true
+
/onetime/5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
@@ -6187,18 +7157,11 @@ packages:
mimic-fn: 2.1.0
dev: true
- /open/8.4.0:
- resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
- engines: {node: '>=12'}
+ /open/6.4.0:
+ resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
+ engines: {node: '>=8'}
dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
- dev: true
-
- /opener/1.5.2:
- resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
- hasBin: true
+ is-wsl: 1.1.0
dev: true
/optionator/0.9.1:
@@ -6213,6 +7176,43 @@ packages:
word-wrap: 1.2.3
dev: true
+ /ora/3.4.0:
+ resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
+ engines: {node: '>=6'}
+ dependencies:
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-spinners: 2.6.1
+ log-symbols: 2.2.0
+ strip-ansi: 5.2.0
+ wcwidth: 1.0.1
+ dev: true
+
+ /ora/5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.6.1
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: true
+
+ /os-tmpdir/1.0.2:
+ resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /p-finally/1.0.0:
+ resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
+ engines: {node: '>=4'}
+ dev: true
+
/p-limit/1.3.0:
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
engines: {node: '>=4'}
@@ -6234,26 +7234,18 @@ packages:
p-limit: 1.3.0
dev: true
- /p-locate/4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
+ /p-locate/3.0.0:
+ resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
+ engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
dev: true
- /p-map/4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
- dependencies:
- aggregate-error: 3.1.0
- dev: true
-
- /p-retry/4.6.1:
- resolution: {integrity: sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==}
+ /p-locate/4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
- '@types/retry': 0.12.1
- retry: 0.13.1
+ p-limit: 2.3.0
dev: true
/p-try/1.0.0:
@@ -6266,13 +7258,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /param-case/3.0.4:
- resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
- dependencies:
- dot-case: 3.0.4
- tslib: 2.3.1
- dev: true
-
/parent-module/1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -6280,6 +7265,14 @@ packages:
callsites: 3.1.0
dev: true
+ /parse-json/4.0.0:
+ resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=}
+ engines: {node: '>=4'}
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: true
+
/parse-json/5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -6295,11 +7288,9 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /pascal-case/3.1.2:
- resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
- dependencies:
- no-case: 3.0.4
- tslib: 2.3.1
+ /pascalcase/0.1.1:
+ resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=}
+ engines: {node: '>=0.10.0'}
dev: true
/path-exists/3.0.0:
@@ -6317,6 +7308,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /path-key/2.0.1:
+ resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=}
+ engines: {node: '>=4'}
+ dev: true
+
/path-key/3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -6324,11 +7320,6 @@ packages:
/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- dev: true
-
- /path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
- dev: true
/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -6337,17 +7328,34 @@ packages:
/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- dev: true
/picomatch/2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pkg-dir/4.2.0:
- resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
- engines: {node: '>=8'}
+ /pify/4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pirates/4.0.5:
+ resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /pkg-dir/3.0.0:
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
dependencies:
- find-up: 4.1.0
+ find-up: 3.0.0
+ dev: true
+
+ /plist/3.0.5:
+ resolution: {integrity: sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==}
+ engines: {node: '>=6'}
+ dependencies:
+ base64-js: 1.5.1
+ xmlbuilder: 9.0.7
dev: true
/popper.js/1.16.1:
@@ -6359,13 +7367,9 @@ packages:
resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
dev: false
- /portfinder/1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
- engines: {node: '>= 0.12.0'}
- dependencies:
- async: 2.6.3
- debug: 3.2.7
- mkdirp: 0.5.6
+ /posix-character-classes/0.1.1:
+ resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
+ engines: {node: '>=0.10.0'}
dev: true
/postcss-calc/8.2.4_postcss@8.4.8:
@@ -6374,7 +7378,7 @@ packages:
postcss: ^8.2.2
dependencies:
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
dev: true
@@ -6384,25 +7388,26 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
colord: 2.9.2
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.0_postcss@8.4.8:
- resolution: {integrity: sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==}
+ /postcss-convert-values/5.1.2_postcss@8.4.8:
+ resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
+ browserslist: 4.20.3
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.1_postcss@8.4.8:
- resolution: {integrity: sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ==}
+ /postcss-discard-comments/5.1.2_postcss@8.4.8:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
@@ -6447,35 +7452,25 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-load-config/3.1.3:
- resolution: {integrity: sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==}
+ /postcss-load-config/3.1.4_postcss@8.4.8:
+ resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
+ postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
+ postcss:
+ optional: true
ts-node:
optional: true
dependencies:
lilconfig: 2.0.5
- yaml: 1.10.2
- dev: true
-
- /postcss-loader/5.3.0_postcss@8.4.8+webpack@5.70.0:
- resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
- dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
postcss: 8.4.8
- semver: 7.3.5
- webpack: 5.70.0_webpack-cli@4.9.2
+ yaml: 1.10.2
dev: true
- /postcss-merge-longhand/5.1.3_postcss@8.4.8:
- resolution: {integrity: sha512-lX8GPGvZ0iGP/IboM7HXH5JwkXvXod1Rr8H8ixwiA372hArk0zP4ZcCy4z4Prg/bfNlbbTf0KCOjCF9kKnpP/w==}
+ /postcss-merge-longhand/5.1.5_postcss@8.4.8:
+ resolution: {integrity: sha512-NOG1grw9wIO+60arKa2YYsrbgvP6tp+jqc7+ZD5/MalIw234ooH2C6KlR6FEn4yle7GqZoBxSK1mLBE9KPur6w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
@@ -6485,17 +7480,17 @@ packages:
stylehacks: 5.1.0_postcss@8.4.8
dev: true
- /postcss-merge-rules/5.1.1_postcss@8.4.8:
- resolution: {integrity: sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==}
+ /postcss-merge-rules/5.1.2_postcss@8.4.8:
+ resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
cssnano-utils: 3.1.0_postcss@8.4.8
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
dev: true
/postcss-minify-font-values/5.1.0_postcss@8.4.8:
@@ -6520,67 +7515,26 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.1.2_postcss@8.4.8:
- resolution: {integrity: sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==}
+ /postcss-minify-params/5.1.3_postcss@8.4.8:
+ resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
cssnano-utils: 3.1.0_postcss@8.4.8
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-selectors/5.2.0_postcss@8.4.8:
- resolution: {integrity: sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==}
+ /postcss-minify-selectors/5.2.1_postcss@8.4.8:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
- dev: true
-
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
- dev: true
-
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
- postcss-selector-parser: 6.0.9
- postcss-value-parser: 4.2.0
- dev: true
-
- /postcss-modules-scope/3.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
- postcss-selector-parser: 6.0.9
- dev: true
-
- /postcss-modules-values/4.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
+ postcss-selector-parser: 6.0.10
dev: true
/postcss-nested/5.0.6_postcss@8.4.8:
@@ -6590,7 +7544,7 @@ packages:
postcss: ^8.2.14
dependencies:
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
dev: true
/postcss-normalize-charset/5.1.0_postcss@8.4.8:
@@ -6658,7 +7612,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
@@ -6701,7 +7655,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
postcss: 8.4.8
dev: true
@@ -6716,8 +7670,8 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-selector-parser/6.0.9:
- resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==}
+ /postcss-selector-parser/6.0.10:
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
@@ -6742,17 +7696,26 @@ packages:
postcss: ^8.2.15
dependencies:
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
dev: true
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ /postcss/8.4.14:
+ resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.4
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: false
+
/postcss/8.4.8:
resolution: {integrity: sha512-2tXEqGxrjvAO6U+CJzDL2Fk2kPHTv1jQsYkSoMeOis2SsYaXRO2COxTdQp99cYvif9JTXaAk9lYGc3VhJt7JPQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.1
+ nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
dev: true
@@ -6795,20 +7758,23 @@ packages:
hasBin: true
dev: true
- /pretty-error/4.0.0:
- resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
- dependencies:
- lodash: 4.17.21
- renderkid: 3.0.0
- dev: true
-
/pretty-format/23.6.0:
resolution: {integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==}
dependencies:
- ansi-regex: 3.0.0
+ ansi-regex: 3.0.1
ansi-styles: 3.2.1
dev: true
+ /pretty-format/26.6.2:
+ resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+ dev: true
+
/process-nextick-args/2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: true
@@ -6818,6 +7784,20 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /promise/8.1.0:
+ resolution: {integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==}
+ dependencies:
+ asap: 2.0.6
+ dev: true
+
+ /prompts/2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
+ dev: true
+
/prop-types-extra/1.1.1_react@17.0.2:
resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==}
peerDependencies:
@@ -6835,12 +7815,11 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /proxy-addr/2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
+ /pump/3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
+ end-of-stream: 1.4.4
+ once: 1.4.0
dev: true
/punycode/1.3.2:
@@ -6852,11 +7831,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /qs/6.9.7:
- resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==}
- engines: {node: '>=0.6'}
- dev: true
-
/querystring/0.2.0:
resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
engines: {node: '>=0.4.x'}
@@ -6865,34 +7839,17 @@ packages:
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- dev: true
/quick-lru/5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
dev: true
- /randombytes/2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- dependencies:
- safe-buffer: 5.2.1
- dev: true
-
/range-parser/1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
dev: true
- /raw-body/2.4.3:
- resolution: {integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- dev: true
-
/react-bootstrap/1.6.4_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha512-z3BhBD4bEZuLP8VrYqAD7OT7axdcSkkyvWBWnS2U/4MhyabUihrUyucPWkan7aMI1XIHbmH4LCpEtzWGfx/yfA==}
peerDependencies:
@@ -6903,7 +7860,7 @@ packages:
'@restart/context': 2.1.4_react@17.0.2
'@restart/hooks': 0.3.27_react@17.0.2
'@types/invariant': 2.2.35
- '@types/prop-types': 15.7.4
+ '@types/prop-types': 15.7.5
'@types/react': 17.0.39
'@types/react-transition-group': 4.4.4
'@types/warning': 3.0.0
@@ -6914,7 +7871,7 @@ packages:
prop-types-extra: 1.1.1_react@17.0.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-overlays: 5.1.1_react-dom@17.0.2+react@17.0.2
+ react-overlays: 5.1.2_react-dom@17.0.2+react@17.0.2
react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2
uncontrollable: 7.2.1_react@17.0.2
warning: 4.0.3
@@ -6935,6 +7892,16 @@ packages:
react-popper: 1.3.11_react@17.0.2
dev: false
+ /react-devtools-core/4.24.6:
+ resolution: {integrity: sha512-+6y6JAtAo1NUUxaCwCYTb13ViBpc7RjNTlj1HZRlDJmi7UYToj5+BNn8Duzz2YizzAzmRUWZkRM7OtqxnN6TnA==}
+ dependencies:
+ shell-quote: 1.7.3
+ ws: 7.5.8
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: true
+
/react-dom/17.0.2_react@17.0.2:
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
@@ -6950,12 +7917,13 @@ packages:
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
dev: false
- /react-ga/3.3.0_react@17.0.2:
+ /react-ga/3.3.0_prop-types@15.8.1+react@17.0.2:
resolution: {integrity: sha512-o8RScHj6Lb8cwy3GMrVH6NJvL+y0zpJvKtc0+wmH7Bt23rszJmnqEQxRbyrqUzk9DTJIHoP42bfO5rswC9SWBQ==}
peerDependencies:
prop-types: ^15.6.0
react: ^15.6.2 || ^16.0 || ^17
dependencies:
+ prop-types: 15.8.1
react: 17.0.2
dev: false
@@ -6971,7 +7939,7 @@ packages:
react-side-effect: 2.1.1_react@17.0.2
dev: false
- /react-i18next/11.15.6_8f2a12f93b34591c18c344cd829419b1:
+ /react-i18next/11.15.6_4c698a524a9b4026764e85649d37b2b3:
resolution: {integrity: sha512-OUWcFdNgIA9swVx3JGIreuquglAinpRwB/HYrCprTN+s9BQDt9LSiY7x5DGc2JzVpwqtpoTV7oRUTOxEPNyUPw==}
peerDependencies:
i18next: '>= 19.0.0'
@@ -6990,6 +7958,7 @@ packages:
i18next: 19.9.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
+ react-native: 0.68.2_24353ddb04343aa31089be039ffbe27f
dev: false
/react-is/16.13.1:
@@ -6997,20 +7966,88 @@ packages:
/react-is/17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- dev: false
+
+ /react-is/18.1.0:
+ resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
+ dev: true
/react-lifecycles-compat/3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-native-get-random-values/1.7.2:
- resolution: {integrity: sha512-28KRYGpIG/upV8+k/qFA+TwGW+yGjmtOHaCduJHpOQK1QUTyhiA6E2IgL4UvvU2dybeCTYFmUi9wcEQ0GiWe5g==}
+ /react-native-codegen/0.0.17_@babel+preset-env@7.16.11:
+ resolution: {integrity: sha512-7GIEUmAemH9uWwB6iYXNNsPoPgH06pxzGRmdBzK98TgFBdYJZ7CBuZFPMe4jmHQTPOkQazKZ/w5O6/71JBixmw==}
+ dependencies:
+ '@babel/parser': 7.18.4
+ flow-parser: 0.121.0
+ jscodeshift: 0.13.1_@babel+preset-env@7.16.11
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+ dev: true
+
+ /react-native-get-random-values/1.8.0_react-native@0.68.2:
+ resolution: {integrity: sha512-H/zghhun0T+UIJLmig3+ZuBCvF66rdbiWUfRSNS6kv5oDSpa1ZiVyvRWtuPesQpT8dXj+Bv7WJRQOUP+5TB1sA==}
peerDependencies:
react-native: '>=0.56'
dependencies:
fast-base64-decode: 1.0.0
+ react-native: 0.68.2_24353ddb04343aa31089be039ffbe27f
dev: false
+ /react-native-gradle-plugin/0.0.6:
+ resolution: {integrity: sha512-eIlgtsmDp1jLC24dRn43hB3kEcZVqx6DUQbR0N1ABXGnMEafm9I3V3dUUeD1vh+Dy5WqijSoEwLNUPLgu5zDMg==}
+ dev: true
+
+ /react-native/0.68.2_24353ddb04343aa31089be039ffbe27f:
+ resolution: {integrity: sha512-qNMz+mdIirCEmlrhapAtAG+SWVx6MAiSfCbFNhfHqiqu1xw1OKXdzIrjaBEPihRC2pcORCoCHduHGQe/Pz9Yuw==}
+ engines: {node: '>=14'}
+ hasBin: true
+ peerDependencies:
+ react: 17.0.2
+ dependencies:
+ '@jest/create-cache-key-function': 27.5.1
+ '@react-native-community/cli': 7.0.3_react-native@0.68.2
+ '@react-native-community/cli-platform-android': 7.0.1
+ '@react-native-community/cli-platform-ios': 7.0.1
+ '@react-native/assets': 1.0.0
+ '@react-native/normalize-color': 2.0.0
+ '@react-native/polyfills': 2.0.0
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ base64-js: 1.5.1
+ deprecated-react-native-prop-types: 2.3.0
+ event-target-shim: 5.0.1
+ hermes-engine: 0.11.0
+ invariant: 2.2.4
+ jsc-android: 250230.2.1
+ metro-react-native-babel-transformer: 0.67.0
+ metro-runtime: 0.67.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.1.0
+ react: 17.0.2
+ react-devtools-core: 4.24.6
+ react-native-codegen: 0.0.17_@babel+preset-env@7.16.11
+ react-native-gradle-plugin: 0.0.6
+ react-refresh: 0.4.3
+ react-shallow-renderer: 16.14.1_react@17.0.2
+ regenerator-runtime: 0.13.9
+ scheduler: 0.20.2
+ stacktrace-parser: 0.1.10
+ use-subscription: 1.5.1_react@17.0.2
+ whatwg-fetch: 3.6.2
+ ws: 6.2.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
/react-onclickoutside/6.12.1_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha512-a5Q7CkWznBRUWPmocCvE8b6lEYw1s6+opp/60dCunhO+G6E4tDTO2Sd2jKE+leEnnrLAE2Wj5DlDHNqj5wPv1Q==}
peerDependencies:
@@ -7021,15 +8058,15 @@ packages:
react-dom: 17.0.2_react@17.0.2
dev: false
- /react-overlays/5.1.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-eCN2s2/+GVZzpnId4XVWtvDPYYBD2EtOGP74hE+8yDskPzFy9+pV1H3ZZihxuRdEbQzzacySaaDkR7xE0ydl4Q==}
+ /react-overlays/5.1.2_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-kLCq0ngBtuVnp0eMx8gISD9FaCkifUZoOdHReTJGfnDikvvOjZpi/OduTgXEf6rGYm24WJbHFJFDaKD+ylQ03g==}
peerDependencies:
react: '>=16.3.0'
react-dom: '>=16.3.0'
dependencies:
'@babel/runtime': 7.17.2
- '@popperjs/core': 2.11.4
- '@restart/hooks': 0.3.27_react@17.0.2
+ '@popperjs/core': 2.11.5
+ '@restart/hooks': 0.4.7_react@17.0.2
'@types/warning': 3.0.0
dom-helpers: 5.2.1
prop-types: 15.8.1
@@ -7054,6 +8091,16 @@ packages:
warning: 4.0.3
dev: false
+ /react-refresh/0.10.0:
+ resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /react-refresh/0.4.3:
+ resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/react-responsive/8.2.0_react@17.0.2:
resolution: {integrity: sha512-iagCqVrw4QSjhxKp3I/YK6+ODkWY6G+YPElvdYKiUUbywwh9Ds0M7r26Fj2/7dWFFbOpcGnJE6uE7aMck8j5Qg==}
engines: {node: '>= 0.10'}
@@ -7067,8 +8114,8 @@ packages:
shallow-equal: 1.2.1
dev: false
- /react-router-dom/6.2.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==}
+ /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
@@ -7076,11 +8123,11 @@ packages:
history: 5.3.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-router: 6.2.2_react@17.0.2
+ react-router: 6.3.0_react@17.0.2
dev: false
- /react-router/6.2.2_react@17.0.2:
- resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==}
+ /react-router/6.3.0_react@17.0.2:
+ resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
react: '>=16.8'
dependencies:
@@ -7088,6 +8135,16 @@ packages:
react: 17.0.2
dev: false
+ /react-shallow-renderer/16.14.1_react@17.0.2:
+ resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react: 17.0.2
+ react-is: 16.13.1
+ dev: true
+
/react-side-effect/2.1.1_react@17.0.2:
resolution: {integrity: sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==}
peerDependencies:
@@ -7146,11 +8203,18 @@ packages:
picomatch: 2.3.1
dev: true
- /rechoir/0.7.1:
- resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
- engines: {node: '>= 0.10'}
+ /readline/1.3.0:
+ resolution: {integrity: sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=}
+ dev: true
+
+ /recast/0.20.5:
+ resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
+ engines: {node: '>= 4'}
dependencies:
- resolve: 1.22.0
+ ast-types: 0.14.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.4.0
dev: true
/regenerate-unicode-properties/10.0.1:
@@ -7167,18 +8231,27 @@ packages:
/regenerator-runtime/0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- /regenerator-transform/0.14.5:
- resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
+ /regenerator-transform/0.15.0:
+ resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
'@babel/runtime': 7.17.2
dev: true
- /regexp.prototype.flags/1.4.1:
- resolution: {integrity: sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==}
+ /regex-not/1.0.2:
+ resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: true
+
+ /regexp.prototype.flags/1.4.3:
+ resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ functions-have-names: 1.2.3
/regexpp/3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
@@ -7208,19 +8281,14 @@ packages:
jsesc: 0.5.0
dev: true
- /relateurl/0.2.7:
- resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
- engines: {node: '>= 0.10'}
+ /repeat-element/1.1.4:
+ resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
+ engines: {node: '>=0.10.0'}
dev: true
- /renderkid/3.0.0:
- resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
- dependencies:
- css-select: 4.2.1
- dom-converter: 0.2.0
- htmlparser2: 6.1.0
- lodash: 4.17.21
- strip-ansi: 6.0.1
+ /repeat-string/1.6.1:
+ resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ engines: {node: '>=0.10'}
dev: true
/require-directory/2.1.1:
@@ -7233,19 +8301,17 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /require-relative/0.8.7:
- resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=}
+ /require-main-filename/2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
- /requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
+ /require-relative/0.8.7:
+ resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=}
dev: true
- /resolve-cwd/3.0.0:
- resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
- engines: {node: '>=8'}
- dependencies:
- resolve-from: 5.0.0
+ /resolve-from/3.0.0:
+ resolution: {integrity: sha1-six699nWiBvItuZTM17rywoYh0g=}
+ engines: {node: '>=4'}
dev: true
/resolve-from/4.0.0:
@@ -7253,49 +8319,89 @@ packages:
engines: {node: '>=4'}
dev: true
- /resolve-from/5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
+ /resolve-url/0.2.1:
+ resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
+ deprecated: https://github.com/lydell/resolve-url#deprecated
dev: true
/resolve/1.22.0:
resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
hasBin: true
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- dev: true
/resolve/2.0.0-next.3:
resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
dev: true
- /retry/0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
+ /restore-cursor/2.0.0:
+ resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=}
+ engines: {node: '>=4'}
+ dependencies:
+ onetime: 2.0.1
+ signal-exit: 3.0.7
+ dev: true
+
+ /restore-cursor/3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: true
+
+ /ret/0.1.15:
+ resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
+ engines: {node: '>=0.12'}
dev: true
/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ /rimraf/2.2.8:
+ resolution: {integrity: sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=}
+ hasBin: true
+ dev: true
+
+ /rimraf/2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: true
+
+ /rimraf/2.7.1:
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
dev: true
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
+ /rollup/2.75.3:
+ resolution: {integrity: sha512-YA29fLU6MAYSaDxIQYrGGOcbXlDmG96h0krGGYObroezcQ0KgEPM3+7MtKD/qeuUbFuAJXvKZee5dA1dpwq1PQ==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: false
+
/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- dev: true
/rxjs/6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
@@ -7306,39 +8412,15 @@ packages:
/safe-buffer/5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: true
/safe-buffer/5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
- /safer-buffer/2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: true
-
- /sass-loader/12.6.0_sass@1.49.9+webpack@5.70.0:
- resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- sass: ^1.3.0
- sass-embedded: '*'
- webpack: ^5.0.0
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
+ /safe-regex/1.1.0:
+ resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
dependencies:
- klona: 2.0.5
- neo-async: 2.6.2
- sass: 1.49.9
- webpack: 5.70.0_webpack-cli@4.9.2
+ ret: 0.1.15
dev: true
/sass/1.49.9:
@@ -7347,133 +8429,88 @@ packages:
hasBin: true
dependencies:
chokidar: 3.5.3
- immutable: 4.0.0
+ immutable: 4.1.0
source-map-js: 1.0.2
dev: true
+ /sax/1.2.4:
+ resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ dev: true
+
/scheduler/0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- dev: false
-
- /schema-utils/2.7.0:
- resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/4.0.0:
- resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
- engines: {node: '>= 12.13.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 8.11.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.11.0
- dev: true
-
- /select-hose/2.0.0:
- resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
- dev: true
-
- /selfsigned/2.0.1:
- resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==}
- engines: {node: '>=10'}
- dependencies:
- node-forge: 1.3.0
+ /semver/5.7.1:
+ resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
+ hasBin: true
dev: true
/semver/6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- dev: true
/semver/7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
dev: true
- /semver/7.3.5:
- resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
+ /semver/7.3.7:
+ resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
dev: true
- /send/0.17.2:
- resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==}
+ /send/0.18.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
+ depd: 2.0.0
+ destroy: 1.2.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 1.8.1
+ http-errors: 2.0.0
mime: 1.6.0
ms: 2.1.3
- on-finished: 2.3.0
+ on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 1.5.0
+ statuses: 2.0.1
dev: true
- /serialize-javascript/6.0.0:
- resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
- dependencies:
- randombytes: 2.1.0
+ /serialize-error/2.1.0:
+ resolution: {integrity: sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=}
+ engines: {node: '>=0.10.0'}
dev: true
- /serve-index/1.9.1:
- resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
+ /serve-static/1.15.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
- accepts: 1.3.8
- batch: 0.6.1
- debug: 2.6.9
+ encodeurl: 1.0.2
escape-html: 1.0.3
- http-errors: 1.6.3
- mime-types: 2.1.35
parseurl: 1.3.3
+ send: 0.18.0
dev: true
- /serve-static/1.14.2:
- resolution: {integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.17.2
+ /set-blocking/2.0.0:
+ resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
dev: true
- /setprototypeof/1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
+ /set-value/2.0.1:
+ resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
dev: true
/setprototypeof/1.2.0:
@@ -7495,6 +8532,13 @@ packages:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
dev: false
+ /shebang-command/1.2.0:
+ resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -7502,23 +8546,49 @@ packages:
shebang-regex: 3.0.0
dev: true
+ /shebang-regex/1.0.0:
+ resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
dev: true
+ /shell-quote/1.6.1:
+ resolution: {integrity: sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=}
+ dependencies:
+ array-filter: 0.0.1
+ array-map: 0.0.0
+ array-reduce: 0.0.0
+ jsonify: 0.0.0
+ dev: true
+
+ /shell-quote/1.7.3:
+ resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+ dev: true
+
/side-channel/1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
- object-inspect: 1.12.0
+ object-inspect: 1.12.2
dev: true
/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
+ /simple-plist/1.3.1:
+ resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
+ dependencies:
+ bplist-creator: 0.1.0
+ bplist-parser: 0.3.1
+ plist: 3.0.5
+ dev: true
+
/single-spa-react/3.2.0_react@17.0.2:
resolution: {integrity: sha512-s8K7AuS26WvN9n81z1NBlnZIe/Hin423P8jYLuG/DCNTYo5JbJMS5+Cb/wQd4ikG6YqoedpV4cb7nAcxvlLyhg==}
peerDependencies:
@@ -7527,13 +8597,8 @@ packages:
react: 17.0.2
dev: false
- /sirv/1.0.19:
- resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
- engines: {node: '>= 10'}
- dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.0
- totalist: 1.1.0
+ /sisteransi/1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
/slash/3.0.0:
@@ -7541,6 +8606,15 @@ packages:
engines: {node: '>=8'}
dev: true
+ /slice-ansi/2.1.0:
+ resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
+ dev: true
+
/slice-ansi/4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
@@ -7550,17 +8624,49 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /sockjs/0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
+ /snapdragon-node/2.1.1:
+ resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: true
+
+ /snapdragon-util/3.0.1:
+ resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /snapdragon/0.8.2:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
dev: true
/source-map-js/1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
+
+ /source-map-resolve/0.5.3:
+ resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.0
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
dev: true
/source-map-support/0.5.21:
@@ -7570,9 +8676,15 @@ packages:
source-map: 0.6.1
dev: true
+ /source-map-url/0.4.1:
+ resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
+ deprecated: See https://github.com/lydell/source-map-url#deprecated
+ dev: true
+
/source-map/0.5.7:
resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
engines: {node: '>=0.10.0'}
+ dev: true
/source-map/0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
@@ -7588,30 +8700,11 @@ packages:
resolution: {integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=}
dev: true
- /spdy-transport/3.0.0:
- resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
- dependencies:
- debug: 4.3.4
- detect-node: 2.1.0
- hpack.js: 2.1.6
- obuf: 1.1.2
- readable-stream: 3.6.0
- wbuf: 1.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /spdy/4.0.2:
- resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
- engines: {node: '>=6.0.0'}
+ /split-string/3.1.0:
+ resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
+ engines: {node: '>=0.10.0'}
dependencies:
- debug: 4.3.4
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
+ extend-shallow: 3.0.2
dev: true
/sprintf-js/1.0.3:
@@ -7622,15 +8715,23 @@ packages:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
dev: true
- /standalone-single-spa-webpack-plugin/3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7:
- resolution: {integrity: sha512-qj/iVNXMEWlwMnQbhZC7QqzifoWyps+zlIgbXS6/jvUMZVxD2U4psudPvWsjYw5Q9+HjM0WYdlgl69g9vEyw8w==}
- engines: {node: '>= 8.3.0'}
- peerDependencies:
- html-webpack-plugin: '*'
- webpack: '*'
+ /stackframe/1.2.1:
+ resolution: {integrity: sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==}
+ dev: true
+
+ /stacktrace-parser/0.1.10:
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
dependencies:
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- webpack: 5.70.0_webpack-cli@4.9.2
+ type-fest: 0.7.1
+ dev: true
+
+ /static-extend/0.1.2:
+ resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
dev: true
/statuses/1.5.0:
@@ -7638,6 +8739,16 @@ packages:
engines: {node: '>= 0.6'}
dev: true
+ /statuses/2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /stream-buffers/2.2.0:
+ resolution: {integrity: sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=}
+ engines: {node: '>= 0.10.0'}
+ dev: true
+
/string-natural-compare/3.0.1:
resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
dev: true
@@ -7655,27 +8766,29 @@ packages:
resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
get-intrinsic: 1.1.1
has-symbols: 1.0.3
internal-slot: 1.0.3
- regexp.prototype.flags: 1.4.1
+ regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
dev: true
- /string.prototype.trimend/1.0.4:
- resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==}
+ /string.prototype.trimend/1.0.5:
+ resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /string.prototype.trimstart/1.0.4:
- resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==}
+ /string.prototype.trimstart/1.0.5:
+ resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/string_decoder/1.1.1:
@@ -7697,6 +8810,13 @@ packages:
ansi-regex: 2.1.1
dev: true
+ /strip-ansi/5.2.0:
+ resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-regex: 4.1.1
+ dev: true
+
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -7704,21 +8824,14 @@ packages:
ansi-regex: 5.0.1
dev: true
- /strip-ansi/7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
- engines: {node: '>=12'}
- dependencies:
- ansi-regex: 6.0.1
- dev: true
-
/strip-bom/3.0.0:
resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
engines: {node: '>=4'}
dev: true
- /strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
+ /strip-eof/1.0.0:
+ resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
+ engines: {node: '>=0.10.0'}
dev: true
/strip-json-comments/3.1.1:
@@ -7726,16 +8839,7 @@ packages:
engines: {node: '>=8'}
dev: true
- /style-loader/3.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /styled-components/5.3.3_react-dom@17.0.2+react@17.0.2:
+ /styled-components/5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==}
engines: {node: '>=10'}
peerDependencies:
@@ -7744,7 +8848,7 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.16.7
- '@babel/traverse': 7.17.3_supports-color@5.5.0
+ '@babel/traverse': 7.18.2_supports-color@5.5.0
'@emotion/is-prop-valid': 0.8.8
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
@@ -7753,6 +8857,7 @@ packages:
hoist-non-react-statics: 3.3.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
+ react-is: 18.1.0
shallowequal: 1.1.0
supports-color: 5.5.0
dev: false
@@ -7763,9 +8868,13 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
postcss: 8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
+ dev: true
+
+ /sudo-prompt/9.2.1:
+ resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
dev: true
/supports-color/2.0.0:
@@ -7796,7 +8905,6 @@ packages:
/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- dev: true
/svgo/2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
@@ -7805,21 +8913,13 @@ packages:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
- css-select: 4.2.1
+ css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
picocolors: 1.0.0
stable: 0.1.8
dev: true
- /systemjs-webpack-interop/2.3.7_webpack@5.70.0:
- resolution: {integrity: sha512-9wmhkleKWVjcGfHpc1/YvfADnvzpYMdr2/AM2e7FpMczPYEdluwM3AMXxHGzPUNbWfnSaerrmzqP4nDsTDvBxA==}
- peerDependencies:
- webpack: '*'
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/table/6.8.0:
resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
engines: {node: '>=10.0.0'}
@@ -7844,7 +8944,7 @@ packages:
chokidar: 3.5.3
color-name: 1.1.4
cosmiconfig: 7.0.1
- detective: 5.2.0
+ detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.11
@@ -7854,9 +8954,9 @@ packages:
object-hash: 2.2.0
postcss: 8.4.8
postcss-js: 4.0.0_postcss@8.4.8
- postcss-load-config: 3.1.3
+ postcss-load-config: 3.1.4_postcss@8.4.8
postcss-nested: 5.0.6_postcss@8.4.8
- postcss-selector-parser: 6.0.9
+ postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
resolve: 1.22.0
@@ -7864,72 +8964,77 @@ packages:
- ts-node
dev: true
- /tapable/1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
- dev: true
-
- /tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
- dev: true
-
- /terser-webpack-plugin/5.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
+ /temp/0.8.3:
+ resolution: {integrity: sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=}
+ engines: {'0': node >=0.8.0}
dependencies:
- jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- source-map: 0.6.1
- terser: 5.12.1
- webpack: 5.70.0_webpack-cli@4.9.2
+ os-tmpdir: 1.0.2
+ rimraf: 2.2.8
dev: true
- /terser/5.12.1:
- resolution: {integrity: sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==}
- engines: {node: '>=10'}
- hasBin: true
+ /temp/0.8.4:
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
dependencies:
- acorn: 8.7.0
- commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.21
+ rimraf: 2.6.3
dev: true
/text-table/0.2.0:
resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
dev: true
- /thunky/1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
+ /throat/5.0.0:
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
+ dev: true
+
+ /through2/2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ dependencies:
+ readable-stream: 2.3.7
+ xtend: 4.0.2
dev: true
/tiny-warning/1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
+ /tmpl/1.0.5:
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+ dev: true
+
/to-fast-properties/2.0.0:
resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
engines: {node: '>=4'}
+ /to-object-path/0.3.0:
+ resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /to-regex-range/2.1.1:
+ resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: true
+
/to-regex-range/5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
+
+ /to-regex/3.0.2:
+ resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
dev: true
/toidentifier/1.0.1:
@@ -7937,14 +9042,8 @@ packages:
engines: {node: '>=0.6'}
dev: true
- /totalist/1.1.0:
- resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
- engines: {node: '>=6'}
- dev: true
-
/tr46/0.0.3:
resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=}
- dev: false
/tree-kill/1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
@@ -7955,21 +9054,6 @@ packages:
resolution: {integrity: sha512-zGTozFbnMqdoNCsOJ+gqYSJNIm7QUJtN/3o8uyOCuFxwfrBETQ+lyHnvvgVO29IEVhhrnOp6NQAyOIVE8lmqxA==}
dev: true
- /ts-loader/9.2.8_typescript@4.6.2+webpack@5.70.0:
- resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- typescript: '*'
- webpack: ^5.0.0
- dependencies:
- chalk: 4.1.2
- enhanced-resolve: 5.9.2
- micromatch: 4.0.5
- semver: 7.3.5
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/tsconfig-paths/3.14.1:
resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
dependencies:
@@ -7982,8 +9066,8 @@ packages:
/tslib/1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
+ /tslib/2.4.0:
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
/tsutils/3.21.0_typescript@3.9.10:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -8017,12 +9101,9 @@ packages:
engines: {node: '>=10'}
dev: true
- /type-is/1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
+ /type-fest/0.7.1:
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
dev: true
/typed-styles/0.0.7:
@@ -8041,11 +9122,21 @@ packages:
hasBin: true
dev: true
- /unbox-primitive/1.0.1:
- resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==}
+ /uglify-es/3.3.9:
+ resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==}
+ engines: {node: '>=0.8.0'}
+ deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0
+ hasBin: true
+ dependencies:
+ commander: 2.13.0
+ source-map: 0.6.1
+ dev: true
+
+ /unbox-primitive/1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- function-bind: 1.1.1
- has-bigints: 1.0.1
+ call-bind: 1.0.2
+ has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
dev: true
@@ -8089,6 +9180,16 @@ packages:
engines: {node: '>=4'}
dev: true
+ /union-value/1.0.1:
+ resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: true
+
/universal-cookie/4.0.4:
resolution: {integrity: sha512-lbRVHoOMtItjWbM7TwDLdl8wug7izB0tq3/YVKhT/ahB4VDvWMyvnADfnJI8y6fSvsjh51Ix7lTGC6Tn4rMPhw==}
dependencies:
@@ -8096,9 +9197,9 @@ packages:
cookie: 0.4.2
dev: false
- /universalify/2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
- engines: {node: '>= 10.0.0'}
+ /universalify/0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
dev: true
/unpipe/1.0.0:
@@ -8106,12 +9207,25 @@ packages:
engines: {node: '>= 0.8'}
dev: true
+ /unset-value/1.0.0:
+ resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: true
+
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.1.1
dev: true
+ /urix/0.1.0:
+ resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=}
+ deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: true
+
/url/0.11.0:
resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=}
dependencies:
@@ -8119,12 +9233,22 @@ packages:
querystring: 0.2.0
dev: false
- /util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ /use-subscription/1.5.1_react@17.0.2:
+ resolution: {integrity: sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react: 17.0.2
+ dev: true
+
+ /use/3.1.1:
+ resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ engines: {node: '>=0.10.0'}
dev: true
- /utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
+ /util-deprecate/1.0.2:
+ resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
dev: true
/utils-merge/1.0.1:
@@ -8138,8 +9262,8 @@ packages:
hasBin: true
dev: false
- /uuid/8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ /uuid/7.0.3:
+ resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
dev: true
@@ -8152,6 +9276,49 @@ packages:
engines: {node: '>= 0.8'}
dev: true
+ /vite-plugin-dynamic-import/0.7.1:
+ resolution: {integrity: sha512-Rq8I91rojmxo6y0ZWO9fOCvluEP6yqmmOF0uyD/O9gOWh0KS6IzNjW3MPIqB//qXjXlXbodZOa5P5zz76BYn6A==}
+ dependencies:
+ fast-glob: 3.2.11
+ vite-plugin-utils: 0.1.0
+ dev: false
+
+ /vite-plugin-utils/0.1.0:
+ resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
+ dependencies:
+ acorn-walk: 8.2.0
+ fast-glob: 3.2.11
+ dev: false
+
+ /vite/2.9.9_sass@1.49.9:
+ resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==}
+ engines: {node: '>=12.2.0'}
+ hasBin: true
+ peerDependencies:
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ peerDependenciesMeta:
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ dependencies:
+ esbuild: 0.14.43
+ postcss: 8.4.14
+ resolve: 1.22.0
+ rollup: 2.75.3
+ sass: 1.49.9
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: false
+
+ /vlq/1.0.1:
+ resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
+ dev: true
+
/void-elements/3.1.0:
resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=}
engines: {node: '>=0.10.0'}
@@ -8174,273 +9341,29 @@ packages:
- supports-color
dev: true
+ /walker/1.0.8:
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
+ dependencies:
+ makeerror: 1.0.12
+ dev: true
+
/warning/4.0.3:
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
dependencies:
loose-envify: 1.4.0
dev: false
- /watchpack/2.3.1:
- resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==}
- engines: {node: '>=10.13.0'}
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
- dev: true
-
- /wbuf/1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
+ /wcwidth/1.0.1:
+ resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=}
dependencies:
- minimalistic-assert: 1.0.1
+ defaults: 1.0.3
dev: true
/webidl-conversions/3.0.1:
resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
- dev: false
-
- /webpack-bundle-analyzer/4.5.0:
- resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==}
- engines: {node: '>= 10.13.0'}
- hasBin: true
- dependencies:
- acorn: 8.7.0
- acorn-walk: 8.2.0
- chalk: 4.1.2
- commander: 7.2.0
- gzip-size: 6.0.0
- lodash: 4.17.21
- opener: 1.5.2
- sirv: 1.0.19
- ws: 7.5.7
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- dev: true
-
- /webpack-cli/4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26:
- resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- '@webpack-cli/generators': '*'
- '@webpack-cli/migrate': '*'
- webpack: 4.x.x || 5.x.x
- webpack-bundle-analyzer: '*'
- webpack-dev-server: '*'
- peerDependenciesMeta:
- '@webpack-cli/generators':
- optional: true
- '@webpack-cli/migrate':
- optional: true
- webpack-bundle-analyzer:
- optional: true
- webpack-dev-server:
- optional: true
- dependencies:
- '@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.70.0
- '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2
- '@webpack-cli/serve': 1.6.1_9a0b5ed2553fd0953b975a959afcbb80
- colorette: 2.0.16
- commander: 7.2.0
- execa: 5.1.1
- fastest-levenshtein: 1.0.12
- import-local: 3.1.0
- interpret: 2.2.0
- rechoir: 0.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
- dev: true
-
- /webpack-config-single-spa-react-ts/4.0.3_6ed29217d3dea9188d7e08e233aa8cd3:
- resolution: {integrity: sha512-IgqrVIUKE4kVSVsrFGAa01VaqkycnP0yGy12fRHsgSE07DJBk7It5L+LrfApNC6DDWzNOvUJPZ/ogPMWQ+PaCA==}
- dependencies:
- webpack-config-single-spa-react: 4.0.3_ed870ac3ba52c4ec230ba2bc3dbb311c
- webpack-config-single-spa-ts: 4.1.2_6ed29217d3dea9188d7e08e233aa8cd3
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - eslint
- - utf-8-validate
- - vue-template-compiler
- - webpack
- dev: true
-
- /webpack-config-single-spa-react/4.0.3_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-rKMKWDW74rhlzZASRc0A9Y3KFJoWQEhA9MDcrssjxXgiq6r6BUkj1fXFagXBFCpGUoKyrYDKUSs0uc+8SJJPTA==}
- dependencies:
- webpack-config-single-spa: 5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - utf-8-validate
- - webpack
- dev: true
-
- /webpack-config-single-spa-ts/4.1.2_6ed29217d3dea9188d7e08e233aa8cd3:
- resolution: {integrity: sha512-H7INbFQgu9+H0IAOqsQNw/GljxWDdzwyEoyDJ4818V5RATm7IvcNKBuxEKilKK/LvgVeXB+29ZOOrqowSxBiFQ==}
- dependencies:
- fork-ts-checker-webpack-plugin: 6.5.0_2847fb73abdc24f6b671e90820eac890
- typescript: 4.6.2
- webpack-config-single-spa: 5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c
- webpack-merge: 5.8.0
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - eslint
- - utf-8-validate
- - vue-template-compiler
- - webpack
- dev: true
-
- /webpack-config-single-spa/5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-7GrheBYo5txmOKuRDt5V+8gJzS4y5WR2dqPi/lvQl6uh3xA7vlJSmaBFsYdbA28OC0UfG6fLF6+df+BAk5o25A==}
- dependencies:
- babel-loader: 8.2.4_ed870ac3ba52c4ec230ba2bc3dbb311c
- css-loader: 5.2.7_webpack@5.70.0
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- standalone-single-spa-webpack-plugin: 3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7
- style-loader: 3.3.1_webpack@5.70.0
- systemjs-webpack-interop: 2.3.7_webpack@5.70.0
- webpack-bundle-analyzer: 4.5.0
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - utf-8-validate
- - webpack
- dev: true
-
- /webpack-dev-middleware/5.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 2.0.16
- memfs: 3.4.1
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /webpack-dev-server/4.7.4_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
- peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.13
- '@types/serve-index': 1.9.1
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.3
- ansi-html-community: 0.0.8
- bonjour: 3.5.0
- chokidar: 3.5.3
- colorette: 2.0.16
- compression: 1.7.4
- connect-history-api-fallback: 1.6.0
- default-gateway: 6.0.3
- del: 6.0.0
- express: 4.17.3
- graceful-fs: 4.2.9
- html-entities: 2.3.3
- http-proxy-middleware: 2.0.4_@types+express@4.17.13
- ipaddr.js: 2.0.1
- open: 8.4.0
- p-retry: 4.6.1
- portfinder: 1.0.28
- schema-utils: 4.0.0
- selfsigned: 2.0.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- strip-ansi: 7.0.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-middleware: 5.3.1_webpack@5.70.0
- ws: 8.5.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
- dev: true
-
- /webpack-merge/5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
- engines: {node: '>=10.0.0'}
- dependencies:
- clone-deep: 4.0.1
- wildcard: 2.0.0
- dev: true
-
- /webpack-sources/3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
- dev: true
-
- /webpack/5.70.0_webpack-cli@4.9.2:
- resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.3
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.7.0
- acorn-import-assertions: 1.8.0_acorn@8.7.0
- browserslist: 4.20.2
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.9.2
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
- json-parse-better-errors: 1.0.2
- loader-runner: 4.2.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.1_webpack@5.70.0
- watchpack: 2.3.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: true
-
- /websocket-driver/0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
- dependencies:
- http-parser-js: 0.5.6
- safe-buffer: 5.2.1
- websocket-extensions: 0.1.4
- dev: true
- /websocket-extensions/0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
+ /whatwg-fetch/3.6.2:
+ resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
dev: true
/whatwg-url/5.0.0:
@@ -8448,18 +9371,28 @@ packages:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- dev: false
/which-boxed-primitive/1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
- is-number-object: 1.0.6
+ is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
dev: true
+ /which-module/2.0.0:
+ resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
+ dev: true
+
+ /which/1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+
/which/2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
@@ -8468,15 +9401,20 @@ packages:
isexe: 2.0.0
dev: true
- /wildcard/2.0.0:
- resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- dev: true
-
/word-wrap/1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
dev: true
+ /wrap-ansi/6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
/wrap-ansi/7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -8490,8 +9428,22 @@ packages:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
dev: true
- /ws/7.5.7:
- resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==}
+ /write-file-atomic/2.4.3:
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
+ dependencies:
+ graceful-fs: 4.2.10
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
+ dev: true
+
+ /ws/6.2.2:
+ resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+
+ /ws/7.5.8:
+ resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8503,17 +9455,23 @@ packages:
optional: true
dev: true
- /ws/8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
+ /xcode/3.0.1:
+ resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
+ dependencies:
+ simple-plist: 1.3.1
+ uuid: 7.0.3
+ dev: true
+
+ /xmlbuilder/9.0.7:
+ resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=}
+ engines: {node: '>=4.0'}
+ dev: true
+
+ /xmldoc/1.1.2:
+ resolution: {integrity: sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==}
+ dependencies:
+ sax: 1.2.4
dev: true
/xtend/4.0.2:
@@ -8521,6 +9479,10 @@ packages:
engines: {node: '>=0.4'}
dev: true
+ /y18n/4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: true
+
/y18n/5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -8535,11 +9497,36 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /yargs-parser/18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
/yargs-parser/20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
+ /yargs/15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.0
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+
/yargs/16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
@@ -8564,32 +9551,6 @@ packages:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
dev: false
- node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-ErN8Hkn1p/2XmutGVZXg1WZoJiE=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.img.logo-jp/-/wasedatime.core.assets.img.logo-jp-0.0.1.tgz}
- id: node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1
- name: wasedatime.core.assets.img.logo-jp
- version: 0.0.1
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- dev: false
-
- node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-e0w8cLOvM8t9pildIQVoGODf1pA=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.img.logo/-/wasedatime.core.assets.img.logo-0.0.1.tgz}
- id: node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1
- name: wasedatime.core.assets.img.logo
- version: 0.0.1
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- dev: false
-
node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-a2MtBzbhje+oHJ4Tz+L5B/2n2Qs=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.locales.en/-/wasedatime.core.assets.locales.en-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1
@@ -8634,6 +9595,12 @@ packages:
version: 0.0.4
dev: false
+ node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5:
+ resolution: {integrity: sha1-K7sD8kjDztzqeg0jgeHErLF4mYE=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.5.tgz}
+ name: wasedatime.core.theme.colors
+ version: 0.0.5
+ dev: false
+
node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-Bp87IFStXHsG1iyN/PONMyD5IyM=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.constants.langs/-/wasedatime.core.ts.constants.langs-0.0.5.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5
@@ -8647,7 +9614,7 @@ packages:
react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_react-dom@17.0.2+react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-eXYMnbkdhymg3EBNS9RBSuz1Wbk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.styles.overlay/-/wasedatime.core.ts.styles.overlay-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1
name: wasedatime.core.ts.styles.overlay
@@ -8658,12 +9625,12 @@ packages:
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react-dom@17.0.2+react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-cszBxS3eDqwoxe9Tl162+7hc9Og=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.styles.wrapper/-/wasedatime.core.ts.styles.wrapper-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1
name: wasedatime.core.ts.styles.wrapper
@@ -8674,50 +9641,50 @@ packages:
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha1-N513f00u4H5uGJGt8r66gTuEmUY=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.17.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17
+ node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21_7a2827d49f1d5811fc8b956626d7d656:
+ resolution: {integrity: sha1-G11o7+B0VeSU/zNXhfpuxw2gG3A=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.21.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21
name: wasedatime.core.ts.ui.header
- version: 0.2.17
+ version: 0.2.21
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.4
- '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5_b8fdba992ce7d797017dc07106486496
- '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.theme-toggle': node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5
+ '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6_fadf41a6db0818c2ae4eaa8738b9b4c4
+ '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.ui.theme-toggle': node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_e772c680e5225e7694da1542f10ccf72
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-responsive: 8.2.0_react@17.0.2
- react-router-dom: 6.2.2_react-dom@17.0.2+react@17.0.2
+ react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
- '@types/react'
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha1-YpUkWulbAYIiEI0GiFiP+J7SfNk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.5.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5
+ node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6_fadf41a6db0818c2ae4eaa8738b9b4c4:
+ resolution: {integrity: sha1-2DVMCUn47JdgJXHQBIXv5GI6iUk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.6.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6
name: wasedatime.core.ts.ui.language-menu
- version: 0.1.5
+ version: 0.1.6
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.4
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
'@fortawesome/fontawesome-svg-core': 1.3.0
'@fortawesome/free-solid-svg-icons': 5.15.4
'@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
- '@material-ui/core': 4.12.3_b8fdba992ce7d797017dc07106486496
+ '@material-ui/core': 4.12.4_b8fdba992ce7d797017dc07106486496
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-responsive: 8.2.0_react@17.0.2
@@ -8726,41 +9693,39 @@ packages:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-WqxofSQAwEMlFy7NVlh0RXm+0N0=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.2.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2
+ node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3:
+ resolution: {integrity: sha1-44SvUvzJtH0xwoEOvbiIFMpiSfU=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.5.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5
name: wasedatime.core.ts.ui.loading-spinner
- version: 0.1.2
+ version: 0.1.5
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
'@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.3
- '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-3KGefQPP8se1Blx051dpau3Cmp0=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.0.9.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9
+ node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha1-74P2D7rW83R16bst5QxwLAh4PKI=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.1.2.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2
name: wasedatime.core.ts.ui.logo
- version: 0.0.9
+ version: 0.1.2
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.assets.img.logo': node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.assets.img.logo-jp': node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react-dom@17.0.2+react@17.0.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_react-dom@17.0.2+react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_e772c680e5225e7694da1542f10ccf72:
resolution: {integrity: sha1-YTDn/Cp/YgdPYdeR4APo2mVmyXo=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.theme-toggle/-/wasedatime.core.ts.ui.theme-toggle-0.1.3.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3
name: wasedatime.core.ts.ui.theme-toggle
@@ -8771,14 +9736,14 @@ packages:
dependencies:
'@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.2
'@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17_react@17.0.2
+ '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_8f2a12f93b34591c18c344cd829419b1:
+ node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_4c698a524a9b4026764e85649d37b2b3:
resolution: {integrity: sha1-Mi/S9B83NRoFmQTS6EgSF8Ymqlo=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.i18n/-/wasedatime.core.ts.utils.i18n-0.0.4.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4
name: wasedatime.core.ts.utils.i18n
@@ -8791,17 +9756,17 @@ packages:
'@bit/wasedatime.core.assets.locales.ja': node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1_react-dom@17.0.2+react@17.0.2
'@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2
i18next-browser-languagedetector: 6.1.4
- i18next-http-backend: 1.4.0
+ i18next-http-backend: 1.4.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-i18next: 11.15.6_8f2a12f93b34591c18c344cd829419b1
+ react-i18next: 11.15.6_4c698a524a9b4026764e85649d37b2b3
transitivePeerDependencies:
- encoding
- i18next
- react-native
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-5/QLjuULwrwyclYP8m96BV+Mnq8=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.responsive-utils/-/wasedatime.core.ts.utils.responsive-utils-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1
name: wasedatime.core.ts.utils.responsive-utils
@@ -8812,7 +9777,7 @@ packages:
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.3_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
diff --git a/campus/src/App.tsx b/campus/src/App.tsx
index 9bf50bcd1..60ce6c3a8 100644
--- a/campus/src/App.tsx
+++ b/campus/src/App.tsx
@@ -1,12 +1,13 @@
-import React from "react";
+import React, { lazy } from "react";
import Header from "@bit/wasedatime.core.ts.ui.header";
import { useTranslation } from "react-i18next";
-import Bus from "@app/bus/Bus";
-import RoomFinder from "@app/room/RoomFinder";
import { ThemeContext } from "@app/utils/theme-context";
-import "@app/styles/styles.scss";
+import "@app/styles/wasedatime-campus.scss";
+
+const Bus = lazy(() => import("@app/bus/Bus"));
+const RoomFinder = lazy(() => import("@app/room/RoomFinder"));
const App = () => {
const { t, i18n } = useTranslation();
diff --git a/campus/src/index.html b/campus/src/index.html
new file mode 100644
index 000000000..fd7316e6c
--- /dev/null
+++ b/campus/src/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Vite App
+
+
+
+
+
+
diff --git a/campus/src/room/Building.tsx b/campus/src/room/Building.tsx
index a061085a9..2c68050c4 100644
--- a/campus/src/room/Building.tsx
+++ b/campus/src/room/Building.tsx
@@ -1,7 +1,7 @@
import React from "react";
import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
-import { Accordion, Card, Badge } from "react-bootstrap";
+import { Accordion, Card } from "react-bootstrap";
import { useTranslation } from "react-i18next";
import styled from "styled-components";
@@ -14,10 +14,11 @@ const InfoWrapper = styled("div")`
${media.tablet`padding: 1em;`}
`;
-const RoomType = styled(Badge)`
- font-size: 1.2em;
+const RoomType = styled("span")`
font-weight: 500;
- margin: 5px 10px;
+ margin: 5px;
+ float: left;
+ padding: 0px 10px;
border-radius: 6px;
background-color: ${(props) => (props.vacancy ? "#71CE74" : "#E53935")};
`;
@@ -79,25 +80,29 @@ const Building = ({ campusName, quar, weekday, period }) => {
- {Object.keys(campuses[campusName][buid]).map((roomdata, j) => (
-
- {t("roomFinder.room prefix")}
- {roomdata}
- {t("roomFinder.room suffix")}
-
- ))}
+
+ {Object.keys(campuses[campusName][buid]).map(
+ (roomdata, j) => (
+
+ {t("roomFinder.room prefix")}
+ {roomdata}
+ {t("roomFinder.room suffix")}
+
+ )
+ )}
+
diff --git a/campus/src/room/RoomFinder.tsx b/campus/src/room/RoomFinder.tsx
index 6a8eaa83e..c4a97cdbb 100644
--- a/campus/src/room/RoomFinder.tsx
+++ b/campus/src/room/RoomFinder.tsx
@@ -8,7 +8,7 @@ import {
faTimes,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { Tabs, Tab, Badge } from "react-bootstrap";
+import { Tabs, Tab } from "react-bootstrap";
import DatePicker from "react-datepicker";
import { Helmet } from "react-helmet";
import { useTranslation } from "react-i18next";
@@ -127,19 +127,16 @@ const findPeriod = (totalMins) => {
if (totalMins > 765) return -1;
};
-const RoomType = styled(Badge)`
- font-size: 1em;
+const RoomType = styled("span")`
font-weight: 500;
- margin: 1px 3px 1px 3px;
+ margin: 0px 5px;
+ padding: 0px 5px;
background-color: #e53935;
border-radius: 6px;
`;
-const RoomEmpt = styled(Badge)`
- font-size: 1em;
- font-weight: 500;
- margin: 1px 3px 1px 3px;
+
+const RoomEmpty = styled(RoomType)`
background-color: #71ce74;
- border-radius: 6px;
`;
interface PropsType {
@@ -191,9 +188,9 @@ const RoomFinder = (): JSX.Element => {
{t("roomFinder.Occupied")}
-
+
{t("roomFinder.Available")}
-
+
{t("roomFinder.note")}
diff --git a/campus/src/root.component.test.tsx b/campus/src/root.component.test.tsx
deleted file mode 100644
index cfc396d07..000000000
--- a/campus/src/root.component.test.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-// import React from "react";
-// import { render } from "@testing-library/react";
-// import Root from "./root.component";
-
-// describe("Root component", () => {
-// it("should be in the document", () => {
-// const { getByText } = render();
-// expect(getByText(/Testapp is mounted!/i)).toBeInTheDocument();
-// });
-// });
diff --git a/campus/src/root.component.tsx b/campus/src/root.component.tsx
index 6607e1bed..572bdfb11 100644
--- a/campus/src/root.component.tsx
+++ b/campus/src/root.component.tsx
@@ -1,6 +1,7 @@
-import React, { useEffect } from "react";
+import React, { Suspense, useContext, useEffect } from "react";
import Lang from "@bit/wasedatime.core.ts.constants.langs";
+import LoadingSpinner from "@bit/wasedatime.core.ts.ui.loading-spinner";
import i18nConfig from "@bit/wasedatime.core.ts.utils.i18n";
import i18next from "i18next";
import { useTranslation } from "react-i18next";
@@ -9,7 +10,7 @@ import { BrowserRouter, Routes, Route } from "react-router-dom";
import App from "@app/App";
import translationEN from "@app/constants/locales/en/translation.json";
import translationJA from "@app/constants/locales/ja/translation.json";
-import { ThemeProvider } from "@app/utils/theme-context";
+import { ThemeContext, ThemeProvider } from "@app/utils/theme-context";
i18nConfig({
i18n: i18next,
@@ -19,6 +20,16 @@ i18nConfig({
},
});
+const LoadingSpinnerContainer = () => {
+ const { theme } = useContext(ThemeContext);
+
+ return (
+
+
+
+ );
+};
+
const Root = (props) => {
const { i18n } = useTranslation();
@@ -29,11 +40,13 @@ const Root = (props) => {
return (
-
-
- } path="campus" />
-
-
+ }>
+
+
+ } path="campus" />
+
+
+
);
diff --git a/campus/src/styles/tailwind.css b/campus/src/styles/tailwind.css
deleted file mode 100644
index bd6213e1d..000000000
--- a/campus/src/styles/tailwind.css
+++ /dev/null
@@ -1,3 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
\ No newline at end of file
diff --git a/campus/src/styles/styles.scss b/campus/src/styles/wasedatime-campus.scss
similarity index 50%
rename from campus/src/styles/styles.scss
rename to campus/src/styles/wasedatime-campus.scss
index 272a782ce..f7fb52b76 100644
--- a/campus/src/styles/styles.scss
+++ b/campus/src/styles/wasedatime-campus.scss
@@ -6,6 +6,6 @@
@tailwind utilities;
.campus-container {
- @import "~bootstrap/dist/css/bootstrap.min";
- @import "~react-datepicker/dist/react-datepicker";
+ @import "node_modules/bootstrap/dist/css/bootstrap.min";
+ @import "node_modules/react-datepicker/dist/react-datepicker";
}
\ No newline at end of file
diff --git a/campus/src/wasedatime-campus.tsx b/campus/src/wasedatime-campus.ts
similarity index 100%
rename from campus/src/wasedatime-campus.tsx
rename to campus/src/wasedatime-campus.ts
diff --git a/campus/tsconfig.json b/campus/tsconfig.json
index 3e5c004cc..29fca6a38 100644
--- a/campus/tsconfig.json
+++ b/campus/tsconfig.json
@@ -1,6 +1,22 @@
{
"extends": "ts-config-single-spa",
"compilerOptions": {
+ "importHelpers": true,
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "allowJs": false,
+ "skipLibCheck": false,
+ "esModuleInterop": false,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "ESNext",
+ "types": ["vite/client"],
+ "moduleResolution": "Node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+
"baseUrl": "./src",
"paths": {
"@app/*": ["*"]
@@ -8,5 +24,6 @@
"jsx": "react",
"noEmit": false
},
- "include": ["src"]
+ "include": ["src"],
+ "references": [{ "path": "./tsconfig.node.json" }]
}
diff --git a/campus/tsconfig.node.json b/campus/tsconfig.node.json
new file mode 100644
index 000000000..e993792cb
--- /dev/null
+++ b/campus/tsconfig.node.json
@@ -0,0 +1,8 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "module": "esnext",
+ "moduleResolution": "node"
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/campus/vite.config.ts b/campus/vite.config.ts
new file mode 100644
index 000000000..d6eb3d298
--- /dev/null
+++ b/campus/vite.config.ts
@@ -0,0 +1,42 @@
+import reactRefresh from "@vitejs/plugin-react-refresh";
+import { defineConfig, loadEnv } from "vite";
+import dynamicImport from "vite-plugin-dynamic-import";
+const path = require("path");
+
+export default defineConfig(({ mode }) => {
+ const env = loadEnv(mode, process.cwd() + "/src");
+
+ return {
+ root: "./src",
+ publicDir: "assets",
+ base: env.VITE_PUBLIC_BASE_PATH + "/",
+ rollupOptions: {
+ input: "wasedatime-campus.ts",
+ preserveEntrySignatures: true,
+ },
+ build: {
+ outDir: "../dist",
+ emptyOutDir: true,
+ cssCodeSplit: false,
+ manifest: true,
+ rollupOptions: {
+ input: "./src/wasedatime-campus.ts",
+ preserveEntrySignatures: true,
+ output: {
+ entryFileNames: "[name].js",
+ assetFileNames: "assets/[name].[ext]",
+ },
+ },
+ },
+ resolve: {
+ fullySpecified: false,
+ alias: {
+ "@app": path.resolve(__dirname, "src/"),
+ },
+ modules: ["node_modules"],
+ },
+ plugins: [reactRefresh(), dynamicImport()],
+ assetsInclude: ["**/*.png", "**/*.jpg", "**/*.svg"],
+ envPrefix: ["VITE_", "REACT_APP_"],
+ };
+});
diff --git a/campus/webpack.config.js b/campus/webpack.config.js
deleted file mode 100644
index 90ccf3d40..000000000
--- a/campus/webpack.config.js
+++ /dev/null
@@ -1,49 +0,0 @@
-const path = require("path");
-const { merge } = require("webpack-merge");
-const singleSpaDefaults = require("webpack-config-single-spa-react-ts");
-
-module.exports = (webpackConfigEnv, argv) => {
- const defaultConfig = singleSpaDefaults({
- orgName: "wasedatime",
- projectName: "campus",
- webpackConfigEnv,
- argv,
- });
-
- return merge(defaultConfig, {
- // modify the webpack config however you'd like to by adding to this object
- module: {
- rules: [
- {
- test: /\.(ts|tsx)$/,
- use: "ts-loader",
- resolve: {
- fullySpecified: false,
- alias: {
- "@app": path.resolve(__dirname, "src/"),
- },
- modules: ["node_modules"],
- },
- },
- {
- test: /\.m?js/,
- resolve: {
- fullySpecified: false,
- alias: {
- "@app": path.resolve(__dirname, "src/"),
- },
- modules: ["node_modules"],
- },
- },
- {
- test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|otf|svg)(\?[a-z0-9=.]+)?$/,
- type: "asset/inline",
- },
- {
- test: /\.(css|scss)$/i,
- use: ["style-loader", "css-loader", "postcss-loader", "sass-loader"],
- },
- ],
- },
- });
-};
diff --git a/career/.eslintrc.json b/career/.eslintrc.json
index a01135b12..4347967c3 100644
--- a/career/.eslintrc.json
+++ b/career/.eslintrc.json
@@ -78,7 +78,7 @@
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
- { "devDependencies": ["**/webpack.*.js"], "peerDependencies": true }
+ { "devDependencies": [], "peerDependencies": true }
]
},
"overrides": [
diff --git a/career/package.json b/career/package.json
index 9d0fbf150..89d5bb7ef 100644
--- a/career/package.json
+++ b/career/package.json
@@ -2,11 +2,13 @@
"name": "@wasedatime/career",
"scripts": {
"preinstall": "npx only-allow pnpm",
- "start": "webpack serve --port 8082 --env isLocal",
- "start:standalone": "webpack serve --env standalone",
+ "start": "vite --port 8082",
+ "build": "vite build",
+ "build-dev": "vite build",
+ "preview": "vite preview --port 8082",
+ "preview-dev": "vite preview --port 8082",
+ "tsc": "tsc",
"local": "concurrently --kill-others \"pnpm start\" \"cd ../root && pnpm start\"",
- "build": "webpack --mode=production",
- "analyze": "webpack --mode=production --env analyze",
"fix": "pnpm run format && pnpm run lint:fix",
"lint": "eslint src --ext \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts,tsx}\"",
@@ -20,9 +22,9 @@
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.2",
- "@types/systemjs": "6.1.1",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
+ "@vitejs/plugin-react-refresh": "^1.3.6",
"concurrently": "7.0.0",
"eslint": "8.10.0",
"eslint-config-airbnb": "19.0.4",
@@ -36,19 +38,13 @@
"prettier": "2.5.1",
"prettier-eslint": "13.0.0",
"ts-config-single-spa": "2.0.1",
- "ts-loader": "9.2.8",
"typescript": "4.6.2",
- "webpack": "5.70.0",
- "webpack-cli": "4.9.2",
- "webpack-config-single-spa-react-ts": "4.0.3",
- "webpack-dev-server": "4.7.4",
- "webpack-merge": "5.8.0"
+ "vite": "^2.9.0",
+ "vite-plugin-dynamic-import": "^0.7.0"
},
"dependencies": {
"@types/react": "17.0.39",
"@types/react-dom": "17.0.13",
- "@types/systemjs": "6.1.1",
- "@types/webpack-env": "1.16.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"single-spa-react": "3.2.0"
diff --git a/career/pnpm-lock.yaml b/career/pnpm-lock.yaml
index 72a088a07..64c817c5f 100644
--- a/career/pnpm-lock.yaml
+++ b/career/pnpm-lock.yaml
@@ -10,10 +10,9 @@ specifiers:
'@babel/runtime': 7.17.2
'@types/react': 17.0.39
'@types/react-dom': 17.0.13
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
'@typescript-eslint/eslint-plugin': 5.14.0
'@typescript-eslint/parser': 5.14.0
+ '@vitejs/plugin-react-refresh': ^1.3.6
concurrently: 7.0.0
eslint: 8.10.0
eslint-config-airbnb: 19.0.4
@@ -30,19 +29,13 @@ specifiers:
react-dom: 17.0.2
single-spa-react: 3.2.0
ts-config-single-spa: 2.0.1
- ts-loader: 9.2.8
typescript: 4.6.2
- webpack: 5.70.0
- webpack-cli: 4.9.2
- webpack-config-single-spa-react-ts: 4.0.3
- webpack-dev-server: 4.7.4
- webpack-merge: 5.8.0
+ vite: ^2.9.0
+ vite-plugin-dynamic-import: ^0.7.0
dependencies:
'@types/react': 17.0.39
'@types/react-dom': 17.0.13
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
single-spa-react: 3.2.0_react@17.0.2
@@ -57,6 +50,7 @@ devDependencies:
'@babel/runtime': 7.17.2
'@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
'@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
+ '@vitejs/plugin-react-refresh': 1.3.6
concurrently: 7.0.0
eslint: 8.10.0
eslint-config-airbnb: 19.0.4_d088d899c01a254e9346ef40899b7d56
@@ -70,13 +64,9 @@ devDependencies:
prettier: 2.5.1
prettier-eslint: 13.0.0
ts-config-single-spa: 2.0.1
- ts-loader: 9.2.8_typescript@4.6.2+webpack@5.70.0
typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-config-single-spa-react-ts: 4.0.3_6ed29217d3dea9188d7e08e233aa8cd3
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
+ vite: 2.9.5
+ vite-plugin-dynamic-import: 0.7.1
packages:
@@ -220,7 +210,7 @@ packages:
'@babel/traverse': 7.17.3
debug: 4.3.3
lodash.debounce: 4.0.8
- resolve: 1.20.0
+ resolve: 1.22.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -238,7 +228,7 @@ packages:
'@babel/traverse': 7.17.3
debug: 4.3.3
lodash.debounce: 4.0.8
- resolve: 1.20.0
+ resolve: 1.22.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -414,6 +404,8 @@ packages:
resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.17.0
dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.5:
@@ -1105,6 +1097,26 @@ packages:
'@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
dev: true
+ /@babel/plugin-transform-react-jsx-self/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-oe5VuWs7J9ilH3BCCApGoYjHoSO48vkjX2CbA5bFVhIuO2HKxA3vyF7rleA4o6/4rTDbk6r8hBW7Ul8E+UZrpA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: true
+
/@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.5:
resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==}
engines: {node: '>=6.9.0'}
@@ -1430,11 +1442,6 @@ packages:
to-fast-properties: 2.0.0
dev: true
- /@discoveryjs/json-ext/0.5.6:
- resolution: {integrity: sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==}
- engines: {node: '>=10.0.0'}
- dev: true
-
/@eslint/eslintrc/0.4.3:
resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -1532,89 +1539,22 @@ packages:
fastq: 1.13.0
dev: true
- /@polka/url/1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ /@rollup/pluginutils/4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.0
dev: true
/@rushstack/eslint-patch/1.1.0:
resolution: {integrity: sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A==}
dev: true
- /@types/body-parser/1.19.2:
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
- dependencies:
- '@types/connect': 3.4.35
- '@types/node': 17.0.0
- dev: true
-
- /@types/bonjour/3.5.10:
- resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
- dependencies:
- '@types/node': 17.0.0
- dev: true
-
- /@types/connect-history-api-fallback/1.3.5:
- resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
- dependencies:
- '@types/express-serve-static-core': 4.17.28
- '@types/node': 17.0.0
- dev: true
-
- /@types/connect/3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
- dependencies:
- '@types/node': 17.0.0
- dev: true
-
- /@types/eslint-scope/3.7.3:
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
- dependencies:
- '@types/eslint': 8.2.1
- '@types/estree': 0.0.51
- dev: true
-
/@types/eslint-visitor-keys/1.0.0:
resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
dev: true
- /@types/eslint/8.2.1:
- resolution: {integrity: sha512-UP9rzNn/XyGwb5RQ2fok+DzcIRIYwc16qTXse5+Smsy8MOIccCChT15KAwnsgQx4PzJkaMq4myFyZ4CL5TjhIQ==}
- dependencies:
- '@types/estree': 0.0.51
- '@types/json-schema': 7.0.9
- dev: true
-
- /@types/estree/0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- dev: true
-
- /@types/express-serve-static-core/4.17.28:
- resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
- dependencies:
- '@types/node': 17.0.0
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- dev: true
-
- /@types/express/4.17.13:
- resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==}
- dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.28
- '@types/qs': 6.9.7
- '@types/serve-static': 1.13.10
- dev: true
-
- /@types/html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
- dev: true
-
- /@types/http-proxy/1.17.8:
- resolution: {integrity: sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==}
- dependencies:
- '@types/node': 17.0.0
- dev: true
-
/@types/json-schema/7.0.9:
resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==}
dev: true
@@ -1623,14 +1563,6 @@ packages:
resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
dev: true
- /@types/mime/1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
- dev: true
-
- /@types/node/17.0.0:
- resolution: {integrity: sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw==}
- dev: true
-
/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
@@ -1639,14 +1571,6 @@ packages:
resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
dev: false
- /@types/qs/6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- dev: true
-
- /@types/range-parser/1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- dev: true
-
/@types/react-dom/17.0.13:
resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
dependencies:
@@ -1661,47 +1585,10 @@ packages:
csstype: 3.0.10
dev: false
- /@types/retry/0.12.1:
- resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
- dev: true
-
/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: false
- /@types/serve-index/1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
- dependencies:
- '@types/express': 4.17.13
- dev: true
-
- /@types/serve-static/1.13.10:
- resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==}
- dependencies:
- '@types/mime': 1.3.2
- '@types/node': 17.0.0
- dev: true
-
- /@types/sockjs/0.3.33:
- resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
- dependencies:
- '@types/node': 17.0.0
- dev: true
-
- /@types/systemjs/6.1.1:
- resolution: {integrity: sha512-d1M6eDKBGWx7RbYy295VEFoOF9YDJkPI959QYnmzcmeaV+SP4D0xV7dEh3sN5XF3GvO3PhGzm+17Z598nvHQuQ==}
- dev: false
-
- /@types/webpack-env/1.16.3:
- resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
- dev: false
-
- /@types/ws/8.5.2:
- resolution: {integrity: sha512-VXI82ykONr5tacHEojnErTQk+KQSoYbW1NB6iz6wUwrNd+BqfkfggQNoNdCqhJSzbNumShPERbM+Pc5zpfhlbw==}
- dependencies:
- '@types/node': 17.0.0
- dev: true
-
/@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0:
resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1973,166 +1860,17 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@webassemblyjs/ast/1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- dev: true
-
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- dev: true
-
- /@webassemblyjs/helper-api-error/1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- dev: true
-
- /@webassemblyjs/helper-buffer/1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- dev: true
-
- /@webassemblyjs/helper-numbers/1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- dev: true
-
- /@webassemblyjs/helper-wasm-section/1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- dev: true
-
- /@webassemblyjs/ieee754/1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
- dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
-
- /@webassemblyjs/leb128/1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/utf8/1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- dev: true
-
- /@webassemblyjs/wasm-edit/1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-gen/1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-opt/1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-parser/1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wast-printer/1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==}
- peerDependencies:
- webpack: 4.x.x || 5.x.x
- webpack-cli: 4.x.x
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
-
- /@webpack-cli/info/1.4.1_webpack-cli@4.9.2:
- resolution: {integrity: sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==}
- peerDependencies:
- webpack-cli: 4.x.x
- dependencies:
- envinfo: 7.8.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
-
- /@webpack-cli/serve/1.6.1_9a0b5ed2553fd0953b975a959afcbb80:
- resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==}
- peerDependencies:
- webpack-cli: 4.x.x
- webpack-dev-server: '*'
- peerDependenciesMeta:
- webpack-dev-server:
- optional: true
- dependencies:
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- dev: true
-
- /@xtuc/ieee754/1.2.0:
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- dev: true
-
- /@xtuc/long/4.2.2:
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- dev: true
-
- /accepts/1.3.7:
- resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==}
- engines: {node: '>= 0.6'}
- dependencies:
- mime-types: 2.1.34
- negotiator: 0.6.2
- dev: true
-
- /acorn-import-assertions/1.8.0_acorn@8.7.0:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
+ /@vitejs/plugin-react-refresh/1.3.6:
+ resolution: {integrity: sha512-iNR/UqhUOmFFxiezt0em9CgmiJBdWR+5jGxB2FihaoJfqGt76kiwaKoVOJVU5NYcDWMdN06LbyN2VIGIoYdsEA==}
+ engines: {node: '>=12.0.0'}
dependencies:
- acorn: 8.7.0
+ '@babel/core': 7.17.5
+ '@babel/plugin-transform-react-jsx-self': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.17.5
+ '@rollup/pluginutils': 4.2.1
+ react-refresh: 0.10.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
/acorn-jsx/5.3.2_acorn@7.4.1:
@@ -2168,40 +1906,6 @@ packages:
hasBin: true
dev: true
- /aggregate-error/3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
- dev: true
-
- /ajv-formats/2.1.1:
- resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependenciesMeta:
- ajv:
- optional: true
- dependencies:
- ajv: 8.8.2
- dev: true
-
- /ajv-keywords/3.5.2_ajv@6.12.6:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
- dependencies:
- ajv: 6.12.6
- dev: true
-
- /ajv-keywords/5.1.0_ajv@8.8.2:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
- dependencies:
- ajv: 8.8.2
- fast-deep-equal: 3.1.3
- dev: true
-
/ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
@@ -2225,12 +1929,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /ansi-html-community/0.0.8:
- resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
- dev: true
-
/ansi-regex/2.1.1:
resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
engines: {node: '>=0.10.0'}
@@ -2246,11 +1944,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /ansi-regex/6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
- engines: {node: '>=12'}
- dev: true
-
/ansi-styles/2.2.1:
resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
engines: {node: '>=0.10.0'}
@@ -2270,14 +1963,6 @@ packages:
color-convert: 2.0.1
dev: true
- /anymatch/3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
- engines: {node: '>= 8'}
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.0
- dev: true
-
/argparse/1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
@@ -2296,14 +1981,6 @@ packages:
'@babel/runtime-corejs3': 7.16.5
dev: true
- /array-flatten/1.1.1:
- resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
- dev: true
-
- /array-flatten/2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- dev: true
-
/array-includes/3.1.4:
resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
engines: {node: '>= 0.4'}
@@ -2347,17 +2024,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
- dependencies:
- lodash: 4.17.21
- dev: true
-
- /at-least-node/1.0.0:
- resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
- engines: {node: '>= 4.0.0'}
- dev: true
-
/axe-core/4.3.5:
resolution: {integrity: sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==}
engines: {node: '>=4'}
@@ -2367,21 +2033,6 @@ packages:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-loader/8.2.3_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- '@babel/core': 7.17.5
- find-cache-dir: 3.3.2
- loader-utils: 1.4.0
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/babel-plugin-dynamic-import-node/2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
@@ -2394,7 +2045,7 @@ packages:
dependencies:
'@babel/runtime': 7.17.2
cosmiconfig: 7.0.1
- resolve: 1.20.0
+ resolve: 1.22.0
dev: true
/babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.17.5:
@@ -2447,6 +2098,7 @@ packages:
'@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5
'@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
'@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5
+ '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.5
'@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.5
'@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
'@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
@@ -2464,50 +2116,6 @@ packages:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
- /batch/0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
- dev: true
-
- /big.js/5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- dev: true
-
- /binary-extensions/2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
- engines: {node: '>=8'}
- dev: true
-
- /body-parser/1.19.0:
- resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.0
- content-type: 1.0.4
- debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.7.2
- iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.7.0
- raw-body: 2.4.0
- type-is: 1.6.18
- dev: true
-
- /bonjour/3.5.0:
- resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=}
- dependencies:
- array-flatten: 2.1.2
- deep-equal: 1.1.1
- dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
- dev: true
-
- /boolbase/1.0.0:
- resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
- dev: true
-
/brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -2534,24 +2142,6 @@ packages:
picocolors: 1.0.0
dev: true
- /buffer-from/1.1.2:
- resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- dev: true
-
- /buffer-indexof/1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
- dev: true
-
- /bytes/3.0.0:
- resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
- engines: {node: '>= 0.8'}
- dev: true
-
- /bytes/3.1.0:
- resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==}
- engines: {node: '>= 0.8'}
- dev: true
-
/call-bind/1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
@@ -2564,13 +2154,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /camel-case/4.1.2:
- resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
- dependencies:
- pascal-case: 3.1.2
- tslib: 2.3.1
- dev: true
-
/caniuse-lite/1.0.30001286:
resolution: {integrity: sha512-zaEMRH6xg8ESMi2eQ3R4eZ5qw/hJiVsO/HlLwniIwErij0JDr9P+8V4dtx1l+kLq6j3yy8l8W4fst1lBnat5wQ==}
dev: true
@@ -2608,38 +2191,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /chokidar/3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
- engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.2
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /chrome-trace-event/1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
- engines: {node: '>=6.0'}
- dev: true
-
- /clean-css/5.2.2:
- resolution: {integrity: sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w==}
- engines: {node: '>= 10.0'}
- dependencies:
- source-map: 0.6.1
- dev: true
-
- /clean-stack/2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
- dev: true
-
/cliui/7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
@@ -2648,15 +2199,6 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-deep/4.0.1:
- resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
- engines: {node: '>=6'}
- dependencies:
- is-plain-object: 2.0.4
- kind-of: 6.0.3
- shallow-clone: 3.0.1
- dev: true
-
/color-convert/1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
@@ -2678,55 +2220,13 @@ packages:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
- /colorette/2.0.16:
- resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
- dev: true
-
- /commander/2.20.3:
- resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ /common-tags/1.8.2:
+ resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
+ engines: {node: '>=4.0.0'}
dev: true
- /commander/7.2.0:
- resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
- engines: {node: '>= 10'}
- dev: true
-
- /commander/8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
- dev: true
-
- /common-tags/1.8.2:
- resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
- engines: {node: '>=4.0.0'}
- dev: true
-
- /commondir/1.0.1:
- resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
- dev: true
-
- /compressible/2.0.18:
- resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
- engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.51.0
- dev: true
-
- /compression/1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- accepts: 1.3.7
- bytes: 3.0.0
- compressible: 2.0.18
- debug: 2.6.9
- on-headers: 1.0.2
- safe-buffer: 5.1.2
- vary: 1.1.2
- dev: true
-
- /concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ /concat-map/0.0.1:
+ resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true
/concurrently/7.0.0:
@@ -2748,38 +2248,12 @@ packages:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: true
- /connect-history-api-fallback/1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
- dev: true
-
- /content-disposition/0.5.3:
- resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==}
- engines: {node: '>= 0.6'}
- dependencies:
- safe-buffer: 5.1.2
- dev: true
-
- /content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
- engines: {node: '>= 0.6'}
- dev: true
-
/convert-source-map/1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
dependencies:
safe-buffer: 5.1.2
dev: true
- /cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
- dev: true
-
- /cookie/0.4.0:
- resolution: {integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==}
- engines: {node: '>= 0.6'}
- dev: true
-
/core-js-compat/3.21.1:
resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==}
dependencies:
@@ -2792,21 +2266,6 @@ packages:
requiresBuild: true
dev: true
- /core-util-is/1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- dev: true
-
- /cosmiconfig/6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
- dependencies:
- '@types/parse-json': 4.0.0
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
- dev: true
-
/cosmiconfig/7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
@@ -2827,46 +2286,6 @@ packages:
which: 2.0.2
dev: true
- /css-loader/5.2.7_webpack@5.70.0:
- resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.5
- loader-utils: 2.0.2
- postcss: 8.4.5
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.5
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.5
- postcss-modules-scope: 3.0.0_postcss@8.4.5
- postcss-modules-values: 4.0.0_postcss@8.4.5
- postcss-value-parser: 4.2.0
- schema-utils: 3.1.1
- semver: 7.3.5
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /css-select/4.2.0:
- resolution: {integrity: sha512-6YVG6hsH9yIb/si3Th/is8Pex7qnVHO6t7q7U6TIUnkQASGbS8tnUDBftnPynLNnuUl/r2+PTd0ekiiq7R0zJw==}
- dependencies:
- boolbase: 1.0.0
- css-what: 5.1.0
- domhandler: 4.3.0
- domutils: 2.8.0
- nth-check: 2.0.1
- dev: true
-
- /css-what/5.1.0:
- resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
- engines: {node: '>= 6'}
- dev: true
-
- /cssesc/3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
/csstype/3.0.10:
resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==}
dev: false
@@ -2904,38 +2323,10 @@ packages:
ms: 2.1.2
dev: true
- /deep-equal/1.1.1:
- resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
- dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
- is-regex: 1.1.4
- object-is: 1.1.5
- object-keys: 1.1.1
- regexp.prototype.flags: 1.3.1
- dev: true
-
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /deepmerge/4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /default-gateway/6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
- dependencies:
- execa: 5.1.1
- dev: true
-
- /define-lazy-prop/2.0.0:
- resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
- engines: {node: '>=8'}
- dev: true
-
/define-properties/1.1.3:
resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
engines: {node: '>= 0.4'}
@@ -2943,33 +2334,6 @@ packages:
object-keys: 1.1.1
dev: true
- /del/6.0.0:
- resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==}
- engines: {node: '>=10'}
- dependencies:
- globby: 11.0.4
- graceful-fs: 4.2.9
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
- dev: true
-
- /depd/1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
- engines: {node: '>= 0.6'}
- dev: true
-
- /destroy/1.0.4:
- resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=}
- dev: true
-
- /detect-node/2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
- dev: true
-
/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -2981,23 +2345,6 @@ packages:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: true
- /dns-equal/1.0.0:
- resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
- dev: true
-
- /dns-packet/1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
- dependencies:
- ip: 1.1.5
- safe-buffer: 5.2.1
- dev: true
-
- /dns-txt/2.0.2:
- resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=}
- dependencies:
- buffer-indexof: 1.1.1
- dev: true
-
/doctrine/2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
@@ -3012,54 +2359,6 @@ packages:
esutils: 2.0.3
dev: true
- /dom-converter/0.2.0:
- resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
- dependencies:
- utila: 0.4.0
- dev: true
-
- /dom-serializer/1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
- dependencies:
- domelementtype: 2.2.0
- domhandler: 4.3.0
- entities: 2.2.0
- dev: true
-
- /domelementtype/2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
- dev: true
-
- /domhandler/4.3.0:
- resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==}
- engines: {node: '>= 4'}
- dependencies:
- domelementtype: 2.2.0
- dev: true
-
- /domutils/2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
- domhandler: 4.3.0
- dev: true
-
- /dot-case/3.0.4:
- resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
- dependencies:
- no-case: 3.0.4
- tslib: 2.3.1
- dev: true
-
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- dev: true
-
- /ee-first/1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
- dev: true
-
/electron-to-chromium/1.4.19:
resolution: {integrity: sha512-TeAjwsC/vhvxEtX/xN1JQUMkl+UrwKXlB4rwLyuLYVuBuRtqJJrU4Jy5pCVihMQg4m1ceZ3MEJ0yYuxHj8vC+w==}
dev: true
@@ -3072,24 +2371,6 @@ packages:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
- dev: true
-
- /encodeurl/1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
- engines: {node: '>= 0.8'}
- dev: true
-
- /enhanced-resolve/5.9.2:
- resolution: {integrity: sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==}
- engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.9
- tapable: 2.2.1
- dev: true
-
/enquirer/2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
@@ -3097,16 +2378,6 @@ packages:
ansi-colors: 4.1.1
dev: true
- /entities/2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- dev: true
-
- /envinfo/7.8.1:
- resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
/error-ex/1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
@@ -3139,10 +2410,6 @@ packages:
unbox-primitive: 1.0.1
dev: true
- /es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- dev: true
-
/es-to-primitive/1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
@@ -3152,15 +2419,219 @@ packages:
is-symbol: 1.0.4
dev: true
+ /esbuild-android-64/0.14.34:
+ resolution: {integrity: sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-android-arm64/0.14.34:
+ resolution: {integrity: sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-64/0.14.34:
+ resolution: {integrity: sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-arm64/0.14.34:
+ resolution: {integrity: sha512-vpidSJEBxx6lf1NWgXC+DCmGqesJuZ5Y8aQVVsaoO4i8tRXbXb0whChRvop/zd3nfNM4dIl5EXAky0knRX5I6w==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-64/0.14.34:
+ resolution: {integrity: sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-arm64/0.14.34:
+ resolution: {integrity: sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-32/0.14.34:
+ resolution: {integrity: sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-64/0.14.34:
+ resolution: {integrity: sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-arm/0.14.34:
+ resolution: {integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-arm64/0.14.34:
+ resolution: {integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-mips64le/0.14.34:
+ resolution: {integrity: sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-ppc64le/0.14.34:
+ resolution: {integrity: sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-riscv64/0.14.34:
+ resolution: {integrity: sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-s390x/0.14.34:
+ resolution: {integrity: sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-netbsd-64/0.14.34:
+ resolution: {integrity: sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-openbsd-64/0.14.34:
+ resolution: {integrity: sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-sunos-64/0.14.34:
+ resolution: {integrity: sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-32/0.14.34:
+ resolution: {integrity: sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-64/0.14.34:
+ resolution: {integrity: sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-arm64/0.14.34:
+ resolution: {integrity: sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild/0.14.34:
+ resolution: {integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ esbuild-android-64: 0.14.34
+ esbuild-android-arm64: 0.14.34
+ esbuild-darwin-64: 0.14.34
+ esbuild-darwin-arm64: 0.14.34
+ esbuild-freebsd-64: 0.14.34
+ esbuild-freebsd-arm64: 0.14.34
+ esbuild-linux-32: 0.14.34
+ esbuild-linux-64: 0.14.34
+ esbuild-linux-arm: 0.14.34
+ esbuild-linux-arm64: 0.14.34
+ esbuild-linux-mips64le: 0.14.34
+ esbuild-linux-ppc64le: 0.14.34
+ esbuild-linux-riscv64: 0.14.34
+ esbuild-linux-s390x: 0.14.34
+ esbuild-netbsd-64: 0.14.34
+ esbuild-openbsd-64: 0.14.34
+ esbuild-sunos-64: 0.14.34
+ esbuild-windows-32: 0.14.34
+ esbuild-windows-64: 0.14.34
+ esbuild-windows-arm64: 0.14.34
+ dev: true
+
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
dev: true
- /escape-html/1.0.3:
- resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
- dev: true
-
/escape-string-regexp/1.0.5:
resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
engines: {node: '>=0.8.0'}
@@ -3247,7 +2718,7 @@ packages:
resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
dependencies:
debug: 3.2.7
- resolve: 1.20.0
+ resolve: 1.22.0
dev: true
/eslint-module-utils/2.7.3:
@@ -3603,87 +3074,26 @@ packages:
engines: {node: '>=4.0'}
dev: true
+ /estree-walker/2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: true
+
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
- /etag/1.8.1:
- resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
- engines: {node: '>= 0.6'}
- dev: true
-
- /eventemitter3/4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ /fast-deep-equal/3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
- /events/3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
+ /fast-diff/1.2.0:
+ resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
dev: true
- /execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.6
- strip-final-newline: 2.0.0
- dev: true
-
- /express/4.17.1:
- resolution: {integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- accepts: 1.3.7
- array-flatten: 1.1.1
- body-parser: 1.19.0
- content-disposition: 0.5.3
- content-type: 1.0.4
- cookie: 0.4.0
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 1.1.2
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.1.2
- fresh: 0.5.2
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.3.0
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.7.0
- range-parser: 1.2.1
- safe-buffer: 5.1.2
- send: 0.17.1
- serve-static: 1.14.1
- setprototypeof: 1.1.1
- statuses: 1.5.0
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- dev: true
-
- /fast-deep-equal/3.1.3:
- resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: true
-
- /fast-diff/1.2.0:
- resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
- dev: true
-
- /fast-glob/3.2.7:
- resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==}
- engines: {node: '>=8'}
+ /fast-glob/3.2.11:
+ resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
+ engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
@@ -3700,23 +3110,12 @@ packages:
resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
dev: true
- /fastest-levenshtein/1.0.12:
- resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==}
- dev: true
-
/fastq/1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
dependencies:
reusify: 1.0.4
dev: true
- /faye-websocket/0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
- dependencies:
- websocket-driver: 0.7.4
- dev: true
-
/file-entry-cache/6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -3731,28 +3130,6 @@ packages:
to-regex-range: 5.0.1
dev: true
- /finalhandler/1.1.2:
- resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
- engines: {node: '>= 0.8'}
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.5.0
- unpipe: 1.0.0
- dev: true
-
- /find-cache-dir/3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
- dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
- dev: true
-
/find-up/2.1.0:
resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
engines: {node: '>=4'}
@@ -3760,14 +3137,6 @@ packages:
locate-path: 2.0.0
dev: true
- /find-up/4.1.0:
- resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
- engines: {node: '>=8'}
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
- dev: true
-
/flat-cache/3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -3780,72 +3149,6 @@ packages:
resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==}
dev: true
- /follow-redirects/1.14.6:
- resolution: {integrity: sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: true
-
- /fork-ts-checker-webpack-plugin/6.5.0_2847fb73abdc24f6b671e90820eac890:
- resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.16.7
- '@types/json-schema': 7.0.9
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 6.0.0
- deepmerge: 4.2.2
- eslint: 8.10.0
- fs-extra: 9.1.0
- glob: 7.2.0
- memfs: 3.4.1
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.3.5
- tapable: 1.1.3
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /forwarded/0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
- engines: {node: '>= 0.6'}
- dev: true
-
- /fresh/0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
- engines: {node: '>= 0.6'}
- dev: true
-
- /fs-extra/9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
- dependencies:
- at-least-node: 1.0.0
- graceful-fs: 4.2.9
- jsonfile: 6.1.0
- universalify: 2.0.0
- dev: true
-
- /fs-monkey/1.0.3:
- resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
- dev: true
-
/fs.realpath/1.0.0:
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
dev: true
@@ -3884,11 +3187,6 @@ packages:
has-symbols: 1.0.2
dev: true
- /get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
- dev: true
-
/get-symbol-description/1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
@@ -3911,10 +3209,6 @@ packages:
is-glob: 4.0.3
dev: true
- /glob-to-regexp/0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: true
-
/glob/7.2.0:
resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
dependencies:
@@ -3944,31 +3238,12 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.7
+ fast-glob: 3.2.11
ignore: 5.2.0
merge2: 1.4.1
slash: 3.0.0
dev: true
- /graceful-fs/4.2.8:
- resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==}
- dev: true
-
- /graceful-fs/4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
- dev: true
-
- /gzip-size/6.0.0:
- resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
- engines: {node: '>=10'}
- dependencies:
- duplexer: 0.1.2
- dev: true
-
- /handle-thing/2.0.1:
- resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- dev: true
-
/has-ansi/2.0.0:
resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
engines: {node: '>=0.10.0'}
@@ -4009,150 +3284,6 @@ packages:
function-bind: 1.1.1
dev: true
- /he/1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
- dev: true
-
- /hpack.js/2.1.6:
- resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=}
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.7
- wbuf: 1.7.3
- dev: true
-
- /html-entities/2.3.2:
- resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==}
- dev: true
-
- /html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
- engines: {node: '>=12'}
- hasBin: true
- dependencies:
- camel-case: 4.1.2
- clean-css: 5.2.2
- commander: 8.3.0
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.10.0
- transitivePeerDependencies:
- - acorn
- dev: true
-
- /html-webpack-plugin/5.5.0_webpack@5.70.0:
- resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
- engines: {node: '>=10.13.0'}
- peerDependencies:
- webpack: ^5.20.0
- dependencies:
- '@types/html-minifier-terser': 6.1.0
- html-minifier-terser: 6.1.0
- lodash: 4.17.21
- pretty-error: 4.0.0
- tapable: 2.2.1
- webpack: 5.70.0_webpack-cli@4.9.2
- transitivePeerDependencies:
- - acorn
- dev: true
-
- /htmlparser2/6.1.0:
- resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
- dependencies:
- domelementtype: 2.2.0
- domhandler: 4.3.0
- domutils: 2.8.0
- entities: 2.2.0
- dev: true
-
- /http-deceiver/1.2.7:
- resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=}
- dev: true
-
- /http-errors/1.6.3:
- resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
- dev: true
-
- /http-errors/1.7.2:
- resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
- dev: true
-
- /http-errors/1.7.3:
- resolution: {integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.4
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
- dev: true
-
- /http-parser-js/0.5.5:
- resolution: {integrity: sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==}
- dev: true
-
- /http-proxy-middleware/2.0.1:
- resolution: {integrity: sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@types/http-proxy': 1.17.8
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.4
- transitivePeerDependencies:
- - debug
- dev: true
-
- /http-proxy/1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.14.6
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- dev: true
-
- /human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
- dev: true
-
- /iconv-lite/0.4.24:
- resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- dev: true
-
- /icss-utils/5.1.0_postcss@8.4.5:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.5
- dev: true
-
/ignore/4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
@@ -4171,15 +3302,6 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-local/3.0.3:
- resolution: {integrity: sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- pkg-dir: 4.2.0
- resolve-cwd: 3.0.0
- dev: true
-
/imurmurhash/0.1.4:
resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
engines: {node: '>=0.8.19'}
@@ -4197,10 +3319,6 @@ packages:
wrappy: 1.0.2
dev: true
- /inherits/2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
- dev: true
-
/inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
@@ -4214,33 +3332,6 @@ packages:
side-channel: 1.0.4
dev: true
- /interpret/2.2.0:
- resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
- engines: {node: '>= 0.10'}
- dev: true
-
- /ip/1.1.5:
- resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=}
- dev: true
-
- /ipaddr.js/1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
- engines: {node: '>= 0.10'}
- dev: true
-
- /ipaddr.js/2.0.1:
- resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
- engines: {node: '>= 10'}
- dev: true
-
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
/is-arrayish/0.2.1:
resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
dev: true
@@ -4251,13 +3342,6 @@ packages:
has-bigints: 1.0.1
dev: true
- /is-binary-path/2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
- dependencies:
- binary-extensions: 2.2.0
- dev: true
-
/is-boolean-object/1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
@@ -4277,6 +3361,12 @@ packages:
has: 1.0.3
dev: true
+ /is-core-module/2.8.1:
+ resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==}
+ dependencies:
+ has: 1.0.3
+ dev: true
+
/is-date-object/1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
@@ -4284,12 +3374,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-docker/2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
- dev: true
-
/is-extglob/2.1.1:
resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
engines: {node: '>=0.10.0'}
@@ -4324,28 +3408,6 @@ packages:
engines: {node: '>=0.12.0'}
dev: true
- /is-path-cwd/2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: true
-
- /is-path-inside/3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: true
-
- /is-plain-obj/3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
- dev: true
-
- /is-plain-object/2.0.4:
- resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: true
-
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -4358,11 +3420,6 @@ packages:
resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
dev: true
- /is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
- dev: true
-
/is-string/1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
@@ -4383,35 +3440,10 @@ packages:
call-bind: 1.0.2
dev: true
- /is-wsl/2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
- dev: true
-
- /isarray/1.0.0:
- resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
- dev: true
-
/isexe/2.0.0:
resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
dev: true
- /isobject/3.0.1:
- resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /jest-worker/27.4.5:
- resolution: {integrity: sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/node': 17.0.0
- merge-stream: 2.0.0
- supports-color: 8.1.1
- dev: true
-
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -4441,10 +3473,6 @@ packages:
hasBin: true
dev: true
- /json-parse-better-errors/1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: true
-
/json-parse-even-better-errors/2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
dev: true
@@ -4476,14 +3504,6 @@ packages:
minimist: 1.2.5
dev: true
- /jsonfile/6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- dependencies:
- universalify: 2.0.0
- optionalDependencies:
- graceful-fs: 4.2.9
- dev: true
-
/jsx-ast-utils/3.2.1:
resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
engines: {node: '>=4.0'}
@@ -4492,11 +3512,6 @@ packages:
object.assign: 4.1.2
dev: true
- /kind-of/6.0.3:
- resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/language-subtag-registry/0.3.21:
resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
dev: true
@@ -4519,29 +3534,6 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /loader-runner/4.2.0:
- resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
- engines: {node: '>=6.11.5'}
- dev: true
-
- /loader-utils/1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
- engines: {node: '>=4.0.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 1.0.1
- dev: true
-
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.0
- dev: true
-
/locate-path/2.0.0:
resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
engines: {node: '>=4'}
@@ -4550,13 +3542,6 @@ packages:
path-exists: 3.0.0
dev: true
- /locate-path/5.0.0:
- resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
- engines: {node: '>=8'}
- dependencies:
- p-locate: 4.1.0
- dev: true
-
/lodash.debounce/4.0.8:
resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
dev: true
@@ -4591,12 +3576,6 @@ packages:
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
- resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
- dependencies:
- tslib: 2.3.1
- dev: true
-
/lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
@@ -4604,43 +3583,11 @@ packages:
yallist: 4.0.0
dev: true
- /make-dir/3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
- dependencies:
- semver: 6.3.0
- dev: true
-
- /media-typer/0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
- engines: {node: '>= 0.6'}
- dev: true
-
- /memfs/3.4.1:
- resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==}
- engines: {node: '>= 4.0.0'}
- dependencies:
- fs-monkey: 1.0.3
- dev: true
-
- /merge-descriptors/1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
- dev: true
-
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
-
/merge2/1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
dev: true
- /methods/1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
- engines: {node: '>= 0.6'}
- dev: true
-
/micromatch/4.0.4:
resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==}
engines: {node: '>=8.6'}
@@ -4649,61 +3596,18 @@ packages:
picomatch: 2.3.0
dev: true
- /mime-db/1.51.0:
- resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==}
- engines: {node: '>= 0.6'}
+ /minimatch/3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
dev: true
- /mime-types/2.1.34:
- resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==}
- engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.51.0
+ /minimist/1.2.5:
+ resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
dev: true
- /mime/1.6.0:
- resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
- /mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
- dev: true
-
- /minimalistic-assert/1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- dev: true
-
- /minimatch/3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- dependencies:
- brace-expansion: 1.1.11
- dev: true
-
- /minimist/1.2.5:
- resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
- dev: true
-
- /mkdirp/0.5.5:
- resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
- hasBin: true
- dependencies:
- minimist: 1.2.5
- dev: true
-
- /mrmime/1.0.0:
- resolution: {integrity: sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ==}
- engines: {node: '>=10'}
- dev: true
-
- /ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
- dev: true
-
- /ms/2.1.1:
- resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==}
+ /ms/2.0.0:
+ resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
dev: true
/ms/2.1.2:
@@ -4714,20 +3618,8 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /multicast-dns-service-types/1.1.0:
- resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=}
- dev: true
-
- /multicast-dns/6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
- hasBin: true
- dependencies:
- dns-packet: 1.3.4
- thunky: 1.1.0
- dev: true
-
- /nanoid/3.1.30:
- resolution: {integrity: sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==}
+ /nanoid/3.3.3:
+ resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
@@ -4736,49 +3628,10 @@ packages:
resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
dev: true
- /negotiator/0.6.2:
- resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==}
- engines: {node: '>= 0.6'}
- dev: true
-
- /neo-async/2.6.2:
- resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: true
-
- /no-case/3.0.4:
- resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- dependencies:
- lower-case: 2.0.2
- tslib: 2.3.1
- dev: true
-
- /node-forge/1.2.1:
- resolution: {integrity: sha512-Fcvtbb+zBcZXbTTVwqGA5W+MKBj56UjVRevvchv5XrcyXbmNdesfZL37nlcWOfpgHhgmxApw3tQbTr4CqNmX4w==}
- engines: {node: '>= 6.13.0'}
- dev: true
-
/node-releases/2.0.1:
resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==}
dev: true
- /normalize-path/3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
- dependencies:
- path-key: 3.1.1
- dev: true
-
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
- dependencies:
- boolbase: 1.0.0
- dev: true
-
/object-assign/4.1.1:
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
engines: {node: '>=0.10.0'}
@@ -4787,14 +3640,6 @@ packages:
resolution: {integrity: sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==}
dev: true
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- dev: true
-
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -4844,49 +3689,12 @@ packages:
es-abstract: 1.19.1
dev: true
- /obuf/1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- dev: true
-
- /on-finished/2.3.0:
- resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=}
- engines: {node: '>= 0.8'}
- dependencies:
- ee-first: 1.1.1
- dev: true
-
- /on-headers/1.0.2:
- resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
- engines: {node: '>= 0.8'}
- dev: true
-
/once/1.4.0:
resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
dependencies:
wrappy: 1.0.2
dev: true
- /onetime/5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
- dependencies:
- mimic-fn: 2.1.0
- dev: true
-
- /open/8.4.0:
- resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
- engines: {node: '>=12'}
- dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
- dev: true
-
- /opener/1.5.2:
- resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
- hasBin: true
- dev: true
-
/optionator/0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
@@ -4906,13 +3714,6 @@ packages:
p-try: 1.0.0
dev: true
- /p-limit/2.3.0:
- resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
- engines: {node: '>=6'}
- dependencies:
- p-try: 2.2.0
- dev: true
-
/p-locate/2.0.0:
resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
engines: {node: '>=4'}
@@ -4920,45 +3721,11 @@ packages:
p-limit: 1.3.0
dev: true
- /p-locate/4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
- dependencies:
- p-limit: 2.3.0
- dev: true
-
- /p-map/4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
- dependencies:
- aggregate-error: 3.1.0
- dev: true
-
- /p-retry/4.6.1:
- resolution: {integrity: sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==}
- engines: {node: '>=8'}
- dependencies:
- '@types/retry': 0.12.1
- retry: 0.13.1
- dev: true
-
/p-try/1.0.0:
resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
engines: {node: '>=4'}
dev: true
- /p-try/2.2.0:
- resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
- engines: {node: '>=6'}
- dev: true
-
- /param-case/3.0.4:
- resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
- dependencies:
- dot-case: 3.0.4
- tslib: 2.3.1
- dev: true
-
/parent-module/1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -4976,28 +3743,11 @@ packages:
lines-and-columns: 1.2.4
dev: true
- /parseurl/1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
- engines: {node: '>= 0.8'}
- dev: true
-
- /pascal-case/3.1.2:
- resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
- dependencies:
- no-case: 3.0.4
- tslib: 2.3.1
- dev: true
-
/path-exists/3.0.0:
resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
engines: {node: '>=4'}
dev: true
- /path-exists/4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
- engines: {node: '>=8'}
- dev: true
-
/path-is-absolute/1.0.1:
resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
engines: {node: '>=0.10.0'}
@@ -5012,10 +3762,6 @@ packages:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
dev: true
- /path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
- dev: true
-
/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -5030,82 +3776,13 @@ packages:
engines: {node: '>=8.6'}
dev: true
- /pkg-dir/4.2.0:
- resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
- engines: {node: '>=8'}
- dependencies:
- find-up: 4.1.0
- dev: true
-
- /portfinder/1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
- engines: {node: '>= 0.12.0'}
- dependencies:
- async: 2.6.3
- debug: 3.2.7
- mkdirp: 0.5.5
- dev: true
-
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.5:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.5
- dev: true
-
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.5:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.5
- postcss: 8.4.5
- postcss-selector-parser: 6.0.7
- postcss-value-parser: 4.2.0
- dev: true
-
- /postcss-modules-scope/3.0.0_postcss@8.4.5:
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.5
- postcss-selector-parser: 6.0.7
- dev: true
-
- /postcss-modules-values/4.0.0_postcss@8.4.5:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.5
- postcss: 8.4.5
- dev: true
-
- /postcss-selector-parser/6.0.7:
- resolution: {integrity: sha512-U+b/Deoi4I/UmE6KOVPpnhS7I7AYdKbhGcat+qTQ27gycvaACvNEw11ba6RrkwVmDVRW7sigWgLj4/KbbJjeDA==}
- engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
- dev: true
-
- /postcss-value-parser/4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- dev: true
-
- /postcss/8.4.5:
- resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==}
+ /postcss/8.4.12:
+ resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.1.30
+ nanoid: 3.3.3
picocolors: 1.0.0
- source-map-js: 1.0.1
+ source-map-js: 1.0.2
dev: true
/prelude-ls/1.2.1:
@@ -5146,13 +3823,6 @@ packages:
hasBin: true
dev: true
- /pretty-error/4.0.0:
- resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
- dependencies:
- lodash: 4.17.21
- renderkid: 3.0.0
- dev: true
-
/pretty-format/23.6.0:
resolution: {integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==}
dependencies:
@@ -5160,10 +3830,6 @@ packages:
ansi-styles: 3.2.1
dev: true
- /process-nextick-args/2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- dev: true
-
/progress/2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
@@ -5177,49 +3843,15 @@ packages:
react-is: 16.13.1
dev: true
- /proxy-addr/2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
- dev: true
-
/punycode/2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
dev: true
- /qs/6.7.0:
- resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==}
- engines: {node: '>=0.6'}
- dev: true
-
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
- /randombytes/2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- dependencies:
- safe-buffer: 5.2.1
- dev: true
-
- /range-parser/1.2.1:
- resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
- engines: {node: '>= 0.6'}
- dev: true
-
- /raw-body/2.4.0:
- resolution: {integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.0
- http-errors: 1.7.2
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- dev: true
-
/react-dom/17.0.2_react@17.0.2:
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
@@ -5235,6 +3867,11 @@ packages:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
dev: true
+ /react-refresh/0.10.0:
+ resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/react/17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
@@ -5243,41 +3880,6 @@ packages:
object-assign: 4.1.1
dev: false
- /readable-stream/2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
- dev: true
-
- /readable-stream/3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
- engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
- dev: true
-
- /readdirp/3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
- dependencies:
- picomatch: 2.3.0
- dev: true
-
- /rechoir/0.7.1:
- resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
- engines: {node: '>= 0.10'}
- dependencies:
- resolve: 1.20.0
- dev: true
-
/regenerate-unicode-properties/10.0.1:
resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==}
engines: {node: '>=4'}
@@ -5335,21 +3937,6 @@ packages:
jsesc: 0.5.0
dev: true
- /relateurl/0.2.7:
- resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
- engines: {node: '>= 0.10'}
- dev: true
-
- /renderkid/3.0.0:
- resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
- dependencies:
- css-select: 4.2.0
- dom-converter: 0.2.0
- htmlparser2: 6.1.0
- lodash: 4.17.21
- strip-ansi: 6.0.1
- dev: true
-
/require-directory/2.1.1:
resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
engines: {node: '>=0.10.0'}
@@ -5364,34 +3951,27 @@ packages:
resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=}
dev: true
- /requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
- dev: true
-
- /resolve-cwd/3.0.0:
- resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
- engines: {node: '>=8'}
- dependencies:
- resolve-from: 5.0.0
- dev: true
-
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
dev: true
- /resolve-from/5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
- dev: true
-
/resolve/1.20.0:
resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
dependencies:
- is-core-module: 2.8.0
+ is-core-module: 2.8.1
path-parse: 1.0.7
dev: true
+ /resolve/1.22.0:
+ resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
+ hasBin: true
+ dependencies:
+ is-core-module: 2.8.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ dev: true
+
/resolve/2.0.0-next.3:
resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
dependencies:
@@ -5399,11 +3979,6 @@ packages:
path-parse: 1.0.7
dev: true
- /retry/0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
- dev: true
-
/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -5416,6 +3991,14 @@ packages:
glob: 7.2.0
dev: true
+ /rollup/2.70.2:
+ resolution: {integrity: sha512-EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
@@ -5433,14 +4016,6 @@ packages:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
dev: true
- /safe-buffer/5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: true
-
- /safer-buffer/2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: true
-
/scheduler/0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
@@ -5448,54 +4023,6 @@ packages:
object-assign: 4.1.1
dev: false
- /schema-utils/2.7.0:
- resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.9
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.9
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/json-schema': 7.0.9
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/4.0.0:
- resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
- engines: {node: '>= 12.13.0'}
- dependencies:
- '@types/json-schema': 7.0.9
- ajv: 8.8.2
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.8.2
- dev: true
-
- /select-hose/2.0.0:
- resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
- dev: true
-
- /selfsigned/2.0.0:
- resolution: {integrity: sha512-cUdFiCbKoa1mZ6osuJs2uDHrs0k0oprsKveFiiaBKCNq3SYyb5gs2HxhQyDNLCmL51ZZThqi4YNDpCK6GOP1iQ==}
- engines: {node: '>=10'}
- dependencies:
- node-forge: 1.2.1
- dev: true
-
/semver/6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
@@ -5514,69 +4041,6 @@ packages:
lru-cache: 6.0.0
dev: true
- /send/0.17.1:
- resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 1.7.3
- mime: 1.6.0
- ms: 2.1.1
- on-finished: 2.3.0
- range-parser: 1.2.1
- statuses: 1.5.0
- dev: true
-
- /serialize-javascript/6.0.0:
- resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
- dependencies:
- randombytes: 2.1.0
- dev: true
-
- /serve-index/1.9.1:
- resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
- engines: {node: '>= 0.8.0'}
- dependencies:
- accepts: 1.3.7
- batch: 0.6.1
- debug: 2.6.9
- escape-html: 1.0.3
- http-errors: 1.6.3
- mime-types: 2.1.34
- parseurl: 1.3.3
- dev: true
-
- /serve-static/1.14.1:
- resolution: {integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.17.1
- dev: true
-
- /setprototypeof/1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- dev: true
-
- /setprototypeof/1.1.1:
- resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==}
- dev: true
-
- /shallow-clone/3.0.1:
- resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
- engines: {node: '>=8'}
- dependencies:
- kind-of: 6.0.3
- dev: true
-
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -5597,10 +4061,6 @@ packages:
object-inspect: 1.11.1
dev: true
- /signal-exit/3.0.6:
- resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==}
- dev: true
-
/single-spa-react/3.2.0_react@17.0.2:
resolution: {integrity: sha512-s8K7AuS26WvN9n81z1NBlnZIe/Hin423P8jYLuG/DCNTYo5JbJMS5+Cb/wQd4ikG6YqoedpV4cb7nAcxvlLyhg==}
peerDependencies:
@@ -5609,15 +4069,6 @@ packages:
react: 17.0.2
dev: false
- /sirv/1.0.19:
- resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
- engines: {node: '>= 10'}
- dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.0
- totalist: 1.1.0
- dev: true
-
/slash/3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -5632,91 +4083,24 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /sockjs/0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
- dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
- dev: true
-
- /source-map-js/1.0.1:
- resolution: {integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==}
+ /source-map-js/1.0.2:
+ resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
dev: true
- /source-map-support/0.5.21:
- resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
- dependencies:
- buffer-from: 1.1.2
- source-map: 0.6.1
- dev: true
-
/source-map/0.5.7:
resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
engines: {node: '>=0.10.0'}
dev: true
- /source-map/0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /source-map/0.7.3:
- resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
- engines: {node: '>= 8'}
- dev: true
-
/spawn-command/0.0.2-1:
resolution: {integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=}
dev: true
- /spdy-transport/3.0.0:
- resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
- dependencies:
- debug: 4.3.3
- detect-node: 2.1.0
- hpack.js: 2.1.6
- obuf: 1.1.2
- readable-stream: 3.6.0
- wbuf: 1.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /spdy/4.0.2:
- resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- debug: 4.3.3
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/sprintf-js/1.0.3:
resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
dev: true
- /standalone-single-spa-webpack-plugin/3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7:
- resolution: {integrity: sha512-qj/iVNXMEWlwMnQbhZC7QqzifoWyps+zlIgbXS6/jvUMZVxD2U4psudPvWsjYw5Q9+HjM0WYdlgl69g9vEyw8w==}
- engines: {node: '>= 8.3.0'}
- peerDependencies:
- html-webpack-plugin: '*'
- webpack: '*'
- dependencies:
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /statuses/1.5.0:
- resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
- engines: {node: '>= 0.6'}
- dev: true
-
/string-natural-compare/3.0.1:
resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
dev: true
@@ -5757,18 +4141,6 @@ packages:
define-properties: 1.1.3
dev: true
- /string_decoder/1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
- dependencies:
- safe-buffer: 5.1.2
- dev: true
-
- /string_decoder/1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- dependencies:
- safe-buffer: 5.2.1
- dev: true
-
/strip-ansi/3.0.1:
resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=}
engines: {node: '>=0.10.0'}
@@ -5783,37 +4155,16 @@ packages:
ansi-regex: 5.0.1
dev: true
- /strip-ansi/7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
- engines: {node: '>=12'}
- dependencies:
- ansi-regex: 6.0.1
- dev: true
-
/strip-bom/3.0.0:
resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
engines: {node: '>=4'}
dev: true
- /strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
- dev: true
-
/strip-json-comments/3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: true
- /style-loader/3.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/supports-color/2.0.0:
resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=}
engines: {node: '>=0.8.0'}
@@ -5840,12 +4191,9 @@ packages:
has-flag: 4.0.0
dev: true
- /systemjs-webpack-interop/2.3.7_webpack@5.70.0:
- resolution: {integrity: sha512-9wmhkleKWVjcGfHpc1/YvfADnvzpYMdr2/AM2e7FpMczPYEdluwM3AMXxHGzPUNbWfnSaerrmzqP4nDsTDvBxA==}
- peerDependencies:
- webpack: '*'
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
+ /supports-preserve-symlinks-flag/1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
dev: true
/table/6.7.5:
@@ -5859,81 +4207,10 @@ packages:
strip-ansi: 6.0.1
dev: true
- /tapable/1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
- dev: true
-
- /tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
- dev: true
-
- /terser-webpack-plugin/5.2.5_acorn@8.7.0+webpack@5.70.0:
- resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- jest-worker: 27.4.5
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- source-map: 0.6.1
- terser: 5.10.0_acorn@8.7.0
- webpack: 5.70.0_webpack-cli@4.9.2
- transitivePeerDependencies:
- - acorn
- dev: true
-
- /terser/5.10.0:
- resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==}
- engines: {node: '>=10'}
- hasBin: true
- peerDependencies:
- acorn: ^8.5.0
- peerDependenciesMeta:
- acorn:
- optional: true
- dependencies:
- commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.21
- dev: true
-
- /terser/5.10.0_acorn@8.7.0:
- resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==}
- engines: {node: '>=10'}
- hasBin: true
- peerDependencies:
- acorn: ^8.5.0
- peerDependenciesMeta:
- acorn:
- optional: true
- dependencies:
- acorn: 8.7.0
- commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.21
- dev: true
-
/text-table/0.2.0:
resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
dev: true
- /thunky/1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- dev: true
-
/to-fast-properties/2.0.0:
resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
engines: {node: '>=4'}
@@ -5946,16 +4223,6 @@ packages:
is-number: 7.0.0
dev: true
- /toidentifier/1.0.0:
- resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==}
- engines: {node: '>=0.6'}
- dev: true
-
- /totalist/1.1.0:
- resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
- engines: {node: '>=6'}
- dev: true
-
/tree-kill/1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -5965,21 +4232,6 @@ packages:
resolution: {integrity: sha512-zGTozFbnMqdoNCsOJ+gqYSJNIm7QUJtN/3o8uyOCuFxwfrBETQ+lyHnvvgVO29IEVhhrnOp6NQAyOIVE8lmqxA==}
dev: true
- /ts-loader/9.2.8_typescript@4.6.2+webpack@5.70.0:
- resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- typescript: '*'
- webpack: ^5.0.0
- dependencies:
- chalk: 4.1.2
- enhanced-resolve: 5.9.2
- micromatch: 4.0.4
- semver: 7.3.5
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
/tsconfig-paths/3.12.0:
resolution: {integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==}
dependencies:
@@ -5993,10 +4245,6 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tslib/2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
- dev: true
-
/tsutils/3.21.0_typescript@3.9.10:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
@@ -6029,14 +4277,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /type-is/1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.34
- dev: true
-
/typescript/3.9.10:
resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
engines: {node: '>=4.2.0'}
@@ -6081,327 +4321,69 @@ packages:
engines: {node: '>=4'}
dev: true
- /universalify/2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
- engines: {node: '>= 10.0.0'}
- dev: true
-
- /unpipe/1.0.0:
- resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=}
- engines: {node: '>= 0.8'}
- dev: true
-
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.1.1
dev: true
- /util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
- dev: true
-
- /utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
- dev: true
-
- /utils-merge/1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
- engines: {node: '>= 0.4.0'}
- dev: true
-
- /uuid/8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- hasBin: true
- dev: true
-
/v8-compile-cache/2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /vary/1.1.2:
- resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=}
- engines: {node: '>= 0.8'}
- dev: true
-
- /vue-eslint-parser/7.1.1_eslint@7.32.0:
- resolution: {integrity: sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==}
- engines: {node: '>=8.10'}
- peerDependencies:
- eslint: '>=5.0.0'
- dependencies:
- debug: 4.3.3
- eslint: 7.32.0
- eslint-scope: 5.1.1
- eslint-visitor-keys: 1.3.0
- espree: 6.2.1
- esquery: 1.4.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /watchpack/2.3.1:
- resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==}
- engines: {node: '>=10.13.0'}
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
- dev: true
-
- /wbuf/1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
+ /vite-plugin-dynamic-import/0.7.1:
+ resolution: {integrity: sha512-Rq8I91rojmxo6y0ZWO9fOCvluEP6yqmmOF0uyD/O9gOWh0KS6IzNjW3MPIqB//qXjXlXbodZOa5P5zz76BYn6A==}
dependencies:
- minimalistic-assert: 1.0.1
+ fast-glob: 3.2.11
+ vite-plugin-utils: 0.1.0
dev: true
- /webpack-bundle-analyzer/4.5.0:
- resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==}
- engines: {node: '>= 10.13.0'}
- hasBin: true
+ /vite-plugin-utils/0.1.0:
+ resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
dependencies:
- acorn: 8.7.0
acorn-walk: 8.2.0
- chalk: 4.1.2
- commander: 7.2.0
- gzip-size: 6.0.0
- lodash: 4.17.21
- opener: 1.5.2
- sirv: 1.0.19
- ws: 7.5.6
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
+ fast-glob: 3.2.11
dev: true
- /webpack-cli/4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26:
- resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==}
- engines: {node: '>=10.13.0'}
+ /vite/2.9.5:
+ resolution: {integrity: sha512-dvMN64X2YEQgSXF1lYabKXw3BbN6e+BL67+P3Vy4MacnY+UzT1AfkHiioFSi9+uiDUiaDy7Ax/LQqivk6orilg==}
+ engines: {node: '>=12.2.0'}
hasBin: true
peerDependencies:
- '@webpack-cli/generators': '*'
- '@webpack-cli/migrate': '*'
- webpack: 4.x.x || 5.x.x
- webpack-bundle-analyzer: '*'
- webpack-dev-server: '*'
+ less: '*'
+ sass: '*'
+ stylus: '*'
peerDependenciesMeta:
- '@webpack-cli/generators':
- optional: true
- '@webpack-cli/migrate':
+ less:
optional: true
- webpack-bundle-analyzer:
+ sass:
optional: true
- webpack-dev-server:
+ stylus:
optional: true
dependencies:
- '@discoveryjs/json-ext': 0.5.6
- '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.70.0
- '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2
- '@webpack-cli/serve': 1.6.1_9a0b5ed2553fd0953b975a959afcbb80
- colorette: 2.0.16
- commander: 7.2.0
- execa: 5.1.1
- fastest-levenshtein: 1.0.12
- import-local: 3.0.3
- interpret: 2.2.0
- rechoir: 0.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
- dev: true
-
- /webpack-config-single-spa-react-ts/4.0.3_6ed29217d3dea9188d7e08e233aa8cd3:
- resolution: {integrity: sha512-IgqrVIUKE4kVSVsrFGAa01VaqkycnP0yGy12fRHsgSE07DJBk7It5L+LrfApNC6DDWzNOvUJPZ/ogPMWQ+PaCA==}
- dependencies:
- webpack-config-single-spa-react: 4.0.3_ed870ac3ba52c4ec230ba2bc3dbb311c
- webpack-config-single-spa-ts: 4.1.2_6ed29217d3dea9188d7e08e233aa8cd3
- transitivePeerDependencies:
- - '@babel/core'
- - acorn
- - bufferutil
- - eslint
- - utf-8-validate
- - vue-template-compiler
- - webpack
- dev: true
-
- /webpack-config-single-spa-react/4.0.3_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-rKMKWDW74rhlzZASRc0A9Y3KFJoWQEhA9MDcrssjxXgiq6r6BUkj1fXFagXBFCpGUoKyrYDKUSs0uc+8SJJPTA==}
- dependencies:
- webpack-config-single-spa: 5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c
- transitivePeerDependencies:
- - '@babel/core'
- - acorn
- - bufferutil
- - utf-8-validate
- - webpack
- dev: true
-
- /webpack-config-single-spa-ts/4.1.2_6ed29217d3dea9188d7e08e233aa8cd3:
- resolution: {integrity: sha512-H7INbFQgu9+H0IAOqsQNw/GljxWDdzwyEoyDJ4818V5RATm7IvcNKBuxEKilKK/LvgVeXB+29ZOOrqowSxBiFQ==}
- dependencies:
- fork-ts-checker-webpack-plugin: 6.5.0_2847fb73abdc24f6b671e90820eac890
- typescript: 4.6.2
- webpack-config-single-spa: 5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c
- webpack-merge: 5.8.0
- transitivePeerDependencies:
- - '@babel/core'
- - acorn
- - bufferutil
- - eslint
- - utf-8-validate
- - vue-template-compiler
- - webpack
- dev: true
-
- /webpack-config-single-spa/5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-7GrheBYo5txmOKuRDt5V+8gJzS4y5WR2dqPi/lvQl6uh3xA7vlJSmaBFsYdbA28OC0UfG6fLF6+df+BAk5o25A==}
- dependencies:
- babel-loader: 8.2.3_ed870ac3ba52c4ec230ba2bc3dbb311c
- css-loader: 5.2.7_webpack@5.70.0
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- standalone-single-spa-webpack-plugin: 3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7
- style-loader: 3.3.1_webpack@5.70.0
- systemjs-webpack-interop: 2.3.7_webpack@5.70.0
- webpack-bundle-analyzer: 4.5.0
- transitivePeerDependencies:
- - '@babel/core'
- - acorn
- - bufferutil
- - utf-8-validate
- - webpack
- dev: true
-
- /webpack-dev-middleware/5.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 2.0.16
- memfs: 3.4.1
- mime-types: 2.1.34
- range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /webpack-dev-server/4.7.4_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
- peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.13
- '@types/serve-index': 1.9.1
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.2
- ansi-html-community: 0.0.8
- bonjour: 3.5.0
- chokidar: 3.5.3
- colorette: 2.0.16
- compression: 1.7.4
- connect-history-api-fallback: 1.6.0
- default-gateway: 6.0.3
- del: 6.0.0
- express: 4.17.1
- graceful-fs: 4.2.8
- html-entities: 2.3.2
- http-proxy-middleware: 2.0.1
- ipaddr.js: 2.0.1
- open: 8.4.0
- p-retry: 4.6.1
- portfinder: 1.0.28
- schema-utils: 4.0.0
- selfsigned: 2.0.0
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- strip-ansi: 7.0.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-middleware: 5.3.1_webpack@5.70.0
- ws: 8.5.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
- dev: true
-
- /webpack-merge/5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
- engines: {node: '>=10.0.0'}
- dependencies:
- clone-deep: 4.0.1
- wildcard: 2.0.0
- dev: true
-
- /webpack-sources/3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
+ esbuild: 0.14.34
+ postcss: 8.4.12
+ resolve: 1.22.0
+ rollup: 2.70.2
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
- /webpack/5.70.0_webpack-cli@4.9.2:
- resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==}
- engines: {node: '>=10.13.0'}
- hasBin: true
+ /vue-eslint-parser/7.1.1_eslint@7.32.0:
+ resolution: {integrity: sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==}
+ engines: {node: '>=8.10'}
peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
+ eslint: '>=5.0.0'
dependencies:
- '@types/eslint-scope': 3.7.3
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.7.0
- acorn-import-assertions: 1.8.0_acorn@8.7.0
- browserslist: 4.19.1
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.9.2
- es-module-lexer: 0.9.3
+ debug: 4.3.3
+ eslint: 7.32.0
eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
- json-parse-better-errors: 1.0.2
- loader-runner: 4.2.0
- mime-types: 2.1.34
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0
- watchpack: 2.3.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-sources: 3.2.3
+ eslint-visitor-keys: 1.3.0
+ espree: 6.2.1
+ esquery: 1.4.0
+ lodash: 4.17.21
transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: true
-
- /websocket-driver/0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
- dependencies:
- http-parser-js: 0.5.5
- safe-buffer: 5.2.1
- websocket-extensions: 0.1.4
- dev: true
-
- /websocket-extensions/0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
+ - supports-color
dev: true
/which-boxed-primitive/1.0.2:
@@ -6422,10 +4404,6 @@ packages:
isexe: 2.0.0
dev: true
- /wildcard/2.0.0:
- resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- dev: true
-
/word-wrap/1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
@@ -6444,32 +4422,6 @@ packages:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
dev: true
- /ws/7.5.6:
- resolution: {integrity: sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
-
- /ws/8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
-
/y18n/5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
diff --git a/career/src/index.html b/career/src/index.html
new file mode 100644
index 000000000..20f0ed7b3
--- /dev/null
+++ b/career/src/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Vite App
+
+
+
+
+
+
diff --git a/career/src/wasedatime-career.tsx b/career/src/wasedatime-career.ts
similarity index 100%
rename from career/src/wasedatime-career.tsx
rename to career/src/wasedatime-career.ts
diff --git a/career/tsconfig.json b/career/tsconfig.json
index 3e5c004cc..c1d07bf3c 100644
--- a/career/tsconfig.json
+++ b/career/tsconfig.json
@@ -1,6 +1,21 @@
{
"extends": "ts-config-single-spa",
"compilerOptions": {
+ "importHelpers": true,
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "allowJs": false,
+ "skipLibCheck": false,
+ "esModuleInterop": false,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "ESNext",
+ "moduleResolution": "Node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+
"baseUrl": "./src",
"paths": {
"@app/*": ["*"]
@@ -8,5 +23,6 @@
"jsx": "react",
"noEmit": false
},
- "include": ["src"]
+ "include": ["src"],
+ "references": [{ "path": "./tsconfig.node.json" }]
}
diff --git a/career/tsconfig.node.json b/career/tsconfig.node.json
new file mode 100644
index 000000000..e993792cb
--- /dev/null
+++ b/career/tsconfig.node.json
@@ -0,0 +1,8 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "module": "esnext",
+ "moduleResolution": "node"
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/career/vite.config.ts b/career/vite.config.ts
new file mode 100644
index 000000000..dca49fdcb
--- /dev/null
+++ b/career/vite.config.ts
@@ -0,0 +1,31 @@
+import reactRefresh from "@vitejs/plugin-react-refresh";
+import dynamicImport from "vite-plugin-dynamic-import";
+const path = require("path");
+
+export default {
+ root: "./src",
+ rollupOptions: {
+ input: "wasedatime-career.ts",
+ preserveEntrySignatures: true,
+ },
+ build: {
+ outDir: "../dist",
+ emptyOutDir: true,
+ rollupOptions: {
+ input: "./src/wasedatime-career.ts",
+ preserveEntrySignatures: true,
+ output: {
+ entryFileNames: "wasedatime-career.js",
+ },
+ },
+ },
+ resolve: {
+ fullySpecified: false,
+ alias: {
+ "@app": path.resolve(__dirname, "src/"),
+ },
+ modules: ["node_modules"],
+ },
+ plugins: [reactRefresh(), dynamicImport()],
+ envPrefix: ["VITE_", "REACT_APP_"],
+};
diff --git a/career/webpack.config.js b/career/webpack.config.js
deleted file mode 100644
index 08b3ac64c..000000000
--- a/career/webpack.config.js
+++ /dev/null
@@ -1,52 +0,0 @@
-const path = require("path");
-const { merge } = require("webpack-merge");
-const singleSpaDefaults = require("webpack-config-single-spa-react-ts");
-
-module.exports = (webpackConfigEnv, argv) => {
- const defaultConfig = singleSpaDefaults({
- orgName: "wasedatime",
- projectName: "career",
- webpackConfigEnv,
- argv,
- });
-
- return merge(defaultConfig, {
- // modify the webpack config however you'd like to by adding to this object
- module: {
- rules: [
- {
- test: /\.tsx$/,
- use: "ts-loader",
- resolve: {
- fullySpecified: false,
- alias: {
- "@app": path.resolve(__dirname, "src/"),
- },
- modules: ["node_modules"],
- },
- },
- {
- test: /\.ts$/,
- use: "ts-loader",
- resolve: {
- fullySpecified: false,
- alias: {
- "@app": path.resolve(__dirname, "src/"),
- },
- modules: ["node_modules"],
- },
- },
- {
- test: /\.m?js/,
- resolve: {
- fullySpecified: false,
- alias: {
- "@app": path.resolve(__dirname, "src/"),
- },
- modules: ["node_modules"],
- },
- },
- ],
- },
- });
-};
diff --git a/feeds/package.json b/feeds/package.json
index e171df5a6..fef8282cb 100644
--- a/feeds/package.json
+++ b/feeds/package.json
@@ -8,47 +8,49 @@
"build": "APP_ENV=production next build && next export -o dist/",
"build-dev": "APP_ENV=staging next build && next export -o dist/",
"start-built": "next start",
+ "preview": "APP_ENV=production next start --port 8083",
+ "preview-dev": "APP_ENV=staging next start --port 8083",
"lint": "next lint",
+ "fix": "",
"test": "cross-env BABEL_ENV=test jest",
"format": "prettier --write \"./**\""
},
"dependencies": {
"@bit/wasedatime.core.theme.colors": "0.0.5",
"@bit/wasedatime.core.ts.ui.loading-spinner": "0.1.2",
- "@bit/wasedatime.core.ts.utils.responsive-utils": "npm:wasedatime.core.ts.utils.responsive-utils@^0.0.1",
- "@fortawesome/fontawesome-svg-core": "1.3.0",
- "@material-ui/core": "4.12.3",
+ "@bit/wasedatime.core.ts.utils.responsive-utils": "0.0.1",
+ "@fortawesome/fontawesome-svg-core": "6.1.1",
+ "@material-ui/core": "4.12.4",
"fs": "0.0.1-security",
- "i18next": "19.9.2",
- "i18next-browser-languagedetector": "6.1.3",
- "imagemin-mozjpeg": "9.0.0",
- "imagemin-optipng": "8.0.0",
- "next": "12.1.0",
+ "i18next": "21.8.9",
+ "i18next-browser-languagedetector": "6.1.4",
+ "next": "12.1.6",
"next-compose-plugins": "2.2.1",
"next-optimized-images": "2.6.2",
"path": "0.12.7",
"react": "17.0.2",
"react-dom": "17.0.2",
- "react-markdown": "7.1.2",
- "styled-components": "5.3.3"
+ "react-markdown": "8.0.3",
+ "styled-components": "5.3.5"
},
"devDependencies": {
- "@types/node": "17.0.21",
+ "@types/node": "17.0.41",
"@types/react": "17.0.39",
- "autoprefixer": "^10.4.4",
- "cssnano": "^5.1.5",
- "eslint": "8.10.0",
- "eslint-config-next": "12.1.0",
+ "@types/react-dom": "17.0.13",
+ "autoprefixer": "10.4.7",
+ "cssnano": "5.1.11",
+ "eslint": "8.17.0",
+ "eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-config-ts-react-important-stuff": "3.0.0",
"eslint-plugin-prettier": "4.0.0",
- "img-loader": "^4.0.0",
+ "img-loader": "4.0.0",
"next-transpile-modules": "9.0.0",
- "postcss": "^8.4.12",
+ "postcss": "8.4.14",
"raw-loader": "4.0.2",
- "tailwindcss": "^3.0.23",
- "typescript": "4.6.2",
- "url-loader": "^4.1.1"
+ "tailwindcss": "3.0.24",
+ "typescript": "4.7.3",
+ "url-loader": "4.1.1"
},
"browser": {
"fs": false
diff --git a/feeds/pnpm-lock.yaml b/feeds/pnpm-lock.yaml
index 085bf8d5e..62e83c249 100644
--- a/feeds/pnpm-lock.yaml
+++ b/feeds/pnpm-lock.yaml
@@ -3,237 +3,215 @@ lockfileVersion: 5.3
specifiers:
'@bit/wasedatime.core.theme.colors': 0.0.5
'@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.2
- '@bit/wasedatime.core.ts.utils.responsive-utils': npm:wasedatime.core.ts.utils.responsive-utils@^0.0.1
- '@fortawesome/fontawesome-svg-core': 1.3.0
- '@material-ui/core': 4.12.3
- '@types/node': 17.0.21
+ '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1
+ '@fortawesome/fontawesome-svg-core': 6.1.1
+ '@material-ui/core': 4.12.4
+ '@types/node': 17.0.41
'@types/react': 17.0.39
- autoprefixer: ^10.4.4
- cssnano: ^5.1.5
- eslint: 8.10.0
- eslint-config-next: 12.1.0
+ '@types/react-dom': 17.0.13
+ autoprefixer: 10.4.7
+ cssnano: 5.1.11
+ eslint: 8.17.0
+ eslint-config-next: 12.1.6
eslint-config-prettier: 8.5.0
eslint-config-ts-react-important-stuff: 3.0.0
eslint-plugin-prettier: 4.0.0
fs: 0.0.1-security
- i18next: 19.9.2
- i18next-browser-languagedetector: 6.1.3
- imagemin-mozjpeg: 9.0.0
- imagemin-optipng: 8.0.0
- img-loader: ^4.0.0
- next: 12.1.0
+ i18next: 21.8.9
+ i18next-browser-languagedetector: 6.1.4
+ img-loader: 4.0.0
+ next: 12.1.6
next-compose-plugins: 2.2.1
next-optimized-images: 2.6.2
next-transpile-modules: 9.0.0
path: 0.12.7
- postcss: ^8.4.12
+ postcss: 8.4.14
raw-loader: 4.0.2
react: 17.0.2
react-dom: 17.0.2
- react-markdown: 7.1.2
- styled-components: 5.3.3
- tailwindcss: ^3.0.23
- typescript: 4.6.2
- url-loader: ^4.1.1
+ react-markdown: 8.0.3
+ styled-components: 5.3.5
+ tailwindcss: 3.0.24
+ typescript: 4.7.3
+ url-loader: 4.1.1
dependencies:
'@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5
'@bit/wasedatime.core.ts.ui.loading-spinner': node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@fortawesome/fontawesome-svg-core': 1.3.0
- '@material-ui/core': 4.12.3_b8fdba992ce7d797017dc07106486496
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@fortawesome/fontawesome-svg-core': 6.1.1
+ '@material-ui/core': 4.12.4_b8fdba992ce7d797017dc07106486496
fs: 0.0.1-security
- i18next: 19.9.2
- i18next-browser-languagedetector: 6.1.3
- imagemin-mozjpeg: 9.0.0
- imagemin-optipng: 8.0.0
- next: 12.1.0_react-dom@17.0.2+react@17.0.2
+ i18next: 21.8.9
+ i18next-browser-languagedetector: 6.1.4
+ next: 12.1.6_react-dom@17.0.2+react@17.0.2
next-compose-plugins: 2.2.1
next-optimized-images: 2.6.2
path: 0.12.7
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-markdown: 7.1.2_a0c521d4794c7ad97f5f4c1c4a7d5818
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ react-markdown: 8.0.3_a0c521d4794c7ad97f5f4c1c4a7d5818
+ styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
devDependencies:
- '@types/node': 17.0.21
+ '@types/node': 17.0.41
'@types/react': 17.0.39
- autoprefixer: 10.4.4_postcss@8.4.12
- cssnano: 5.1.5_postcss@8.4.12
- eslint: 8.10.0
- eslint-config-next: 12.1.0_91b99ef72d19920d7e6dded71447bf77
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- eslint-config-ts-react-important-stuff: 3.0.0_eslint@8.10.0
- eslint-plugin-prettier: 4.0.0_49904e051f6c6f73d26c0ee759268562
+ '@types/react-dom': 17.0.13
+ autoprefixer: 10.4.7_postcss@8.4.14
+ cssnano: 5.1.11_postcss@8.4.14
+ eslint: 8.17.0
+ eslint-config-next: 12.1.6_85a02a54f427868067898054ce8dfb78
+ eslint-config-prettier: 8.5.0_eslint@8.17.0
+ eslint-config-ts-react-important-stuff: 3.0.0_eslint@8.17.0
+ eslint-plugin-prettier: 4.0.0_ec1e505292ae08396b4b1e71ab408299
img-loader: 4.0.0
next-transpile-modules: 9.0.0
- postcss: 8.4.12
+ postcss: 8.4.14
raw-loader: 4.0.2
- tailwindcss: 3.0.23_autoprefixer@10.4.4
- typescript: 4.6.2
+ tailwindcss: 3.0.24
+ typescript: 4.7.3
url-loader: 4.1.1
packages:
- /@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
+ /@babel/code-frame/7.18.6:
+ resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.16.10
+ '@babel/highlight': 7.18.6
+ dev: false
- /@babel/generator/7.17.7:
- resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==}
+ /@babel/generator/7.18.7:
+ resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.7
+ '@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
- source-map: 0.5.7
dev: false
- /@babel/helper-annotate-as-pure/7.16.7:
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
+ /@babel/helper-annotate-as-pure/7.18.6:
+ resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.7
dev: false
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
+ /@babel/helper-environment-visitor/7.18.6:
+ resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
dev: false
- /@babel/helper-function-name/7.16.7:
- resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
+ /@babel/helper-function-name/7.18.6:
+ resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-get-function-arity': 7.16.7
- '@babel/template': 7.16.7
- '@babel/types': 7.17.0
+ '@babel/template': 7.18.6
+ '@babel/types': 7.18.7
dev: false
- /@babel/helper-get-function-arity/7.16.7:
- resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
+ /@babel/helper-hoist-variables/7.18.6:
+ resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.7
dev: false
- /@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
+ /@babel/helper-module-imports/7.18.6:
+ resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.7
dev: false
- /@babel/helper-module-imports/7.16.7:
- resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
+ /@babel/helper-split-export-declaration/7.18.6:
+ resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.7
dev: false
- /@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
+ /@babel/helper-validator-identifier/7.18.6:
+ resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
dev: false
- /@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/highlight/7.16.10:
- resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
+ /@babel/highlight/7.18.6:
+ resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.16.7
+ '@babel/helper-validator-identifier': 7.18.6
chalk: 2.4.2
js-tokens: 4.0.0
+ dev: false
- /@babel/parser/7.17.8:
- resolution: {integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==}
+ /@babel/parser/7.18.6:
+ resolution: {integrity: sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==}
engines: {node: '>=6.0.0'}
hasBin: true
dev: false
- /@babel/runtime-corejs3/7.17.8:
- resolution: {integrity: sha512-ZbYSUvoSF6dXZmMl/CYTMOvzIFnbGfv4W3SEHYgMvNsFTeLaF2gkGAF4K2ddmtSK4Emej+0aYcnSC6N5dPCXUQ==}
+ /@babel/runtime-corejs3/7.18.6:
+ resolution: {integrity: sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.21.1
+ core-js-pure: 3.23.3
regenerator-runtime: 0.13.9
dev: true
- /@babel/runtime/7.17.8:
- resolution: {integrity: sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==}
+ /@babel/runtime/7.18.6:
+ resolution: {integrity: sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
- /@babel/template/7.16.7:
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
+ /@babel/template/7.18.6:
+ resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.8
- '@babel/types': 7.17.0
+ '@babel/code-frame': 7.18.6
+ '@babel/parser': 7.18.6
+ '@babel/types': 7.18.7
dev: false
- /@babel/traverse/7.17.3_supports-color@5.5.0:
- resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
+ /@babel/traverse/7.18.6_supports-color@5.5.0:
+ resolution: {integrity: sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.8
- '@babel/types': 7.17.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.18.7
+ '@babel/helper-environment-visitor': 7.18.6
+ '@babel/helper-function-name': 7.18.6
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.18.6
+ '@babel/types': 7.18.7
debug: 4.3.4_supports-color@5.5.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types/7.17.0:
- resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
+ /@babel/types/7.18.7:
+ resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.16.7
+ '@babel/helper-validator-identifier': 7.18.6
to-fast-properties: 2.0.0
dev: false
- /@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-5/QLjuULwrwyclYP8m96BV+Mnq8=, tarball: wasedatime.core.ts.utils.responsive-utils/-/wasedatime.core.ts.utils.responsive-utils-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
- transitivePeerDependencies:
- - react-is
- dev: false
-
/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
dev: false
- /@emotion/is-prop-valid/0.8.8:
- resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+ /@emotion/is-prop-valid/1.1.3:
+ resolution: {integrity: sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==}
dependencies:
- '@emotion/memoize': 0.7.4
+ '@emotion/memoize': 0.7.5
dev: false
- /@emotion/memoize/0.7.4:
- resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+ /@emotion/memoize/0.7.5:
+ resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
dev: false
/@emotion/stylis/0.8.5:
@@ -244,14 +222,14 @@ packages:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
dev: false
- /@eslint/eslintrc/1.2.1:
- resolution: {integrity: sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==}
+ /@eslint/eslintrc/1.3.0:
+ resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.1
- globals: 13.13.0
+ espree: 9.3.2
+ globals: 13.16.0
ignore: 5.2.0
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -261,20 +239,18 @@ packages:
- supports-color
dev: true
- /@fortawesome/fontawesome-common-types/0.3.0:
- resolution: {integrity: sha512-CA3MAZBTxVsF6SkfkHXDerkhcQs0QPofy43eFdbWJJkZiq3SfiaH1msOkac59rQaqto5EqWnASboY1dBuKen5w==}
+ /@fortawesome/fontawesome-common-types/6.1.1:
+ resolution: {integrity: sha512-wVn5WJPirFTnzN6tR95abCx+ocH+3IFLXAgyavnf9hUmN0CfWoDjPT/BAWsUVwSlYYVBeCLJxaqi7ZGe4uSjBA==}
engines: {node: '>=6'}
- deprecated: Please upgrade to 6.1.0. https://fontawesome.com/docs/changelog/
requiresBuild: true
dev: false
- /@fortawesome/fontawesome-svg-core/1.3.0:
- resolution: {integrity: sha512-UIL6crBWhjTNQcONt96ExjUnKt1D68foe3xjEensLDclqQ6YagwCRYVQdrp/hW0ALRp/5Fv/VKw+MqTUWYYvPg==}
+ /@fortawesome/fontawesome-svg-core/6.1.1:
+ resolution: {integrity: sha512-NCg0w2YIp81f4V6cMGD9iomfsIj7GWrqmsa0ZsPh59G7PKiGN1KymZNxmF00ssuAlo/VZmpK6xazsGOwzKYUMg==}
engines: {node: '>=6'}
- deprecated: Please upgrade to 6.1.0. https://fontawesome.com/docs/changelog/
requiresBuild: true
dependencies:
- '@fortawesome/fontawesome-common-types': 0.3.0
+ '@fortawesome/fontawesome-common-types': 6.1.1
dev: false
/@humanwhocodes/config-array/0.9.5:
@@ -292,10 +268,39 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@material-ui/core/4.12.3_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-sdpgI/PL56QVsEJldwEe4FFaFTLUqN+rd7sSZiRCdx2E/C7z5yK0y/khAWVBH24tXwto7I1hCzNWfJGZIYJKnw==}
+ /@jridgewell/gen-mapping/0.3.2:
+ resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/trace-mapping': 0.3.14
+ dev: false
+
+ /@jridgewell/resolve-uri/3.1.0:
+ resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
+ engines: {node: '>=6.0.0'}
+ dev: false
+
+ /@jridgewell/set-array/1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ engines: {node: '>=6.0.0'}
+ dev: false
+
+ /@jridgewell/sourcemap-codec/1.4.14:
+ resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+ dev: false
+
+ /@jridgewell/trace-mapping/0.3.14:
+ resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+ dev: false
+
+ /@material-ui/core/4.12.4_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/material. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -304,14 +309,14 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.8
- '@material-ui/styles': 4.11.4_b8fdba992ce7d797017dc07106486496
- '@material-ui/system': 4.12.1_b8fdba992ce7d797017dc07106486496
+ '@babel/runtime': 7.18.6
+ '@material-ui/styles': 4.11.5_b8fdba992ce7d797017dc07106486496
+ '@material-ui/system': 4.12.2_b8fdba992ce7d797017dc07106486496
'@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
- '@types/react-transition-group': 4.4.4
- clsx: 1.1.1
+ '@types/react-transition-group': 4.4.5
+ clsx: 1.2.1
hoist-non-react-statics: 3.3.2
popper.js: 1.16.1-lts
prop-types: 15.8.1
@@ -321,10 +326,9 @@ packages:
react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2
dev: false
- /@material-ui/styles/4.11.4_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew==}
+ /@material-ui/styles/4.11.5_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/styles. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -333,12 +337,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
'@emotion/hash': 0.8.0
'@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
- clsx: 1.1.1
+ clsx: 1.2.1
csstype: 2.6.20
hoist-non-react-statics: 3.3.2
jss: 10.9.0
@@ -354,10 +358,9 @@ packages:
react-dom: 17.0.2_react@17.0.2
dev: false
- /@material-ui/system/4.12.1_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw==}
+ /@material-ui/system/4.12.2_b8fdba992ce7d797017dc07106486496:
+ resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
engines: {node: '>=8.0.0'}
- deprecated: 'You can now upgrade to @mui/system. See the guide: https://mui.com/guides/migration-v4/'
peerDependencies:
'@types/react': ^16.8.6 || ^17.0.0
react: ^16.8.0 || ^17.0.0
@@ -366,8 +369,8 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.8
- '@material-ui/utils': 4.11.2_react-dom@17.0.2+react@17.0.2
+ '@babel/runtime': 7.18.6
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
'@types/react': 17.0.39
csstype: 2.6.20
prop-types: 15.8.1
@@ -386,14 +389,14 @@ packages:
'@types/react': 17.0.39
dev: false
- /@material-ui/utils/4.11.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==}
+ /@material-ui/utils/4.11.3_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -408,18 +411,27 @@ packages:
glob-to-regexp: 0.3.0
dev: false
- /@next/env/12.1.0:
- resolution: {integrity: sha512-nrIgY6t17FQ9xxwH3jj0a6EOiQ/WDHUos35Hghtr+SWN/ntHIQ7UpuvSi0vaLzZVHQWaDupKI+liO5vANcDeTQ==}
+ /@next/env/12.1.6:
+ resolution: {integrity: sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA==}
dev: false
- /@next/eslint-plugin-next/12.1.0:
- resolution: {integrity: sha512-WFiyvSM2G5cQmh32t/SiQuJ+I2O+FHVlK/RFw5b1565O2kEM/36EXncjt88Pa+X5oSc+1SS+tWxowWJd1lqI+g==}
+ /@next/eslint-plugin-next/12.1.6:
+ resolution: {integrity: sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-android-arm64/12.1.0:
- resolution: {integrity: sha512-/280MLdZe0W03stA69iL+v6I+J1ascrQ6FrXBlXGCsGzrfMaGr7fskMa0T5AhQIVQD4nA/46QQWxG//DYuFBcA==}
+ /@next/swc-android-arm-eabi/12.1.6:
+ resolution: {integrity: sha512-BxBr3QAAAXWgk/K7EedvzxJr2dE014mghBSA9iOEAv0bMgF+MRq4PoASjuHi15M2zfowpcRG8XQhMFtxftCleQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-android-arm64/12.1.6:
+ resolution: {integrity: sha512-EboEk3ROYY7U6WA2RrMt/cXXMokUTXXfnxe2+CU+DOahvbrO8QSWhlBl9I9ZbFzJx28AGB9Yo3oQHCvph/4Lew==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
@@ -427,8 +439,8 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-arm64/12.1.0:
- resolution: {integrity: sha512-R8vcXE2/iONJ1Unf5Ptqjk6LRW3bggH+8drNkkzH4FLEQkHtELhvcmJwkXcuipyQCsIakldAXhRbZmm3YN1vXg==}
+ /@next/swc-darwin-arm64/12.1.6:
+ resolution: {integrity: sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -436,8 +448,8 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64/12.1.0:
- resolution: {integrity: sha512-ieAz0/J0PhmbZBB8+EA/JGdhRHBogF8BWaeqR7hwveb6SYEIJaDNQy0I+ZN8gF8hLj63bEDxJAs/cEhdnTq+ug==}
+ /@next/swc-darwin-x64/12.1.6:
+ resolution: {integrity: sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -445,8 +457,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/12.1.0:
- resolution: {integrity: sha512-njUd9hpl6o6A5d08dC0cKAgXKCzm5fFtgGe6i0eko8IAdtAPbtHxtpre3VeSxdZvuGFh+hb0REySQP9T1ttkog==}
+ /@next/swc-linux-arm-gnueabihf/12.1.6:
+ resolution: {integrity: sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
@@ -454,8 +466,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu/12.1.0:
- resolution: {integrity: sha512-OqangJLkRxVxMhDtcb7Qn1xjzFA3s50EIxY7mljbSCLybU+sByPaWAHY4px97ieOlr2y4S0xdPKkQ3BCAwyo6Q==}
+ /@next/swc-linux-arm64-gnu/12.1.6:
+ resolution: {integrity: sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -463,8 +475,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl/12.1.0:
- resolution: {integrity: sha512-hB8cLSt4GdmOpcwRe2UzI5UWn6HHO/vLkr5OTuNvCJ5xGDwpPXelVkYW/0+C3g5axbDW2Tym4S+MQCkkH9QfWA==}
+ /@next/swc-linux-arm64-musl/12.1.6:
+ resolution: {integrity: sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -472,8 +484,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu/12.1.0:
- resolution: {integrity: sha512-OKO4R/digvrVuweSw/uBM4nSdyzsBV5EwkUeeG4KVpkIZEe64ZwRpnFB65bC6hGwxIBnTv5NMSnJ+0K/WmG78A==}
+ /@next/swc-linux-x64-gnu/12.1.6:
+ resolution: {integrity: sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -481,8 +493,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl/12.1.0:
- resolution: {integrity: sha512-JohhgAHZvOD3rQY7tlp7NlmvtvYHBYgY0x5ZCecUT6eCCcl9lv6iV3nfu82ErkxNk1H893fqH0FUpznZ/H3pSw==}
+ /@next/swc-linux-x64-musl/12.1.6:
+ resolution: {integrity: sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -490,8 +502,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc/12.1.0:
- resolution: {integrity: sha512-T/3gIE6QEfKIJ4dmJk75v9hhNiYZhQYAoYm4iVo1TgcsuaKLFa+zMPh4056AHiG6n9tn2UQ1CFE8EoybEsqsSw==}
+ /@next/swc-win32-arm64-msvc/12.1.6:
+ resolution: {integrity: sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -499,8 +511,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc/12.1.0:
- resolution: {integrity: sha512-iwnKgHJdqhIW19H9PRPM9j55V6RdcOo6rX+5imx832BCWzkDbyomWnlzBfr6ByUYfhohb8QuH4hSGEikpPqI0Q==}
+ /@next/swc-win32-ia32-msvc/12.1.6:
+ resolution: {integrity: sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -508,8 +520,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc/12.1.0:
- resolution: {integrity: sha512-aBvcbMwuanDH4EMrL2TthNJy+4nP59Bimn8egqv6GHMVj0a44cU6Au4PjOhLNqEh9l+IpRGBqMTzec94UdC5xg==}
+ /@next/swc-win32-x64-msvc/12.1.6:
+ resolution: {integrity: sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -543,15 +555,10 @@ packages:
fastq: 1.13.0
dev: true
- /@rushstack/eslint-patch/1.1.1:
- resolution: {integrity: sha512-BUyKJGdDWqvWC5GEhyOiUrGNi9iJUr4CU0O2WxJL6QJhHeeA/NVBalH+FeK0r/x/W0rPymXt5s78TDS7d6lCwg==}
+ /@rushstack/eslint-patch/1.1.4:
+ resolution: {integrity: sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==}
dev: true
- /@sindresorhus/is/0.7.0:
- resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==}
- engines: {node: '>=4'}
- dev: false
-
/@trysound/sax/0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -574,7 +581,7 @@ packages:
dev: true
/@types/json5/0.0.29:
- resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
/@types/mdast/3.0.10:
@@ -591,19 +598,21 @@ packages:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: false
- /@types/node/17.0.21:
- resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==}
+ /@types/node/17.0.41:
+ resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==}
dev: true
- /@types/parse-json/4.0.0:
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- dev: true
+ /@types/prop-types/15.7.5:
+ resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/prop-types/15.7.4:
- resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
+ /@types/react-dom/17.0.13:
+ resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
+ dependencies:
+ '@types/react': 17.0.39
+ dev: true
- /@types/react-transition-group/4.4.4:
- resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==}
+ /@types/react-transition-group/4.4.5:
+ resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==}
dependencies:
'@types/react': 17.0.39
dev: false
@@ -611,9 +620,9 @@ packages:
/@types/react/17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
dependencies:
- '@types/prop-types': 15.7.4
+ '@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.0.11
+ csstype: 3.1.0
/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
@@ -622,8 +631,8 @@ packages:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: false
- /@typescript-eslint/parser/5.16.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-fkDq86F0zl8FicnJtdXakFs4lnuebH6ZADDw6CYQv0UZeIjHvmEw87m9/29nk2Dv5Lmdp0zQ3zDQhiMWQf/GbA==}
+ /@typescript-eslint/parser/5.30.5_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -632,31 +641,31 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.16.0
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/typescript-estree': 5.16.0_typescript@4.6.2
+ '@typescript-eslint/scope-manager': 5.30.5
+ '@typescript-eslint/types': 5.30.5
+ '@typescript-eslint/typescript-estree': 5.30.5_typescript@4.7.3
debug: 4.3.4
- eslint: 8.10.0
- typescript: 4.6.2
+ eslint: 8.17.0
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.16.0:
- resolution: {integrity: sha512-P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ==}
+ /@typescript-eslint/scope-manager/5.30.5:
+ resolution: {integrity: sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/visitor-keys': 5.16.0
+ '@typescript-eslint/types': 5.30.5
+ '@typescript-eslint/visitor-keys': 5.30.5
dev: true
- /@typescript-eslint/types/5.16.0:
- resolution: {integrity: sha512-oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g==}
+ /@typescript-eslint/types/5.30.5:
+ resolution: {integrity: sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.16.0_typescript@4.6.2:
- resolution: {integrity: sha512-SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ==}
+ /@typescript-eslint/typescript-estree/5.30.5_typescript@4.7.3:
+ resolution: {integrity: sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -664,32 +673,32 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.16.0
- '@typescript-eslint/visitor-keys': 5.16.0
+ '@typescript-eslint/types': 5.30.5
+ '@typescript-eslint/visitor-keys': 5.30.5
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ semver: 7.3.7
+ tsutils: 3.21.0_typescript@4.7.3
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/visitor-keys/5.16.0:
- resolution: {integrity: sha512-jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g==}
+ /@typescript-eslint/visitor-keys/5.30.5:
+ resolution: {integrity: sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.16.0
+ '@typescript-eslint/types': 5.30.5
eslint-visitor-keys: 3.3.0
dev: true
- /acorn-jsx/5.3.2_acorn@8.7.0:
+ /acorn-jsx/5.3.2_acorn@8.7.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.7.0
+ acorn: 8.7.1
dev: true
/acorn-node/1.8.2:
@@ -711,8 +720,8 @@ packages:
hasBin: true
dev: true
- /acorn/8.7.0:
- resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==}
+ /acorn/8.7.1:
+ resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
@@ -750,6 +759,7 @@ packages:
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
+ dev: false
/ansi-styles/4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
@@ -766,19 +776,8 @@ packages:
picomatch: 2.3.1
dev: true
- /arch/2.2.0:
- resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
- dev: false
-
- /archive-type/4.0.0:
- resolution: {integrity: sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=}
- engines: {node: '>=4'}
- dependencies:
- file-type: 4.4.0
- dev: false
-
- /arg/5.0.1:
- resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==}
+ /arg/5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: true
/argparse/2.0.1:
@@ -789,12 +788,12 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.17.8
- '@babel/runtime-corejs3': 7.17.8
+ '@babel/runtime': 7.18.6
+ '@babel/runtime-corejs3': 7.18.6
dev: true
/arr-diff/4.0.0:
- resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=}
+ resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
dev: false
@@ -804,23 +803,23 @@ packages:
dev: false
/arr-union/3.1.0:
- resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=}
+ resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
dev: false
- /array-includes/3.1.4:
- resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
+ /array-includes/3.1.5:
+ resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- get-intrinsic: 1.1.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ get-intrinsic: 1.1.2
is-string: 1.0.7
dev: true
/array-union/1.0.2:
- resolution: {integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=}
+ resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
engines: {node: '>=0.10.0'}
dependencies:
array-uniq: 1.0.3
@@ -832,45 +831,47 @@ packages:
dev: true
/array-uniq/1.0.3:
- resolution: {integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=}
+ resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
engines: {node: '>=0.10.0'}
dev: false
/array-unique/0.3.2:
- resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=}
+ resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
dev: false
- /array.prototype.flat/1.2.5:
- resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==}
+ /array.prototype.flat/1.3.0:
+ resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap/1.2.5:
- resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==}
+ /array.prototype.flatmap/1.3.0:
+ resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ es-shim-unscopables: 1.0.0
dev: true
/arrify/1.0.1:
- resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=}
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
dev: false
/assign-symbols/1.0.0:
- resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=}
+ resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
engines: {node: '>=0.10.0'}
dev: false
/ast-types-flow/0.0.7:
- resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
/atob/2.1.2:
@@ -879,46 +880,46 @@ packages:
hasBin: true
dev: false
- /autoprefixer/10.4.4_postcss@8.4.12:
- resolution: {integrity: sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==}
+ /autoprefixer/10.4.7_postcss@8.4.14:
+ resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001320
+ browserslist: 4.21.1
+ caniuse-lite: 1.0.30001363
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /axe-core/4.4.1:
- resolution: {integrity: sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==}
- engines: {node: '>=4'}
+ /axe-core/4.4.2:
+ resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==}
+ engines: {node: '>=12'}
dev: true
/axobject-query/2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-plugin-styled-components/2.0.6_styled-components@5.3.3:
- resolution: {integrity: sha512-Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg==}
+ /babel-plugin-styled-components/2.0.7_styled-components@5.3.5:
+ resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==}
peerDependencies:
styled-components: '>= 2'
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.18.6
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
dev: false
/babel-plugin-syntax-jsx/6.18.0:
- resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=}
+ resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
dev: false
/bail/2.0.2:
@@ -941,75 +942,16 @@ packages:
pascalcase: 0.1.1
dev: false
- /base64-js/1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: false
-
/big.js/5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /bin-build/3.0.0:
- resolution: {integrity: sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==}
- engines: {node: '>=4'}
- dependencies:
- decompress: 4.2.1
- download: 6.2.5
- execa: 0.7.0
- p-map-series: 1.0.0
- tempfile: 2.0.0
- dev: false
-
- /bin-check/4.1.0:
- resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==}
- engines: {node: '>=4'}
- dependencies:
- execa: 0.7.0
- executable: 4.1.1
- dev: false
-
- /bin-version-check/4.0.0:
- resolution: {integrity: sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==}
- engines: {node: '>=6'}
- dependencies:
- bin-version: 3.1.0
- semver: 5.7.1
- semver-truncate: 1.1.2
- dev: false
-
- /bin-version/3.1.0:
- resolution: {integrity: sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==}
- engines: {node: '>=6'}
- dependencies:
- execa: 1.0.0
- find-versions: 3.2.0
- dev: false
-
- /bin-wrapper/4.1.0:
- resolution: {integrity: sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==}
- engines: {node: '>=6'}
- dependencies:
- bin-check: 4.1.0
- bin-version-check: 4.0.0
- download: 7.1.0
- import-lazy: 3.1.0
- os-filter-obj: 2.0.0
- pify: 4.0.1
- dev: false
-
/binary-extensions/2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: true
- /bl/1.2.3:
- resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
- dependencies:
- readable-stream: 2.3.7
- safe-buffer: 5.2.1
- dev: false
-
/boolbase/1.0.0:
- resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
/brace-expansion/1.1.11:
@@ -1041,44 +983,17 @@ packages:
fill-range: 7.0.1
dev: true
- /browserslist/4.20.2:
- resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==}
+ /browserslist/4.21.1:
+ resolution: {integrity: sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001320
- electron-to-chromium: 1.4.95
- escalade: 3.1.1
- node-releases: 2.0.2
- picocolors: 1.0.0
+ caniuse-lite: 1.0.30001363
+ electron-to-chromium: 1.4.180
+ node-releases: 2.0.5
+ update-browserslist-db: 1.0.4_browserslist@4.21.1
dev: true
- /buffer-alloc-unsafe/1.1.0:
- resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==}
- dev: false
-
- /buffer-alloc/1.2.0:
- resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==}
- dependencies:
- buffer-alloc-unsafe: 1.1.0
- buffer-fill: 1.0.0
- dev: false
-
- /buffer-crc32/0.2.13:
- resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=}
- dev: false
-
- /buffer-fill/1.0.0:
- resolution: {integrity: sha1-+PeLdniYiO858gXNY39o5wISKyw=}
- dev: false
-
- /buffer/5.7.1:
- resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- dev: false
-
/cache-base/1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
@@ -1094,27 +1009,15 @@ packages:
unset-value: 1.0.0
dev: false
- /cacheable-request/2.1.4:
- resolution: {integrity: sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=}
- dependencies:
- clone-response: 1.0.2
- get-stream: 3.0.0
- http-cache-semantics: 3.8.1
- keyv: 3.0.0
- lowercase-keys: 1.0.0
- normalize-url: 2.0.1
- responselike: 1.0.2
- dev: false
-
/call-bind/1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
dev: true
/call-me-maybe/1.0.1:
- resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=}
+ resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==}
dev: false
/callsites/3.1.0:
@@ -1128,30 +1031,20 @@ packages:
dev: true
/camelize/1.0.0:
- resolution: {integrity: sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=}
+ resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==}
dev: false
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001320
+ browserslist: 4.21.1
+ caniuse-lite: 1.0.30001363
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001320:
- resolution: {integrity: sha512-MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA==}
-
- /caw/2.0.1:
- resolution: {integrity: sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==}
- engines: {node: '>=4'}
- dependencies:
- get-proxy: 2.1.0
- isurl: 1.0.0
- tunnel-agent: 0.6.0
- url-to-options: 1.0.1
- dev: false
+ /caniuse-lite/1.0.30001363:
+ resolution: {integrity: sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==}
/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -1160,6 +1053,7 @@ packages:
ansi-styles: 3.2.1
escape-string-regexp: 1.0.5
supports-color: 5.5.0
+ dev: false
/chalk/4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
@@ -1169,8 +1063,8 @@ packages:
supports-color: 7.2.0
dev: true
- /character-entities/2.0.1:
- resolution: {integrity: sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==}
+ /character-entities/2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
dev: false
/chokidar/3.5.3:
@@ -1198,19 +1092,13 @@ packages:
static-extend: 0.1.2
dev: false
- /clone-response/1.0.2:
- resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=}
- dependencies:
- mimic-response: 1.0.1
- dev: false
-
- /clsx/1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
+ /clsx/1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
/collection-visit/1.0.0:
- resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=}
+ resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
engines: {node: '>=0.10.0'}
dependencies:
map-visit: 1.0.0
@@ -1221,6 +1109,7 @@ packages:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
+ dev: false
/color-convert/2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
@@ -1230,7 +1119,8 @@ packages:
dev: true
/color-name/1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+ dev: false
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -1244,10 +1134,6 @@ packages:
resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==}
dev: false
- /commander/2.20.3:
- resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- dev: false
-
/commander/7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -1260,64 +1146,16 @@ packages:
/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
- /config-chain/1.1.13:
- resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- dependencies:
- ini: 1.3.8
- proto-list: 1.2.4
- dev: false
-
- /content-disposition/0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
- dependencies:
- safe-buffer: 5.2.1
- dev: false
-
/copy-descriptor/0.1.1:
- resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=}
+ resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
dev: false
- /core-js-pure/3.21.1:
- resolution: {integrity: sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==}
+ /core-js-pure/3.23.3:
+ resolution: {integrity: sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==}
requiresBuild: true
dev: true
- /core-util-is/1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- dev: false
-
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
- engines: {node: '>=10'}
- dependencies:
- '@types/parse-json': 4.0.0
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
- dev: true
-
- /cross-spawn/5.1.0:
- resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=}
- dependencies:
- lru-cache: 4.1.5
- shebang-command: 1.2.0
- which: 1.3.1
- dev: false
-
- /cross-spawn/6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.1
- shebang-command: 1.2.0
- which: 1.3.1
- dev: false
-
/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -1325,29 +1163,30 @@ packages:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
+ dev: true
/css-color-keywords/1.0.0:
- resolution: {integrity: sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=}
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
dev: false
- /css-declaration-sorter/6.2.1_postcss@8.4.12:
- resolution: {integrity: sha512-4qvWVSwnc5f1ZxCe80LccU5aenhZdhuCCyaOSMhr3dDAOTXtJNfAvthW+5x0UV4k1pWzE1EwNk4ztSDCk6WzKw==}
+ /css-declaration-sorter/6.3.0_postcss@8.4.14:
+ resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /css-select/4.2.1:
- resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==}
+ /css-select/4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
- css-what: 5.1.0
+ css-what: 6.1.0
domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
+ nth-check: 2.1.1
dev: true
/css-to-react-native/3.0.0:
@@ -1369,12 +1208,12 @@ packages:
/css-vendor/2.0.8:
resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
is-in-browser: 1.1.3
dev: false
- /css-what/5.1.0:
- resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
+ /css-what/6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
@@ -1384,62 +1223,62 @@ packages:
hasBin: true
dev: true
- /cssnano-preset-default/5.2.5_postcss@8.4.12:
- resolution: {integrity: sha512-WopL7PzN7sos3X8B54/QGl+CZUh1f0qN4ds+y2d5EPwRSSc3jsitVw81O+Uyop0pXyOfPfZxnc+LmA8w/Ki/WQ==}
+ /cssnano-preset-default/5.2.12_postcss@8.4.14:
+ resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.2.1_postcss@8.4.12
- cssnano-utils: 3.1.0_postcss@8.4.12
- postcss: 8.4.12
- postcss-calc: 8.2.4_postcss@8.4.12
- postcss-colormin: 5.3.0_postcss@8.4.12
- postcss-convert-values: 5.1.0_postcss@8.4.12
- postcss-discard-comments: 5.1.1_postcss@8.4.12
- postcss-discard-duplicates: 5.1.0_postcss@8.4.12
- postcss-discard-empty: 5.1.1_postcss@8.4.12
- postcss-discard-overridden: 5.1.0_postcss@8.4.12
- postcss-merge-longhand: 5.1.3_postcss@8.4.12
- postcss-merge-rules: 5.1.1_postcss@8.4.12
- postcss-minify-font-values: 5.1.0_postcss@8.4.12
- postcss-minify-gradients: 5.1.1_postcss@8.4.12
- postcss-minify-params: 5.1.2_postcss@8.4.12
- postcss-minify-selectors: 5.2.0_postcss@8.4.12
- postcss-normalize-charset: 5.1.0_postcss@8.4.12
- postcss-normalize-display-values: 5.1.0_postcss@8.4.12
- postcss-normalize-positions: 5.1.0_postcss@8.4.12
- postcss-normalize-repeat-style: 5.1.0_postcss@8.4.12
- postcss-normalize-string: 5.1.0_postcss@8.4.12
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.12
- postcss-normalize-unicode: 5.1.0_postcss@8.4.12
- postcss-normalize-url: 5.1.0_postcss@8.4.12
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.12
- postcss-ordered-values: 5.1.1_postcss@8.4.12
- postcss-reduce-initial: 5.1.0_postcss@8.4.12
- postcss-reduce-transforms: 5.1.0_postcss@8.4.12
- postcss-svgo: 5.1.0_postcss@8.4.12
- postcss-unique-selectors: 5.1.1_postcss@8.4.12
- dev: true
-
- /cssnano-utils/3.1.0_postcss@8.4.12:
+ css-declaration-sorter: 6.3.0_postcss@8.4.14
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
+ postcss-calc: 8.2.4_postcss@8.4.14
+ postcss-colormin: 5.3.0_postcss@8.4.14
+ postcss-convert-values: 5.1.2_postcss@8.4.14
+ postcss-discard-comments: 5.1.2_postcss@8.4.14
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.14
+ postcss-discard-empty: 5.1.1_postcss@8.4.14
+ postcss-discard-overridden: 5.1.0_postcss@8.4.14
+ postcss-merge-longhand: 5.1.6_postcss@8.4.14
+ postcss-merge-rules: 5.1.2_postcss@8.4.14
+ postcss-minify-font-values: 5.1.0_postcss@8.4.14
+ postcss-minify-gradients: 5.1.1_postcss@8.4.14
+ postcss-minify-params: 5.1.3_postcss@8.4.14
+ postcss-minify-selectors: 5.2.1_postcss@8.4.14
+ postcss-normalize-charset: 5.1.0_postcss@8.4.14
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.14
+ postcss-normalize-positions: 5.1.1_postcss@8.4.14
+ postcss-normalize-repeat-style: 5.1.1_postcss@8.4.14
+ postcss-normalize-string: 5.1.0_postcss@8.4.14
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.14
+ postcss-normalize-unicode: 5.1.0_postcss@8.4.14
+ postcss-normalize-url: 5.1.0_postcss@8.4.14
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.14
+ postcss-ordered-values: 5.1.3_postcss@8.4.14
+ postcss-reduce-initial: 5.1.0_postcss@8.4.14
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.14
+ postcss-svgo: 5.1.0_postcss@8.4.14
+ postcss-unique-selectors: 5.1.1_postcss@8.4.14
+ dev: true
+
+ /cssnano-utils/3.1.0_postcss@8.4.14:
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /cssnano/5.1.5_postcss@8.4.12:
- resolution: {integrity: sha512-VZO1e+bRRVixMeia1zKagrv0lLN1B/r/u12STGNNUFxnp97LIFgZHQa0JxqlwEkvzUyA9Oz/WnCTAFkdEbONmg==}
+ /cssnano/5.1.11_postcss@8.4.14:
+ resolution: {integrity: sha512-2nx+O6LvewPo5EBtYrKc8762mMkZRk9cMGIOP4UlkmxHm7ObxH+zvsJJ+qLwPkUc4/yumL/qJkavYi9NlodWIQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.5_postcss@8.4.12
+ cssnano-preset-default: 5.2.12_postcss@8.4.14
lilconfig: 2.0.5
- postcss: 8.4.12
+ postcss: 8.4.14
yaml: 1.10.2
dev: true
@@ -1454,8 +1293,8 @@ packages:
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
dev: false
- /csstype/3.0.11:
- resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==}
+ /csstype/3.1.0:
+ resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
/damerau-levenshtein/1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
@@ -1496,97 +1335,38 @@ packages:
supports-color: 5.5.0
dev: false
- /decode-named-character-reference/1.0.1:
- resolution: {integrity: sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==}
+ /decode-named-character-reference/1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dependencies:
- character-entities: 2.0.1
+ character-entities: 2.0.2
dev: false
/decode-uri-component/0.2.0:
- resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=}
+ resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
engines: {node: '>=0.10'}
dev: false
- /decompress-response/3.3.0:
- resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=}
- engines: {node: '>=4'}
- dependencies:
- mimic-response: 1.0.1
- dev: false
-
- /decompress-tar/4.1.1:
- resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==}
- engines: {node: '>=4'}
- dependencies:
- file-type: 5.2.0
- is-stream: 1.1.0
- tar-stream: 1.6.2
- dev: false
-
- /decompress-tarbz2/4.1.1:
- resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==}
- engines: {node: '>=4'}
- dependencies:
- decompress-tar: 4.1.1
- file-type: 6.2.0
- is-stream: 1.1.0
- seek-bzip: 1.0.6
- unbzip2-stream: 1.4.3
- dev: false
-
- /decompress-targz/4.1.1:
- resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==}
- engines: {node: '>=4'}
- dependencies:
- decompress-tar: 4.1.1
- file-type: 5.2.0
- is-stream: 1.1.0
- dev: false
-
- /decompress-unzip/4.0.1:
- resolution: {integrity: sha1-3qrM39FK6vhVePczroIQ+bSEj2k=}
- engines: {node: '>=4'}
- dependencies:
- file-type: 3.9.0
- get-stream: 2.3.1
- pify: 2.3.0
- yauzl: 2.10.0
- dev: false
-
- /decompress/4.2.1:
- resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==}
- engines: {node: '>=4'}
- dependencies:
- decompress-tar: 4.1.1
- decompress-tarbz2: 4.1.1
- decompress-targz: 4.1.1
- decompress-unzip: 4.0.1
- graceful-fs: 4.2.9
- make-dir: 1.3.0
- pify: 2.3.0
- strip-dirs: 2.1.0
- dev: false
-
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /define-properties/1.1.3:
- resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
+ /define-properties/1.1.4:
+ resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
dependencies:
+ has-property-descriptors: 1.0.0
object-keys: 1.1.1
dev: true
/define-property/0.2.5:
- resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=}
+ resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
dev: false
/define-property/1.0.0:
- resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=}
+ resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
@@ -1601,7 +1381,7 @@ packages:
dev: false
/defined/1.0.0:
- resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=}
+ resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
dev: true
/dequal/2.0.2:
@@ -1609,8 +1389,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /detective/5.2.0:
- resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==}
+ /detective/5.2.1:
+ resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
@@ -1623,8 +1403,8 @@ packages:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
dev: true
- /diff/5.0.0:
- resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==}
+ /diff/5.1.0:
+ resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
dev: false
@@ -1664,78 +1444,39 @@ packages:
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.17.8
- csstype: 3.0.11
+ '@babel/runtime': 7.18.6
+ csstype: 3.1.0
dev: false
- /dom-serializer/1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
+ /dom-serializer/1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
dev: true
- /domelementtype/2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
+ /domelementtype/2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
/domhandler/4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
dev: true
/domutils/2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
domhandler: 4.3.1
dev: true
- /download/6.2.5:
- resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==}
- engines: {node: '>=4'}
- dependencies:
- caw: 2.0.1
- content-disposition: 0.5.4
- decompress: 4.2.1
- ext-name: 5.0.0
- file-type: 5.2.0
- filenamify: 2.1.0
- get-stream: 3.0.0
- got: 7.1.0
- make-dir: 1.3.0
- p-event: 1.3.0
- pify: 3.0.0
- dev: false
-
- /download/7.1.0:
- resolution: {integrity: sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==}
- engines: {node: '>=6'}
- dependencies:
- archive-type: 4.0.0
- caw: 2.0.1
- content-disposition: 0.5.4
- decompress: 4.2.1
- ext-name: 5.0.0
- file-type: 8.1.0
- filenamify: 2.1.0
- get-stream: 3.0.0
- got: 8.3.2
- make-dir: 1.3.0
- p-event: 2.3.1
- pify: 3.0.0
- dev: false
-
- /duplexer3/0.1.4:
- resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=}
- dev: false
-
- /electron-to-chromium/1.4.95:
- resolution: {integrity: sha512-h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg==}
+ /electron-to-chromium/1.4.180:
+ resolution: {integrity: sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==}
dev: true
/emoji-regex/9.2.2:
@@ -1746,17 +1487,11 @@ packages:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /end-of-stream/1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- dependencies:
- once: 1.4.0
- dev: false
-
- /enhanced-resolve/5.9.2:
- resolution: {integrity: sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==}
+ /enhanced-resolve/5.10.0:
+ resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
engines: {node: '>=10.13.0'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.10
tapable: 2.2.1
dev: true
@@ -1764,36 +1499,39 @@ packages:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
- dev: true
-
- /es-abstract/1.19.1:
- resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==}
+ /es-abstract/1.20.1:
+ resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
es-to-primitive: 1.2.1
function-bind: 1.1.1
- get-intrinsic: 1.1.1
+ function.prototype.name: 1.1.5
+ get-intrinsic: 1.1.2
get-symbol-description: 1.0.0
has: 1.0.3
+ has-property-descriptors: 1.0.0
has-symbols: 1.0.3
internal-slot: 1.0.3
is-callable: 1.2.4
is-negative-zero: 2.0.2
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.1
+ is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
- object-inspect: 1.12.0
+ object-inspect: 1.12.2
object-keys: 1.1.1
object.assign: 4.1.2
- string.prototype.trimend: 1.0.4
- string.prototype.trimstart: 1.0.4
- unbox-primitive: 1.0.1
+ regexp.prototype.flags: 1.4.3
+ string.prototype.trimend: 1.0.5
+ string.prototype.trimstart: 1.0.5
+ unbox-primitive: 1.0.2
+ dev: true
+
+ /es-shim-unscopables/1.0.0:
+ resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ dependencies:
+ has: 1.0.3
dev: true
/es-to-primitive/1.2.1:
@@ -1811,8 +1549,9 @@ packages:
dev: true
/escape-string-regexp/1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
+ dev: false
/escape-string-regexp/4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
@@ -1823,8 +1562,8 @@ packages:
resolution: {integrity: sha512-CsV6QFsjNDTZTDEgE1XxhTKph4YJUh5XFMdsWv3p+9DuMyvfy40fsnZiwqXZHBVEUNMHf+zfPGk6s6b4fS9Erw==}
dev: true
- /eslint-config-next/12.1.0_91b99ef72d19920d7e6dded71447bf77:
- resolution: {integrity: sha512-tBhuUgoDITcdcM7xFvensi9I5WTI4dnvH4ETGRg1U8ZKpXrZsWQFdOKIDzR3RLP5HR3xXrLviaMM4c3zVoE/pA==}
+ /eslint-config-next/12.1.6_85a02a54f427868067898054ce8dfb78:
+ resolution: {integrity: sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
next: '>=10.2.0'
@@ -1833,45 +1572,45 @@ packages:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 12.1.0
- '@rushstack/eslint-patch': 1.1.1
- '@typescript-eslint/parser': 5.16.0_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
+ '@next/eslint-plugin-next': 12.1.6
+ '@rushstack/eslint-patch': 1.1.4
+ '@typescript-eslint/parser': 5.30.5_eslint@8.17.0+typescript@4.7.3
+ eslint: 8.17.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.7.0_8b406960a2a06af75ddac353adbd0cfd
- eslint-plugin-import: 2.25.4_eslint@8.10.0
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
- eslint-plugin-react: 7.29.4_eslint@8.10.0
- eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
- next: 12.1.0_react-dom@17.0.2+react@17.0.2
- typescript: 4.6.2
+ eslint-import-resolver-typescript: 2.7.1_de2e8b5f32821e366389b4575f54c566
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
+ eslint-plugin-jsx-a11y: 6.6.0_eslint@8.17.0
+ eslint-plugin-react: 7.30.1_eslint@8.17.0
+ eslint-plugin-react-hooks: 4.6.0_eslint@8.17.0
+ next: 12.1.6_react-dom@17.0.2+react@17.0.2
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-config-prettier/8.5.0_eslint@8.10.0:
+ /eslint-config-prettier/8.5.0_eslint@8.17.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
dev: true
- /eslint-config-react-important-stuff/3.0.0_eslint@8.10.0:
+ /eslint-config-react-important-stuff/3.0.0_eslint@8.17.0:
resolution: {integrity: sha512-kOviu/MJMLSRrI625wYlHw0Os7YhlbXipIXYRUNKFIs/bgb4OdPziM0SpGZLYc4TvdY5mkpiEpqdLgm+1DuUaA==}
dependencies:
eslint-config-important-stuff: 1.1.0
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
- eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
+ eslint-plugin-jsx-a11y: 6.6.0_eslint@8.17.0
+ eslint-plugin-react-hooks: 4.6.0_eslint@8.17.0
transitivePeerDependencies:
- eslint
dev: true
- /eslint-config-ts-react-important-stuff/3.0.0_eslint@8.10.0:
+ /eslint-config-ts-react-important-stuff/3.0.0_eslint@8.17.0:
resolution: {integrity: sha512-MX5mgE+GGO/QL14GzA0IDPC9aDyMCMS3GllCwTl6FmtmC7jRXxXn33oJux6RwTlt3Z9mcxHlSnjqC6uDBrQKxA==}
dependencies:
- eslint-config-react-important-stuff: 3.0.0_eslint@8.10.0
+ eslint-config-react-important-stuff: 3.0.0_eslint@8.17.0
transitivePeerDependencies:
- eslint
dev: true
@@ -1880,22 +1619,22 @@ packages:
resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
dependencies:
debug: 3.2.7
- resolve: 1.22.0
+ resolve: 1.22.1
dev: true
- /eslint-import-resolver-typescript/2.7.0_8b406960a2a06af75ddac353adbd0cfd:
- resolution: {integrity: sha512-MNHS3u5pebvROX4MjGP9coda589ZGfL1SqdxUV4kSrcclfDRWvNE2D+eljbnWVMvWDVRgT89nhscMHPKYGcObQ==}
+ /eslint-import-resolver-typescript/2.7.1_de2e8b5f32821e366389b4575f54c566:
+ resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
engines: {node: '>=4'}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4
- eslint: 8.10.0
- eslint-plugin-import: 2.25.4_eslint@8.10.0
- glob: 7.2.0
+ eslint: 8.17.0
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
+ glob: 7.2.3
is-glob: 4.0.3
- resolve: 1.22.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.1
transitivePeerDependencies:
- supports-color
@@ -1909,50 +1648,51 @@ packages:
find-up: 2.1.0
dev: true
- /eslint-plugin-import/2.25.4_eslint@8.10.0:
- resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
+ /eslint-plugin-import/2.26.0_eslint@8.17.0:
+ resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
+ array-includes: 3.1.5
+ array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.10.0
+ eslint: 8.17.0
eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.3
has: 1.0.3
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
- resolve: 1.22.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.1
dev: true
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.10.0:
- resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
+ /eslint-plugin-jsx-a11y/6.6.0_eslint@8.17.0:
+ resolution: {integrity: sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
aria-query: 4.2.2
- array-includes: 3.1.4
+ array-includes: 3.1.5
ast-types-flow: 0.0.7
- axe-core: 4.4.1
+ axe-core: 4.4.2
axobject-query: 2.2.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.10.0
+ eslint: 8.17.0
has: 1.0.3
- jsx-ast-utils: 3.2.1
+ jsx-ast-utils: 3.3.2
language-tags: 1.0.5
minimatch: 3.1.2
+ semver: 6.3.0
dev: true
- /eslint-plugin-prettier/4.0.0_49904e051f6c6f73d26c0ee759268562:
+ /eslint-plugin-prettier/4.0.0_ec1e505292ae08396b4b1e71ab408299:
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
engines: {node: '>=6.0.0'}
peerDependencies:
@@ -1963,39 +1703,39 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.10.0
- eslint-config-prettier: 8.5.0_eslint@8.10.0
+ eslint: 8.17.0
+ eslint-config-prettier: 8.5.0_eslint@8.17.0
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-react-hooks/4.3.0_eslint@8.10.0:
- resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==}
+ /eslint-plugin-react-hooks/4.6.0_eslint@8.17.0:
+ resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
dev: true
- /eslint-plugin-react/7.29.4_eslint@8.10.0:
- resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==}
+ /eslint-plugin-react/7.30.1_eslint@8.17.0:
+ resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flatmap: 1.2.5
+ array-includes: 3.1.5
+ array.prototype.flatmap: 1.3.0
doctrine: 2.1.0
- eslint: 8.10.0
+ eslint: 8.17.0
estraverse: 5.3.0
- jsx-ast-utils: 3.2.1
+ jsx-ast-utils: 3.3.2
minimatch: 3.1.2
object.entries: 1.1.5
object.fromentries: 2.0.5
- object.hasown: 1.1.0
+ object.hasown: 1.1.1
object.values: 1.1.5
prop-types: 15.8.1
- resolve: 2.0.0-next.3
+ resolve: 2.0.0-next.4
semver: 6.3.0
string.prototype.matchall: 4.0.7
dev: true
@@ -2008,13 +1748,13 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.10.0:
+ /eslint-utils/3.0.0_eslint@8.17.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -2028,12 +1768,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.10.0:
- resolution: {integrity: sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==}
+ /eslint/8.17.0:
+ resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.2.1
+ '@eslint/eslintrc': 1.3.0
'@humanwhocodes/config-array': 0.9.5
ajv: 6.12.6
chalk: 4.1.2
@@ -2042,16 +1782,16 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0_eslint@8.17.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.1
+ espree: 9.3.2
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
- globals: 13.13.0
+ globals: 13.16.0
ignore: 5.2.0
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -2072,12 +1812,12 @@ packages:
- supports-color
dev: true
- /espree/9.3.1:
- resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==}
+ /espree/9.3.2:
+ resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.7.0
- acorn-jsx: 5.3.2_acorn@8.7.0
+ acorn: 8.7.1
+ acorn-jsx: 5.3.2_acorn@8.7.1
eslint-visitor-keys: 3.3.0
dev: true
@@ -2105,67 +1845,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /exec-buffer/3.2.0:
- resolution: {integrity: sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==}
- engines: {node: '>=4'}
- dependencies:
- execa: 0.7.0
- p-finally: 1.0.0
- pify: 3.0.0
- rimraf: 2.7.1
- tempfile: 2.0.0
- dev: false
-
- /execa/0.7.0:
- resolution: {integrity: sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=}
- engines: {node: '>=4'}
- dependencies:
- cross-spawn: 5.1.0
- get-stream: 3.0.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: false
-
- /execa/1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
- dependencies:
- cross-spawn: 6.0.5
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: false
-
- /execa/4.1.0:
- resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
- engines: {node: '>=10'}
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 5.2.0
- human-signals: 1.1.1
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
- dev: false
-
- /executable/4.1.1:
- resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
- engines: {node: '>=4'}
- dependencies:
- pify: 2.3.0
- dev: false
-
/expand-brackets/2.1.4:
- resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=}
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
dependencies:
debug: 2.6.9
@@ -2177,30 +1858,15 @@ packages:
to-regex: 3.0.2
dev: false
- /ext-list/2.2.2:
- resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- mime-db: 1.52.0
- dev: false
-
- /ext-name/5.0.0:
- resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==}
- engines: {node: '>=4'}
- dependencies:
- ext-list: 2.2.2
- sort-keys-length: 1.0.1
- dev: false
-
/extend-shallow/2.0.1:
- resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=}
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
dev: false
/extend-shallow/3.0.2:
- resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=}
+ resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
engines: {node: '>=0.10.0'}
dependencies:
assign-symbols: 1.0.0
@@ -2259,7 +1925,7 @@ packages:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
/fast-levenshtein/2.0.6:
- resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
/fastq/1.13.0:
@@ -2268,12 +1934,6 @@ packages:
reusify: 1.0.4
dev: true
- /fd-slicer/1.1.0:
- resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=}
- dependencies:
- pend: 1.2.0
- dev: false
-
/figures/3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
@@ -2303,47 +1963,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /file-type/3.9.0:
- resolution: {integrity: sha1-JXoHg4TR24CHvESdEH1SpSZyuek=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /file-type/4.4.0:
- resolution: {integrity: sha1-G2AOX8ofvcboDApwxxyNul95BsU=}
- engines: {node: '>=4'}
- dev: false
-
- /file-type/5.2.0:
- resolution: {integrity: sha1-LdvqfHP/42No365J3DOMBYwritY=}
- engines: {node: '>=4'}
- dev: false
-
- /file-type/6.2.0:
- resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==}
- engines: {node: '>=4'}
- dev: false
-
- /file-type/8.1.0:
- resolution: {integrity: sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==}
- engines: {node: '>=6'}
- dev: false
-
- /filename-reserved-regex/2.0.0:
- resolution: {integrity: sha1-q/c9+rc10EVECr/qLZHzieu/oik=}
- engines: {node: '>=4'}
- dev: false
-
- /filenamify/2.1.0:
- resolution: {integrity: sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==}
- engines: {node: '>=4'}
- dependencies:
- filename-reserved-regex: 2.0.0
- strip-outer: 1.0.1
- trim-repeated: 1.0.0
- dev: false
-
/fill-range/4.0.0:
- resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=}
+ resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 2.0.1
@@ -2360,33 +1981,26 @@ packages:
dev: true
/find-up/2.1.0:
- resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
engines: {node: '>=4'}
dependencies:
locate-path: 2.0.0
dev: true
- /find-versions/3.2.0:
- resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==}
- engines: {node: '>=6'}
- dependencies:
- semver-regex: 2.0.0
- dev: false
-
/flat-cache/3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.5
+ flatted: 3.2.6
rimraf: 3.0.2
dev: true
- /flatted/3.2.5:
- resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==}
+ /flatted/3.2.6:
+ resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==}
dev: true
/for-in/1.0.2:
- resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=}
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
dev: false
@@ -2395,25 +2009,14 @@ packages:
dev: true
/fragment-cache/0.2.1:
- resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=}
+ resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
engines: {node: '>=0.10.0'}
dependencies:
map-cache: 0.2.2
dev: false
- /from2/2.3.0:
- resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=}
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.7
- dev: false
-
- /fs-constants/1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- dev: false
-
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
/fs/0.0.1-security:
resolution: {integrity: sha1-invTcYa23d84E/I4WLV+yq9eQdQ=}
@@ -2431,67 +2034,47 @@ packages:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
dev: true
+ /function.prototype.name/1.1.5:
+ resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ functions-have-names: 1.2.3
+ dev: true
+
/functional-red-black-tree/1.0.1:
- resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
dev: true
- /get-intrinsic/1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ /functions-have-names/1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: true
+
+ /get-intrinsic/1.1.2:
+ resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
dev: true
- /get-proxy/2.1.0:
- resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==}
- engines: {node: '>=4'}
- dependencies:
- npm-conf: 1.1.3
- dev: false
-
- /get-stream/2.3.1:
- resolution: {integrity: sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=}
- engines: {node: '>=0.10.0'}
- dependencies:
- object-assign: 4.1.1
- pinkie-promise: 2.0.1
- dev: false
-
- /get-stream/3.0.0:
- resolution: {integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=}
- engines: {node: '>=4'}
- dev: false
-
- /get-stream/4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
- dependencies:
- pump: 3.0.0
- dev: false
-
- /get-stream/5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
- dependencies:
- pump: 3.0.0
- dev: false
-
/get-symbol-description/1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
dev: true
/get-value/2.0.6:
- resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=}
+ resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
dev: false
/glob-parent/3.1.0:
- resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=}
+ resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
dependencies:
is-glob: 3.1.0
path-dirname: 1.0.2
@@ -2512,7 +2095,7 @@ packages:
dev: true
/glob-to-regexp/0.3.0:
- resolution: {integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=}
+ resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
dev: false
/glob/7.1.7:
@@ -2526,8 +2109,8 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -2541,8 +2124,8 @@ packages:
engines: {node: '>=4'}
dev: false
- /globals/13.13.0:
- resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==}
+ /globals/13.16.0:
+ resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -2567,86 +2150,41 @@ packages:
array-union: 1.0.2
dir-glob: 2.0.0
fast-glob: 2.2.7
- glob: 7.2.0
+ glob: 7.2.3
ignore: 3.3.10
pify: 3.0.0
slash: 1.0.0
dev: false
- /got/7.1.0:
- resolution: {integrity: sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==}
- engines: {node: '>=4'}
- dependencies:
- decompress-response: 3.3.0
- duplexer3: 0.1.4
- get-stream: 3.0.0
- is-plain-obj: 1.1.0
- is-retry-allowed: 1.2.0
- is-stream: 1.1.0
- isurl: 1.0.0
- lowercase-keys: 1.0.1
- p-cancelable: 0.3.0
- p-timeout: 1.2.1
- safe-buffer: 5.2.1
- timed-out: 4.0.1
- url-parse-lax: 1.0.0
- url-to-options: 1.0.1
- dev: false
-
- /got/8.3.2:
- resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==}
- engines: {node: '>=4'}
- dependencies:
- '@sindresorhus/is': 0.7.0
- cacheable-request: 2.1.4
- decompress-response: 3.3.0
- duplexer3: 0.1.4
- get-stream: 3.0.0
- into-stream: 3.1.0
- is-retry-allowed: 1.2.0
- isurl: 1.0.0
- lowercase-keys: 1.0.1
- mimic-response: 1.0.1
- p-cancelable: 0.4.1
- p-timeout: 2.0.1
- pify: 3.0.0
- safe-buffer: 5.2.1
- timed-out: 4.0.1
- url-parse-lax: 3.0.0
- url-to-options: 1.0.1
- dev: false
-
- /graceful-fs/4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
+ /graceful-fs/4.2.10:
+ resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
+ dev: true
- /has-bigints/1.0.1:
- resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
+ /has-bigints/1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
/has-flag/3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
+ dev: false
/has-flag/4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
dev: true
- /has-symbol-support-x/1.4.2:
- resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==}
- dev: false
+ /has-property-descriptors/1.0.0:
+ resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
+ dependencies:
+ get-intrinsic: 1.1.2
+ dev: true
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
dev: true
- /has-to-string-tag-x/1.4.1:
- resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==}
- dependencies:
- has-symbol-support-x: 1.4.2
- dev: false
-
/has-tostringtag/1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
@@ -2655,7 +2193,7 @@ packages:
dev: true
/has-value/0.3.1:
- resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=}
+ resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
engines: {node: '>=0.10.0'}
dependencies:
get-value: 2.0.6
@@ -2664,7 +2202,7 @@ packages:
dev: false
/has-value/1.0.0:
- resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=}
+ resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
engines: {node: '>=0.10.0'}
dependencies:
get-value: 2.0.6
@@ -2673,12 +2211,12 @@ packages:
dev: false
/has-values/0.1.4:
- resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=}
+ resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
dev: false
/has-values/1.0.0:
- resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=}
+ resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
@@ -2702,33 +2240,20 @@ packages:
react-is: 16.13.1
dev: false
- /http-cache-semantics/3.8.1:
- resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
- dev: false
-
- /human-signals/1.1.1:
- resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
- engines: {node: '>=8.12.0'}
- dev: false
-
/hyphenate-style-name/1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
dev: false
- /i18next-browser-languagedetector/6.1.3:
- resolution: {integrity: sha512-T+oGXHXtrur14CGnZZ7qQ07X38XJQEI00b/4ILrtO6xPbwTlQ1wtMZC2H+tBULixHuVUXv8LKbxfjyITJkezUg==}
+ /i18next-browser-languagedetector/6.1.4:
+ resolution: {integrity: sha512-wukWnFeU7rKIWT66VU5i8I+3Zc4wReGcuDK2+kuFhtoxBRGWGdvYI9UQmqNL/yQH1KogWwh+xGEaIPH8V/i2Zg==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
dev: false
- /i18next/19.9.2:
- resolution: {integrity: sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==}
+ /i18next/21.8.9:
+ resolution: {integrity: sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==}
dependencies:
- '@babel/runtime': 7.17.8
- dev: false
-
- /ieee754/1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ '@babel/runtime': 7.18.6
dev: false
/ignore/3.3.10:
@@ -2740,24 +2265,6 @@ packages:
engines: {node: '>= 4'}
dev: true
- /imagemin-mozjpeg/9.0.0:
- resolution: {integrity: sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==}
- engines: {node: '>=10'}
- dependencies:
- execa: 4.1.0
- is-jpg: 2.0.0
- mozjpeg: 7.1.1
- dev: false
-
- /imagemin-optipng/8.0.0:
- resolution: {integrity: sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==}
- engines: {node: '>=10'}
- dependencies:
- exec-buffer: 3.2.0
- is-png: 2.0.0
- optipng-bin: 7.0.1
- dev: false
-
/imagemin/6.1.0:
resolution: {integrity: sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==}
engines: {node: '>=6'}
@@ -2796,33 +2303,24 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-lazy/3.1.0:
- resolution: {integrity: sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==}
- engines: {node: '>=6'}
- dev: false
-
/imurmurhash/0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: true
/inflight/1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
/inherits/2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
+ resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: false
/inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- dev: false
-
/inline-style-parser/0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
dev: false
@@ -2831,21 +2329,13 @@ packages:
resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
has: 1.0.3
side-channel: 1.0.4
dev: true
- /into-stream/3.1.0:
- resolution: {integrity: sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=}
- engines: {node: '>=4'}
- dependencies:
- from2: 2.3.0
- p-is-promise: 1.1.0
- dev: false
-
/is-accessor-descriptor/0.1.6:
- resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=}
+ resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
@@ -2858,14 +2348,10 @@ packages:
kind-of: 6.0.3
dev: false
- /is-arrayish/0.2.1:
- resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
- dev: true
-
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
- has-bigints: 1.0.1
+ has-bigints: 1.0.2
dev: true
/is-binary-path/2.1.0:
@@ -2897,14 +2383,14 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-core-module/2.8.1:
- resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==}
+ /is-core-module/2.9.0:
+ resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
dependencies:
has: 1.0.3
dev: true
/is-data-descriptor/0.1.4:
- resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=}
+ resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
@@ -2943,7 +2429,7 @@ packages:
dev: false
/is-extendable/0.1.1:
- resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=}
+ resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
dev: false
@@ -2955,11 +2441,11 @@ packages:
dev: false
/is-extglob/2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
/is-glob/3.1.0:
- resolution: {integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=}
+ resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
@@ -2972,16 +2458,7 @@ packages:
is-extglob: 2.1.1
/is-in-browser/1.1.3:
- resolution: {integrity: sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=}
- dev: false
-
- /is-jpg/2.0.0:
- resolution: {integrity: sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=}
- engines: {node: '>=6'}
- dev: false
-
- /is-natural-number/4.0.1:
- resolution: {integrity: sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=}
+ resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
dev: false
/is-negative-zero/2.0.2:
@@ -2989,15 +2466,15 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-number-object/1.0.6:
- resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==}
+ /is-number-object/1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
/is-number/3.0.0:
- resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=}
+ resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
@@ -3008,17 +2485,8 @@ packages:
engines: {node: '>=0.12.0'}
dev: true
- /is-object/1.0.2:
- resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==}
- dev: false
-
- /is-plain-obj/1.1.0:
- resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-plain-obj/4.0.0:
- resolution: {integrity: sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==}
+ /is-plain-obj/4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
dev: false
@@ -3029,11 +2497,6 @@ packages:
isobject: 3.0.1
dev: false
- /is-png/2.0.0:
- resolution: {integrity: sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==}
- engines: {node: '>=8'}
- dev: false
-
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -3042,25 +2505,12 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-retry-allowed/1.2.0:
- resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-shared-array-buffer/1.0.1:
- resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
+ /is-shared-array-buffer/1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ dependencies:
+ call-bind: 1.0.2
dev: true
- /is-stream/1.1.0:
- resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
- dev: false
-
/is-string/1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
@@ -3087,32 +2537,25 @@ packages:
dev: false
/isarray/1.0.0:
- resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: false
/isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ dev: true
/isobject/2.1.0:
- resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=}
+ resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
engines: {node: '>=0.10.0'}
dependencies:
isarray: 1.0.0
dev: false
/isobject/3.0.1:
- resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: false
- /isurl/1.0.0:
- resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==}
- engines: {node: '>= 4'}
- dependencies:
- has-to-string-tag-x: 1.4.1
- is-object: 1.0.2
- dev: false
-
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -3129,19 +2572,11 @@ packages:
hasBin: true
dev: false
- /json-buffer/3.0.0:
- resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=}
- dev: false
-
- /json-parse-even-better-errors/2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- dev: true
-
/json-schema-traverse/0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
/json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
/json5/1.0.1:
@@ -3159,7 +2594,7 @@ packages:
/jss-plugin-camel-case/10.9.0:
resolution: {integrity: sha512-UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
hyphenate-style-name: 1.0.4
jss: 10.9.0
dev: false
@@ -3167,21 +2602,21 @@ packages:
/jss-plugin-default-unit/10.9.0:
resolution: {integrity: sha512-7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
jss: 10.9.0
dev: false
/jss-plugin-global/10.9.0:
resolution: {integrity: sha512-4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
jss: 10.9.0
dev: false
/jss-plugin-nested/10.9.0:
resolution: {integrity: sha512-2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
jss: 10.9.0
tiny-warning: 1.0.3
dev: false
@@ -3189,14 +2624,14 @@ packages:
/jss-plugin-props-sort/10.9.0:
resolution: {integrity: sha512-7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
jss: 10.9.0
dev: false
/jss-plugin-rule-value-function/10.9.0:
resolution: {integrity: sha512-IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
jss: 10.9.0
tiny-warning: 1.0.3
dev: false
@@ -3204,7 +2639,7 @@ packages:
/jss-plugin-vendor-prefixer/10.9.0:
resolution: {integrity: sha512-MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA==}
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
css-vendor: 2.0.8
jss: 10.9.0
dev: false
@@ -3212,35 +2647,29 @@ packages:
/jss/10.9.0:
resolution: {integrity: sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw==}
dependencies:
- '@babel/runtime': 7.17.8
- csstype: 3.0.11
+ '@babel/runtime': 7.18.6
+ csstype: 3.1.0
is-in-browser: 1.1.3
tiny-warning: 1.0.3
dev: false
- /jsx-ast-utils/3.2.1:
- resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
+ /jsx-ast-utils/3.3.2:
+ resolution: {integrity: sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.5
object.assign: 4.1.2
dev: true
- /keyv/3.0.0:
- resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==}
- dependencies:
- json-buffer: 3.0.0
- dev: false
-
/kind-of/3.2.2:
- resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=}
+ resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
dev: false
/kind-of/4.0.0:
- resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=}
+ resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
@@ -3256,19 +2685,19 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /kleur/4.1.4:
- resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==}
+ /kleur/4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
dev: false
- /language-subtag-registry/0.3.21:
- resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
+ /language-subtag-registry/0.3.22:
+ resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
/language-tags/1.0.5:
- resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
- language-subtag-registry: 0.3.21
+ language-subtag-registry: 0.3.22
dev: true
/levn/0.4.1:
@@ -3284,10 +2713,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /lines-and-columns/1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
-
/loader-utils/1.4.0:
resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
engines: {node: '>=4.0.0'}
@@ -3306,7 +2731,7 @@ packages:
dev: true
/locate-path/2.0.0:
- resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
dependencies:
p-locate: 2.0.0
@@ -3314,7 +2739,7 @@ packages:
dev: true
/lodash.memoize/4.1.2:
- resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
/lodash.merge/4.6.2:
@@ -3322,7 +2747,7 @@ packages:
dev: true
/lodash.uniq/4.5.0:
- resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
/lodash/4.17.21:
@@ -3335,23 +2760,6 @@ packages:
dependencies:
js-tokens: 4.0.0
- /lowercase-keys/1.0.0:
- resolution: {integrity: sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /lowercase-keys/1.0.1:
- resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /lru-cache/4.1.5:
- resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
- dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
- dev: false
-
/lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
@@ -3367,23 +2775,23 @@ packages:
dev: false
/map-cache/0.2.2:
- resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=}
+ resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
dev: false
/map-visit/1.0.0:
- resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=}
+ resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
dependencies:
object-visit: 1.0.1
dev: false
- /mdast-util-definitions/5.1.0:
- resolution: {integrity: sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==}
+ /mdast-util-definitions/5.1.1:
+ resolution: {integrity: sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==}
dependencies:
'@types/mdast': 3.0.10
'@types/unist': 2.0.6
- unist-util-visit: 3.1.0
+ unist-util-visit: 4.1.0
dev: false
/mdast-util-from-markdown/1.2.0:
@@ -3391,7 +2799,7 @@ packages:
dependencies:
'@types/mdast': 3.0.10
'@types/unist': 2.0.6
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.1.0
micromark: 3.0.10
micromark-util-decode-numeric-character-reference: 1.0.0
@@ -3400,22 +2808,24 @@ packages:
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
unist-util-stringify-position: 3.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
transitivePeerDependencies:
- supports-color
dev: false
- /mdast-util-to-hast/11.3.0:
- resolution: {integrity: sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==}
+ /mdast-util-to-hast/12.1.2:
+ resolution: {integrity: sha512-Wn6Mcj04qU4qUXHnHpPATYMH2Jd8RlntdnloDfYLe1ErWRHo6+pvSl/DzHp6sCZ9cBSYlc8Sk8pbwb8xtUoQhQ==}
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
'@types/mdurl': 1.0.2
- mdast-util-definitions: 5.1.0
+ mdast-util-definitions: 5.1.1
mdurl: 1.0.1
+ micromark-util-sanitize-uri: 1.0.0
+ trim-lines: 3.0.1
unist-builder: 3.0.0
unist-util-generated: 2.0.0
- unist-util-position: 4.0.2
+ unist-util-position: 4.0.3
unist-util-visit: 4.1.0
dev: false
@@ -3428,11 +2838,7 @@ packages:
dev: true
/mdurl/1.0.1:
- resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=}
- dev: false
-
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
dev: false
/merge2/1.4.1:
@@ -3442,7 +2848,7 @@ packages:
/micromark-core-commonmark/1.0.6:
resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==}
dependencies:
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-factory-destination: 1.0.0
micromark-factory-label: 1.0.2
micromark-factory-space: 1.0.0
@@ -3451,13 +2857,13 @@ packages:
micromark-util-character: 1.1.0
micromark-util-chunked: 1.0.0
micromark-util-classify-character: 1.0.0
- micromark-util-html-tag-name: 1.0.0
+ micromark-util-html-tag-name: 1.1.0
micromark-util-normalize-identifier: 1.0.0
micromark-util-resolve-all: 1.0.0
micromark-util-subtokenize: 1.0.2
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
/micromark-factory-destination/1.0.0:
@@ -3474,7 +2880,7 @@ packages:
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
/micromark-factory-space/1.0.0:
@@ -3491,7 +2897,7 @@ packages:
micromark-util-character: 1.1.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
/micromark-factory-whitespace/1.0.0:
@@ -3540,7 +2946,7 @@ packages:
/micromark-util-decode-string/1.0.2:
resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==}
dependencies:
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-util-character: 1.1.0
micromark-util-decode-numeric-character-reference: 1.0.0
micromark-util-symbol: 1.0.1
@@ -3550,8 +2956,8 @@ packages:
resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==}
dev: false
- /micromark-util-html-tag-name/1.0.0:
- resolution: {integrity: sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==}
+ /micromark-util-html-tag-name/1.1.0:
+ resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==}
dev: false
/micromark-util-normalize-identifier/1.0.0:
@@ -3580,7 +2986,7 @@ packages:
micromark-util-chunked: 1.0.0
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
dev: false
/micromark-util-symbol/1.0.1:
@@ -3596,7 +3002,7 @@ packages:
dependencies:
'@types/debug': 4.1.7
debug: 4.3.4
- decode-named-character-reference: 1.0.1
+ decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.0.6
micromark-factory-space: 1.0.0
micromark-util-character: 1.1.0
@@ -3610,7 +3016,7 @@ packages:
micromark-util-subtokenize: 1.0.2
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
- uvu: 0.5.3
+ uvu: 0.5.6
transitivePeerDependencies:
- supports-color
dev: false
@@ -3645,6 +3051,7 @@ packages:
/mime-db/1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ dev: true
/mime-types/2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
@@ -3659,16 +3066,6 @@ packages:
hasBin: true
dev: false
- /mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
- dev: false
-
- /mimic-response/1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
- dev: false
-
/minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -3685,23 +3082,13 @@ packages:
is-extendable: 1.0.1
dev: false
- /mozjpeg/7.1.1:
- resolution: {integrity: sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==}
- engines: {node: '>=10'}
- hasBin: true
- requiresBuild: true
- dependencies:
- bin-build: 3.0.0
- bin-wrapper: 4.1.0
- dev: false
-
/mri/1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
dev: false
/ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
/ms/2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
@@ -3710,8 +3097,8 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /nanoid/3.3.1:
- resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==}
+ /nanoid/3.3.4:
+ resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -3733,7 +3120,7 @@ packages:
dev: false
/natural-compare/1.4.0:
- resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
/next-compose-plugins/2.2.1:
@@ -3757,12 +3144,12 @@ packages:
/next-transpile-modules/9.0.0:
resolution: {integrity: sha512-VCNFOazIAnXn1hvgYYSTYMnoWgKgwlYh4lm1pKbSfiB3kj5ZYLcKVhfh3jkPOg1cnd9DP+pte9yCUocdPEUBTQ==}
dependencies:
- enhanced-resolve: 5.9.2
+ enhanced-resolve: 5.10.0
escalade: 3.1.1
dev: true
- /next/12.1.0_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-s885kWvnIlxsUFHq9UGyIyLiuD0G3BUC/xrH0CEnH5lHEWkwQcHOORgbDF0hbrW9vr/7am4ETfX4A7M6DjrE7Q==}
+ /next/12.1.6_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-cebwKxL3/DhNKfg9tPZDQmbRKjueqykHHbgaoG4VBRH3AHQJ2HO0dbKFiS1hPhe1/qgc2d/hFeadsbPicmLD+A==}
engines: {node: '>=12.22.0'}
hasBin: true
peerDependencies:
@@ -3779,36 +3166,32 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 12.1.0
- caniuse-lite: 1.0.30001320
+ '@next/env': 12.1.6
+ caniuse-lite: 1.0.30001363
postcss: 8.4.5
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-jsx: 5.0.0_react@17.0.2
- use-subscription: 1.5.1_react@17.0.2
+ styled-jsx: 5.0.2_react@17.0.2
optionalDependencies:
- '@next/swc-android-arm64': 12.1.0
- '@next/swc-darwin-arm64': 12.1.0
- '@next/swc-darwin-x64': 12.1.0
- '@next/swc-linux-arm-gnueabihf': 12.1.0
- '@next/swc-linux-arm64-gnu': 12.1.0
- '@next/swc-linux-arm64-musl': 12.1.0
- '@next/swc-linux-x64-gnu': 12.1.0
- '@next/swc-linux-x64-musl': 12.1.0
- '@next/swc-win32-arm64-msvc': 12.1.0
- '@next/swc-win32-ia32-msvc': 12.1.0
- '@next/swc-win32-x64-msvc': 12.1.0
+ '@next/swc-android-arm-eabi': 12.1.6
+ '@next/swc-android-arm64': 12.1.6
+ '@next/swc-darwin-arm64': 12.1.6
+ '@next/swc-darwin-x64': 12.1.6
+ '@next/swc-linux-arm-gnueabihf': 12.1.6
+ '@next/swc-linux-arm64-gnu': 12.1.6
+ '@next/swc-linux-arm64-musl': 12.1.6
+ '@next/swc-linux-x64-gnu': 12.1.6
+ '@next/swc-linux-x64-musl': 12.1.6
+ '@next/swc-win32-arm64-msvc': 12.1.6
+ '@next/swc-win32-ia32-msvc': 12.1.6
+ '@next/swc-win32-x64-msvc': 12.1.6
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
dev: false
- /nice-try/1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: false
-
- /node-releases/2.0.2:
- resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==}
+ /node-releases/2.0.5:
+ resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
dev: true
/normalize-path/3.0.0:
@@ -3817,58 +3200,27 @@ packages:
dev: true
/normalize-range/0.1.2:
- resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: true
- /normalize-url/2.0.1:
- resolution: {integrity: sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==}
- engines: {node: '>=4'}
- dependencies:
- prepend-http: 2.0.0
- query-string: 5.1.1
- sort-keys: 2.0.0
- dev: false
-
/normalize-url/6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
dev: true
- /npm-conf/1.1.3:
- resolution: {integrity: sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==}
- engines: {node: '>=4'}
- dependencies:
- config-chain: 1.1.13
- pify: 3.0.0
- dev: false
-
- /npm-run-path/2.0.2:
- resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
- engines: {node: '>=4'}
- dependencies:
- path-key: 2.0.1
- dev: false
-
- /npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
- dependencies:
- path-key: 3.1.1
- dev: false
-
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check/2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: true
/object-assign/4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
/object-copy/0.1.0:
- resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=}
+ resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
engines: {node: '>=0.10.0'}
dependencies:
copy-descriptor: 0.1.1
@@ -3876,13 +3228,13 @@ packages:
kind-of: 3.2.2
dev: false
- /object-hash/2.2.0:
- resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
+ /object-hash/3.0.0:
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
dev: true
- /object-inspect/1.12.0:
- resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
+ /object-inspect/1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
/object-keys/1.1.1:
@@ -3891,7 +3243,7 @@ packages:
dev: true
/object-visit/1.0.1:
- resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=}
+ resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
@@ -3902,7 +3254,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
has-symbols: 1.0.3
object-keys: 1.1.1
dev: true
@@ -3912,8 +3264,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/object.fromentries/2.0.5:
@@ -3921,19 +3273,19 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /object.hasown/1.1.0:
- resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==}
+ /object.hasown/1.1.1:
+ resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==}
dependencies:
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/object.pick/1.3.0:
- resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=}
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
@@ -3944,22 +3296,15 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/once/1.4.0:
- resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /onetime/5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
- dependencies:
- mimic-fn: 2.1.0
- dev: false
-
/optionator/0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
@@ -3972,57 +3317,6 @@ packages:
word-wrap: 1.2.3
dev: true
- /optipng-bin/7.0.1:
- resolution: {integrity: sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==}
- engines: {node: '>=10'}
- hasBin: true
- requiresBuild: true
- dependencies:
- bin-build: 3.0.0
- bin-wrapper: 4.1.0
- dev: false
-
- /os-filter-obj/2.0.0:
- resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==}
- engines: {node: '>=4'}
- dependencies:
- arch: 2.2.0
- dev: false
-
- /p-cancelable/0.3.0:
- resolution: {integrity: sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==}
- engines: {node: '>=4'}
- dev: false
-
- /p-cancelable/0.4.1:
- resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==}
- engines: {node: '>=4'}
- dev: false
-
- /p-event/1.3.0:
- resolution: {integrity: sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=}
- engines: {node: '>=4'}
- dependencies:
- p-timeout: 1.2.1
- dev: false
-
- /p-event/2.3.1:
- resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==}
- engines: {node: '>=6'}
- dependencies:
- p-timeout: 2.0.1
- dev: false
-
- /p-finally/1.0.0:
- resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
- engines: {node: '>=4'}
- dev: false
-
- /p-is-promise/1.1.0:
- resolution: {integrity: sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=}
- engines: {node: '>=4'}
- dev: false
-
/p-limit/1.3.0:
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
engines: {node: '>=4'}
@@ -4031,45 +3325,19 @@ packages:
dev: true
/p-locate/2.0.0:
- resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
engines: {node: '>=4'}
dependencies:
p-limit: 1.3.0
dev: true
- /p-map-series/1.0.0:
- resolution: {integrity: sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=}
- engines: {node: '>=4'}
- dependencies:
- p-reduce: 1.0.0
- dev: false
-
/p-pipe/1.2.0:
- resolution: {integrity: sha1-SxoROZoRUgpneQ7loMHViB1r7+k=}
+ resolution: {integrity: sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==}
engines: {node: '>=4'}
dev: false
- /p-reduce/1.0.0:
- resolution: {integrity: sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=}
- engines: {node: '>=4'}
- dev: false
-
- /p-timeout/1.2.1:
- resolution: {integrity: sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=}
- engines: {node: '>=4'}
- dependencies:
- p-finally: 1.0.0
- dev: false
-
- /p-timeout/2.0.1:
- resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==}
- engines: {node: '>=4'}
- dependencies:
- p-finally: 1.0.0
- dev: false
-
/p-try/1.0.0:
- resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
dev: true
@@ -4080,42 +3348,28 @@ packages:
callsites: 3.1.0
dev: true
- /parse-json/5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
- dependencies:
- '@babel/code-frame': 7.16.7
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
- dev: true
-
/pascalcase/0.1.1:
- resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=}
+ resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
dev: false
/path-dirname/1.0.2:
- resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=}
+ resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
dev: false
/path-exists/3.0.0:
- resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: true
/path-is-absolute/1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key/2.0.1:
- resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=}
- engines: {node: '>=4'}
- dev: false
-
/path-key/3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
+ dev: true
/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
@@ -4140,10 +3394,6 @@ packages:
util: 0.10.4
dev: false
- /pend/1.2.0:
- resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=}
- dev: false
-
/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
@@ -4151,13 +3401,8 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/2.3.0:
- resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/pify/3.0.0:
- resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
+ resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
engines: {node: '>=4'}
dev: false
@@ -4166,357 +3411,350 @@ packages:
engines: {node: '>=6'}
dev: false
- /pinkie-promise/2.0.1:
- resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
- engines: {node: '>=0.10.0'}
- dependencies:
- pinkie: 2.0.4
- dev: false
-
- /pinkie/2.0.4:
- resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/popper.js/1.16.1-lts:
resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
dev: false
/posix-character-classes/0.1.1:
- resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
+ resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
dev: false
- /postcss-calc/8.2.4_postcss@8.4.12:
+ /postcss-calc/8.2.4_postcss@8.4.14:
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.0_postcss@8.4.12:
+ /postcss-colormin/5.3.0_postcss@8.4.14:
resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.21.1
caniuse-api: 3.0.0
colord: 2.9.2
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.0_postcss@8.4.12:
- resolution: {integrity: sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==}
+ /postcss-convert-values/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ browserslist: 4.21.1
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.1_postcss@8.4.12:
- resolution: {integrity: sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ==}
+ /postcss-discard-comments/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-discard-duplicates/5.1.0_postcss@8.4.12:
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-discard-empty/5.1.1_postcss@8.4.12:
+ /postcss-discard-empty/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-discard-overridden/5.1.0_postcss@8.4.12:
+ /postcss-discard-overridden/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-js/4.0.0_postcss@8.4.12:
+ /postcss-js/4.0.0_postcss@8.4.14:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.3.3
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-load-config/3.1.3:
- resolution: {integrity: sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==}
+ /postcss-load-config/3.1.4_postcss@8.4.14:
+ resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
+ postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
+ postcss:
+ optional: true
ts-node:
optional: true
dependencies:
lilconfig: 2.0.5
+ postcss: 8.4.14
yaml: 1.10.2
dev: true
- /postcss-merge-longhand/5.1.3_postcss@8.4.12:
- resolution: {integrity: sha512-lX8GPGvZ0iGP/IboM7HXH5JwkXvXod1Rr8H8ixwiA372hArk0zP4ZcCy4z4Prg/bfNlbbTf0KCOjCF9kKnpP/w==}
+ /postcss-merge-longhand/5.1.6_postcss@8.4.14:
+ resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0_postcss@8.4.12
+ stylehacks: 5.1.0_postcss@8.4.14
dev: true
- /postcss-merge-rules/5.1.1_postcss@8.4.12:
- resolution: {integrity: sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==}
+ /postcss-merge-rules/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.21.1
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.12
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
dev: true
- /postcss-minify-font-values/5.1.0_postcss@8.4.12:
+ /postcss-minify-font-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients/5.1.1_postcss@8.4.12:
+ /postcss-minify-gradients/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.2
- cssnano-utils: 3.1.0_postcss@8.4.12
- postcss: 8.4.12
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.1.2_postcss@8.4.12:
- resolution: {integrity: sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==}
+ /postcss-minify-params/5.1.3_postcss@8.4.14:
+ resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- cssnano-utils: 3.1.0_postcss@8.4.12
- postcss: 8.4.12
+ browserslist: 4.21.1
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-selectors/5.2.0_postcss@8.4.12:
- resolution: {integrity: sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==}
+ /postcss-minify-selectors/5.2.1_postcss@8.4.14:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
dev: true
- /postcss-nested/5.0.6_postcss@8.4.12:
+ /postcss-nested/5.0.6_postcss@8.4.14:
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
dev: true
- /postcss-normalize-charset/5.1.0_postcss@8.4.12:
+ /postcss-normalize-charset/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-normalize-display-values/5.1.0_postcss@8.4.12:
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.1.0_postcss@8.4.12:
- resolution: {integrity: sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==}
+ /postcss-normalize-positions/5.1.1_postcss@8.4.14:
+ resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.1.0_postcss@8.4.12:
- resolution: {integrity: sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==}
+ /postcss-normalize-repeat-style/5.1.1_postcss@8.4.14:
+ resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string/5.1.0_postcss@8.4.12:
+ /postcss-normalize-string/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.12:
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.1.0_postcss@8.4.12:
+ /postcss-normalize-unicode/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- postcss: 8.4.12
+ browserslist: 4.21.1
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url/5.1.0_postcss@8.4.12:
+ /postcss-normalize-url/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.12:
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.1.1_postcss@8.4.12:
- resolution: {integrity: sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==}
+ /postcss-ordered-values/5.1.3_postcss@8.4.14:
+ resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.12
- postcss: 8.4.12
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.1.0_postcss@8.4.12:
+ /postcss-reduce-initial/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.21.1
caniuse-api: 3.0.0
- postcss: 8.4.12
+ postcss: 8.4.14
dev: true
- /postcss-reduce-transforms/5.1.0_postcss@8.4.12:
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-selector-parser/6.0.9:
- resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==}
+ /postcss-selector-parser/6.0.10:
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
dev: true
- /postcss-svgo/5.1.0_postcss@8.4.12:
+ /postcss-svgo/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: true
- /postcss-unique-selectors/5.1.1_postcss@8.4.12:
+ /postcss-unique-selectors/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
dev: true
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.12:
- resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==}
+ /postcss/8.4.14:
+ resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.1
+ nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
dev: true
@@ -4525,7 +3763,7 @@ packages:
resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.1
+ nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
dev: false
@@ -4535,16 +3773,6 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /prepend-http/1.0.4:
- resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /prepend-http/2.0.0:
- resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=}
- engines: {node: '>=4'}
- dev: false
-
/prettier-linter-helpers/1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
@@ -4552,12 +3780,8 @@ packages:
fast-diff: 1.2.0
dev: true
- /process-nextick-args/2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- dev: false
-
/process/0.11.10:
- resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=}
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
dev: false
@@ -4572,34 +3796,10 @@ packages:
resolution: {integrity: sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==}
dev: false
- /proto-list/1.2.4:
- resolution: {integrity: sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=}
- dev: false
-
- /pseudomap/1.0.2:
- resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=}
- dev: false
-
- /pump/3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: false
-
/punycode/2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
- /query-string/5.1.1:
- resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- decode-uri-component: 0.2.0
- object-assign: 4.1.1
- strict-uri-encode: 1.1.0
- dev: false
-
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
@@ -4647,13 +3847,18 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: false
- /react-markdown/7.1.2_a0c521d4794c7ad97f5f4c1c4a7d5818:
- resolution: {integrity: sha512-ibMcc0EbfmbwApqJD8AUr0yls8BSrKzIbHaUsPidQljxToCqFh34nwtu3CXNEItcVJNzpjDHrhK8A+MAh2JW3A==}
+ /react-is/18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ dev: false
+
+ /react-markdown/8.0.3_a0c521d4794c7ad97f5f4c1c4a7d5818:
+ resolution: {integrity: sha512-We36SfqaKoVNpN1QqsZwWSv/OZt5J15LNgTLWynwAN5b265hrQrsjMtlRNwUvS+YyR3yDM8HpTNc4pK9H/Gc0A==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
'@types/hast': 2.3.4
+ '@types/prop-types': 15.7.5
'@types/react': 17.0.39
'@types/unist': 2.0.6
comma-separated-tokens: 2.0.2
@@ -4661,14 +3866,14 @@ packages:
prop-types: 15.8.1
property-information: 6.1.1
react: 17.0.2
- react-is: 17.0.2
+ react-is: 18.2.0
remark-parse: 10.0.1
- remark-rehype: 9.1.0
+ remark-rehype: 10.1.0
space-separated-tokens: 2.0.1
style-to-object: 0.3.0
unified: 10.1.2
unist-util-visit: 4.1.0
- vfile: 5.3.2
+ vfile: 5.3.4
transitivePeerDependencies:
- supports-color
dev: false
@@ -4679,7 +3884,7 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.17.8
+ '@babel/runtime': 7.18.6
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -4695,18 +3900,6 @@ packages:
object-assign: 4.1.1
dev: false
- /readable-stream/2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
- dev: false
-
/readdirp/3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
@@ -4725,12 +3918,13 @@ packages:
safe-regex: 1.1.0
dev: false
- /regexp.prototype.flags/1.4.1:
- resolution: {integrity: sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==}
+ /regexp.prototype.flags/1.4.3:
+ resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ functions-have-names: 1.2.3
dev: true
/regexpp/3.2.0:
@@ -4748,12 +3942,12 @@ packages:
- supports-color
dev: false
- /remark-rehype/9.1.0:
- resolution: {integrity: sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==}
+ /remark-rehype/10.1.0:
+ resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- mdast-util-to-hast: 11.3.0
+ mdast-util-to-hast: 12.1.2
unified: 10.1.2
dev: false
@@ -4763,7 +3957,7 @@ packages:
dev: false
/repeat-string/1.6.1:
- resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
dev: false
@@ -4778,32 +3972,28 @@ packages:
dev: true
/resolve-url/0.2.1:
- resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
+ resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
dev: false
- /resolve/1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
+ /resolve/1.22.1:
+ resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /resolve/2.0.0-next.3:
- resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
+ /resolve/2.0.0-next.4:
+ resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
+ hasBin: true
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
dev: true
- /responselike/1.0.2:
- resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
- dependencies:
- lowercase-keys: 1.0.1
- dev: false
-
/ret/0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
@@ -4814,18 +4004,11 @@ packages:
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
- /rimraf/2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- hasBin: true
- dependencies:
- glob: 7.2.0
- dev: false
-
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
/run-parallel/1.2.0:
@@ -4841,16 +4024,8 @@ packages:
mri: 1.2.0
dev: false
- /safe-buffer/5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: false
-
- /safe-buffer/5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: false
-
/safe-regex/1.1.0:
- resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
+ resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
dev: false
@@ -4880,37 +4055,13 @@ packages:
ajv-keywords: 3.5.2_ajv@6.12.6
dev: true
- /seek-bzip/1.0.6:
- resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
- hasBin: true
- dependencies:
- commander: 2.20.3
- dev: false
-
- /semver-regex/2.0.0:
- resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==}
- engines: {node: '>=6'}
- dev: false
-
- /semver-truncate/1.1.2:
- resolution: {integrity: sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=}
- engines: {node: '>=0.10.0'}
- dependencies:
- semver: 5.7.1
- dev: false
-
- /semver/5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
- hasBin: true
- dev: false
-
/semver/6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
dev: true
- /semver/7.3.5:
- resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
+ /semver/7.3.7:
+ resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -4931,42 +4082,28 @@ packages:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
dev: false
- /shebang-command/1.2.0:
- resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
- engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: false
-
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
-
- /shebang-regex/1.0.0:
- resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
- engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
+ dev: true
/side-channel/1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
- object-inspect: 1.12.0
+ get-intrinsic: 1.1.2
+ object-inspect: 1.12.2
dev: true
- /signal-exit/3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: false
-
/slash/1.0.0:
- resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=}
+ resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
engines: {node: '>=0.10.0'}
dev: false
@@ -5005,27 +4142,6 @@ packages:
use: 3.1.1
dev: false
- /sort-keys-length/1.0.1:
- resolution: {integrity: sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=}
- engines: {node: '>=0.10.0'}
- dependencies:
- sort-keys: 1.1.2
- dev: false
-
- /sort-keys/1.1.2:
- resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-plain-obj: 1.1.0
- dev: false
-
- /sort-keys/2.0.0:
- resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=}
- engines: {node: '>=4'}
- dependencies:
- is-plain-obj: 1.1.0
- dev: false
-
/source-map-js/1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
@@ -5047,7 +4163,7 @@ packages:
dev: false
/source-map/0.5.7:
- resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
dev: false
@@ -5069,54 +4185,46 @@ packages:
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
+ deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
dev: true
/static-extend/0.1.2:
- resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=}
+ resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
engines: {node: '>=0.10.0'}
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
dev: false
- /strict-uri-encode/1.1.0:
- resolution: {integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/string.prototype.matchall/4.0.7:
resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- get-intrinsic: 1.1.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ get-intrinsic: 1.1.2
has-symbols: 1.0.3
internal-slot: 1.0.3
- regexp.prototype.flags: 1.4.1
+ regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
dev: true
- /string.prototype.trimend/1.0.4:
- resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==}
+ /string.prototype.trimend/1.0.5:
+ resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /string.prototype.trimstart/1.0.4:
- resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==}
+ /string.prototype.trimstart/1.0.5:
+ resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /string_decoder/1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
- dependencies:
- safe-buffer: 5.1.2
- dev: false
-
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -5125,58 +4233,36 @@ packages:
dev: true
/strip-bom/3.0.0:
- resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
dev: true
- /strip-dirs/2.1.0:
- resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
- dependencies:
- is-natural-number: 4.0.1
- dev: false
-
- /strip-eof/1.0.0:
- resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
- dev: false
-
/strip-json-comments/3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: true
- /strip-outer/1.0.1:
- resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- escape-string-regexp: 1.0.5
- dev: false
-
/style-to-object/0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
dependencies:
inline-style-parser: 0.1.1
dev: false
- /styled-components/5.3.3_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==}
+ /styled-components/5.3.5_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==}
engines: {node: '>=10'}
+ requiresBuild: true
peerDependencies:
react: '>= 16.8.0'
react-dom: '>= 16.8.0'
react-is: '>= 16.8.0'
dependencies:
- '@babel/helper-module-imports': 7.16.7
- '@babel/traverse': 7.17.3_supports-color@5.5.0
- '@emotion/is-prop-valid': 0.8.8
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/traverse': 7.18.6_supports-color@5.5.0
+ '@emotion/is-prop-valid': 1.1.3
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.0.6_styled-components@5.3.3
+ babel-plugin-styled-components: 2.0.7_styled-components@5.3.5
css-to-react-native: 3.0.0
hoist-non-react-statics: 3.3.2
react: 17.0.2
@@ -5185,13 +4271,13 @@ packages:
supports-color: 5.5.0
dev: false
- /styled-jsx/5.0.0_react@17.0.2:
- resolution: {integrity: sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA==}
+ /styled-jsx/5.0.2_react@17.0.2:
+ resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || 18.x.x'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -5201,15 +4287,15 @@ packages:
react: 17.0.2
dev: false
- /stylehacks/5.1.0_postcss@8.4.12:
+ /stylehacks/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- postcss: 8.4.12
- postcss-selector-parser: 6.0.9
+ browserslist: 4.21.1
+ postcss: 8.4.14
+ postcss-selector-parser: 6.0.10
dev: true
/supports-color/5.5.0:
@@ -5217,6 +4303,7 @@ packages:
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
+ dev: false
/supports-color/7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
@@ -5237,42 +4324,39 @@ packages:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
- css-select: 4.2.1
+ css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
picocolors: 1.0.0
stable: 0.1.8
dev: true
- /tailwindcss/3.0.23_autoprefixer@10.4.4:
- resolution: {integrity: sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==}
+ /tailwindcss/3.0.24:
+ resolution: {integrity: sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==}
engines: {node: '>=12.13.0'}
hasBin: true
- peerDependencies:
- autoprefixer: ^10.0.2
dependencies:
- arg: 5.0.1
- autoprefixer: 10.4.4_postcss@8.4.12
- chalk: 4.1.2
+ arg: 5.0.2
chokidar: 3.5.3
color-name: 1.1.4
- cosmiconfig: 7.0.1
- detective: 5.2.0
+ detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.11
glob-parent: 6.0.2
is-glob: 4.0.3
+ lilconfig: 2.0.5
normalize-path: 3.0.0
- object-hash: 2.2.0
- postcss: 8.4.12
- postcss-js: 4.0.0_postcss@8.4.12
- postcss-load-config: 3.1.3
- postcss-nested: 5.0.6_postcss@8.4.12
- postcss-selector-parser: 6.0.9
+ object-hash: 3.0.0
+ picocolors: 1.0.0
+ postcss: 8.4.14
+ postcss-js: 4.0.0_postcss@8.4.14
+ postcss-load-config: 3.1.4_postcss@8.4.14
+ postcss-nested: 5.0.6_postcss@8.4.14
+ postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
- resolve: 1.22.0
+ resolve: 1.22.1
transitivePeerDependencies:
- ts-node
dev: true
@@ -5282,67 +4366,28 @@ packages:
engines: {node: '>=6'}
dev: true
- /tar-stream/1.6.2:
- resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- bl: 1.2.3
- buffer-alloc: 1.2.0
- end-of-stream: 1.4.4
- fs-constants: 1.0.0
- readable-stream: 2.3.7
- to-buffer: 1.1.1
- xtend: 4.0.2
- dev: false
-
- /temp-dir/1.0.0:
- resolution: {integrity: sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=}
- engines: {node: '>=4'}
- dev: false
-
- /tempfile/2.0.0:
- resolution: {integrity: sha1-awRGhWqbERTRhW/8vlCczLCXcmU=}
- engines: {node: '>=4'}
- dependencies:
- temp-dir: 1.0.0
- uuid: 3.4.0
- dev: false
-
/text-table/0.2.0:
- resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
- /through/2.3.8:
- resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=}
- dev: false
-
- /timed-out/4.0.1:
- resolution: {integrity: sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/tiny-warning/1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /to-buffer/1.1.1:
- resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==}
- dev: false
-
/to-fast-properties/2.0.0:
- resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
dev: false
/to-object-path/0.3.0:
- resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=}
+ resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
dev: false
/to-regex-range/2.1.1:
- resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=}
+ resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
@@ -5366,11 +4411,8 @@ packages:
safe-regex: 1.1.0
dev: false
- /trim-repeated/1.0.0:
- resolution: {integrity: sha1-42RqLqTokTEr9+rObPsFOAvAHCE=}
- engines: {node: '>=0.10.0'}
- dependencies:
- escape-string-regexp: 1.0.5
+ /trim-lines/3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
dev: false
/trough/2.1.0:
@@ -5390,22 +4432,16 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tsutils/3.21.0_typescript@4.6.2:
+ /tsutils/3.21.0_typescript@4.7.3:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.6.2
+ typescript: 4.7.3
dev: true
- /tunnel-agent/0.6.0:
- resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=}
- dependencies:
- safe-buffer: 5.2.1
- dev: false
-
/type-check/0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -5418,28 +4454,21 @@ packages:
engines: {node: '>=10'}
dev: true
- /typescript/4.6.2:
- resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==}
+ /typescript/4.7.3:
+ resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /unbox-primitive/1.0.1:
- resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==}
+ /unbox-primitive/1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- function-bind: 1.1.1
- has-bigints: 1.0.1
+ call-bind: 1.0.2
+ has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
dev: true
- /unbzip2-stream/1.4.3:
- resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
- dependencies:
- buffer: 5.7.1
- through: 2.3.8
- dev: false
-
/unified/10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
@@ -5447,9 +4476,9 @@ packages:
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
- is-plain-obj: 4.0.0
+ is-plain-obj: 4.1.0
trough: 2.1.0
- vfile: 5.3.2
+ vfile: 5.3.4
dev: false
/union-value/1.0.1:
@@ -5476,8 +4505,8 @@ packages:
resolution: {integrity: sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==}
dev: false
- /unist-util-position/4.0.2:
- resolution: {integrity: sha512-Y6+plxR41dOLbyyqVDLuGWgXDmxdXslCSRYQkSDagBnOT9oFsQH0J8FzhirSklUEe0xZTT0WDnAE1gXPaDFljA==}
+ /unist-util-position/4.0.3:
+ resolution: {integrity: sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==}
dependencies:
'@types/unist': 2.0.6
dev: false
@@ -5488,13 +4517,6 @@ packages:
'@types/unist': 2.0.6
dev: false
- /unist-util-visit-parents/4.1.1:
- resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.1.1
- dev: false
-
/unist-util-visit-parents/5.1.0:
resolution: {integrity: sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==}
dependencies:
@@ -5502,14 +4524,6 @@ packages:
unist-util-is: 5.1.1
dev: false
- /unist-util-visit/3.1.0:
- resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.1.1
- unist-util-visit-parents: 4.1.1
- dev: false
-
/unist-util-visit/4.1.0:
resolution: {integrity: sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==}
dependencies:
@@ -5519,20 +4533,31 @@ packages:
dev: false
/unset-value/1.0.0:
- resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=}
+ resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
dependencies:
has-value: 0.3.1
isobject: 3.0.1
dev: false
+ /update-browserslist-db/1.0.4_browserslist@4.21.1:
+ resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.1
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.1.1
/urix/0.1.0:
- resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=}
+ resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
dev: false
@@ -5562,41 +4587,14 @@ packages:
schema-utils: 3.1.1
dev: true
- /url-parse-lax/1.0.0:
- resolution: {integrity: sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=}
- engines: {node: '>=0.10.0'}
- dependencies:
- prepend-http: 1.0.4
- dev: false
-
- /url-parse-lax/3.0.0:
- resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=}
- engines: {node: '>=4'}
- dependencies:
- prepend-http: 2.0.0
- dev: false
-
- /url-to-options/1.0.1:
- resolution: {integrity: sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=}
- engines: {node: '>= 4'}
- dev: false
-
- /use-subscription/1.5.1_react@17.0.2:
- resolution: {integrity: sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- dependencies:
- object-assign: 4.1.1
- react: 17.0.2
- dev: false
-
/use/3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
dev: false
/util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ dev: true
/util/0.10.4:
resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
@@ -5604,20 +4602,14 @@ packages:
inherits: 2.0.3
dev: false
- /uuid/3.4.0:
- resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
- dev: false
-
- /uvu/0.5.3:
- resolution: {integrity: sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==}
+ /uvu/0.5.6:
+ resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
engines: {node: '>=8'}
hasBin: true
dependencies:
dequal: 2.0.2
- diff: 5.0.0
- kleur: 4.1.4
+ diff: 5.1.0
+ kleur: 4.1.5
sade: 1.8.1
dev: false
@@ -5632,8 +4624,8 @@ packages:
unist-util-stringify-position: 3.0.2
dev: false
- /vfile/5.3.2:
- resolution: {integrity: sha512-w0PLIugRY3Crkgw89TeMvHCzqCs/zpreR31hl4D92y6SOE07+bfJe+dK5Q2akwS+i/c801kzjoOr9gMcTe6IAA==}
+ /vfile/5.3.4:
+ resolution: {integrity: sha512-KI+7cnst03KbEyN1+JE504zF5bJBZa+J+CrevLeyIMq0aPU681I2rQ5p4PlnQ6exFtWiUrg26QUdFMnAKR6PIw==}
dependencies:
'@types/unist': 2.0.6
is-buffer: 2.0.5
@@ -5646,24 +4638,18 @@ packages:
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
- is-number-object: 1.0.6
+ is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
dev: true
- /which/1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
- dependencies:
- isexe: 2.0.0
- dev: false
-
/which/2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
+ dev: true
/word-wrap/1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
@@ -5671,15 +4657,12 @@ packages:
dev: true
/wrappy/1.0.2:
- resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
/xtend/4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
-
- /yallist/2.1.2:
- resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=}
- dev: false
+ dev: true
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
@@ -5690,13 +4673,6 @@ packages:
engines: {node: '>= 6'}
dev: true
- /yauzl/2.10.0:
- resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=}
- dependencies:
- buffer-crc32: 0.2.13
- fd-slicer: 1.1.0
- dev: false
-
node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-ErN8Hkn1p/2XmutGVZXg1WZoJiE=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.img.logo-jp/-/wasedatime.core.assets.img.logo-jp-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1
@@ -5746,7 +4722,7 @@ packages:
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
transitivePeerDependencies:
- react-is
dev: false
@@ -5762,7 +4738,7 @@ packages:
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.3_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
transitivePeerDependencies:
- react-is
dev: false
@@ -5800,3 +4776,19 @@ packages:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
+
+ node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha1-5/QLjuULwrwyclYP8m96BV+Mnq8=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.responsive-utils/-/wasedatime.core.ts.utils.responsive-utils-0.0.1.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1
+ name: wasedatime.core.ts.utils.responsive-utils
+ version: 0.0.1
+ peerDependencies:
+ react: ^17.0.1
+ react-dom: ^17.0.1
+ dependencies:
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
+ transitivePeerDependencies:
+ - react-is
+ dev: false
diff --git a/feeds/public/feeds b/feeds/public/feeds
index b3ad739f0..47b5229c5 160000
--- a/feeds/public/feeds
+++ b/feeds/public/feeds
@@ -1 +1 @@
-Subproject commit b3ad739f0aa4a5ff5c82904b1c3c86611d514410
+Subproject commit 47b5229c557aba51375f8c5a8f0864470acd1fe9
diff --git a/package-lock.json b/package-lock.json
deleted file mode 100644
index 3e0dedf91..000000000
--- a/package-lock.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "name": "@wasedatime/web",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {
- "": {
- "name": "@wasedatime/web",
- "hasInstallScript": true,
- "devDependencies": {}
- }
- }
-}
diff --git a/package.json b/package.json
index 5afa64fa5..e6b37f584 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,10 @@
"start": "pnpm recursive run start --workspace-concurrency 6",
"build": "pnpm recursive run build --workspace-concurrency 6",
"build-dev": "pnpm recursive run build-dev --workspace-concurrency 6",
+ "preview": "pnpm recursive run preview --workspace-concurrency 6",
+ "preview-dev": "pnpm recursive run preview-dev --workspace-concurrency 6",
"lint": "pnpm recursive run lint --workspace-concurrency 6",
+ "fix": "pnpm recursive run fix --workspace-concurrency 6",
"format": "pnpm recursive run format --workspace-concurrency 6",
"test": "pnpm recursive run test --workspace-concurrency 6"
},
diff --git a/root/.eslintrc.json b/root/.eslintrc.json
index a01135b12..4347967c3 100644
--- a/root/.eslintrc.json
+++ b/root/.eslintrc.json
@@ -78,7 +78,7 @@
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
- { "devDependencies": ["**/webpack.*.js"], "peerDependencies": true }
+ { "devDependencies": [], "peerDependencies": true }
]
},
"overrides": [
diff --git a/root/package.json b/root/package.json
index 5d10ba37f..adcbd6068 100644
--- a/root/package.json
+++ b/root/package.json
@@ -5,115 +5,128 @@
],
"scripts": {
"preinstall": "npx only-allow pnpm",
- "start": "DONT_PURGE_TAILWIND_CSS=true pnpm run tailwind:build && webpack serve --port 9000 --env isLocal",
+ "start": "DONT_PURGE_TAILWIND_CSS=true pnpm run tailwind:build && vite --port 9000",
+ "build": "vite build",
+ "build-dev": "vite build",
+ "preview": "vite preview --port 9000",
+ "preview-dev": "vite preview --port 9000",
+ "tsc": "tsc",
"fix": "pnpm run format && pnpm run lint:fix",
"lint": "eslint src --ext \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts,tsx}\"",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
- "build": "webpack --mode=production",
- "build-dev": "webpack --mode=production --env isDev",
"local": "concurrently --kill-others \"pnpm start\" \"cd ../syllabus && pnpm start\" \"cd ../campus && pnpm start\" \"cd ../career && pnpm start\" \"cd ../blog && pnpm start\"",
"tailwind:build": "pnpx tailwind build -i ./src/styles/styles.css -o ./src/styles/tailwind-build-output.css"
},
"devDependencies": {
- "@babel/core": "7.17.5",
- "@babel/eslint-parser": "7.17.0",
- "@babel/plugin-transform-runtime": "7.17.0",
- "@babel/preset-env": "7.16.11",
- "@babel/preset-typescript": "7.16.7",
- "@babel/runtime": "7.17.2",
- "@types/systemjs": "6.1.1",
- "@typescript-eslint/eslint-plugin": "5.14.0",
- "@typescript-eslint/parser": "5.14.0",
- "@vue/preload-webpack-plugin": "2.0.0",
- "autoprefixer": "10.4.2",
- "awesome-typescript-loader": "5.2.1",
- "babel-plugin-styled-components": "2.0.6",
- "concurrently": "7.0.0",
- "copy-webpack-plugin": "10.2.4",
- "cssnano": "5.1.4",
- "eslint": "8.10.0",
+ "@babel/core": "7.18.2",
+ "@babel/eslint-parser": "7.18.2",
+ "@babel/plugin-syntax-flow": "7.17.12",
+ "@babel/plugin-transform-react-jsx": "7.17.12",
+ "@babel/plugin-transform-runtime": "7.18.2",
+ "@babel/preset-env": "7.18.2",
+ "@babel/preset-typescript": "7.17.12",
+ "@babel/runtime": "7.18.3",
+ "@types/node": "17.0.41",
+ "@types/react": "17.0.39",
+ "@types/react-dom": "17.0.13",
+ "@typescript-eslint/eslint-plugin": "5.27.1",
+ "@typescript-eslint/parser": "5.27.1",
+ "@vitejs/plugin-react": "1.3.2",
+ "autoprefixer": "10.4.7",
+ "babel-plugin-styled-components": "2.0.7",
+ "concurrently": "7.2.1",
+ "cssnano": "5.1.11",
+ "dotenv": "16.0.1",
+ "eslint": "8.17.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
- "eslint-config-react-app": "7.0.0",
- "eslint-plugin-import": "2.25.4",
+ "eslint-config-react-app": "7.0.1",
+ "eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.0.0",
- "eslint-plugin-react": "7.29.4",
- "html-webpack-plugin": "5.5.0",
- "i18next": "21.6.13",
- "mini-css-extract-plugin": "2.6.0",
- "postcss": "8.4.8",
- "postcss-loader": "5.3.0",
- "prettier": "2.5.1",
- "prettier-eslint": "13.0.0",
- "style-loader": "3.3.1",
- "tailwindcss": "3.0.23",
- "ts-config-single-spa": "2.0.1",
- "typescript": "4.6.2",
- "webpack": "5.70.0",
- "webpack-cli": "4.9.2",
- "webpack-config-single-spa-ts": "4.1.2",
- "webpack-dev-server": "4.7.4",
- "webpack-merge": "5.8.0",
- "workbox-webpack-plugin": "6.5.1"
+ "eslint-plugin-react": "7.30.0",
+ "eslint-plugin-react-hooks": "4.5.0",
+ "i18next": "21.8.9",
+ "postcss": "8.4.14",
+ "prettier": "2.6.2",
+ "prettier-eslint": "15.0.1",
+ "prop-types": "15.8.1",
+ "react-is": "18.1.0",
+ "react-native": "0.68.2",
+ "tailwindcss": "3.0.24",
+ "ts-config-single-spa": "3.0.0",
+ "typescript": "4.7.3",
+ "vite": "2.9.10",
+ "vite-plugin-dynamic-import": "0.9.6",
+ "vite-plugin-ejs": "1.4.4",
+ "vite-plugin-html": "3.2.0",
+ "vite-plugin-html-env": "1.1.2",
+ "vite-plugin-import-maps": "0.1.2",
+ "vite-plugin-pwa": "0.12.0"
},
"dependencies": {
- "@aws-amplify/auth": "4.5.0",
- "@aws-amplify/core": "4.5.0",
- "@bit/wasedatime.core.assets.text-logo": "0.0.1",
- "@bit/wasedatime.core.theme.colors": "0.0.5",
+ "@aws-amplify/auth": "4.5.6",
+ "@aws-amplify/core": "4.5.6",
+ "@bit/wasedatime.core.theme.colors": "0.0.4",
"@bit/wasedatime.core.ts.constants.langs": "0.0.5",
"@bit/wasedatime.core.ts.styles.overlay": "0.0.1",
"@bit/wasedatime.core.ts.styles.wrapper": "0.0.1",
- "@bit/wasedatime.core.ts.ui.header": "0.2.17",
+ "@bit/wasedatime.core.ts.ui.header": "0.2.21",
"@bit/wasedatime.core.ts.ui.language-menu": "0.1.2",
- "@bit/wasedatime.core.ts.ui.loading-spinner": "0.1.2",
- "@bit/wasedatime.core.ts.ui.logo": "0.0.9",
+ "@bit/wasedatime.core.ts.ui.loading-spinner": "0.1.5",
+ "@bit/wasedatime.core.ts.ui.logo": "0.1.2",
"@bit/wasedatime.core.ts.ui.modal": "0.0.8",
"@bit/wasedatime.core.ts.ui.sign-in-modal": "0.1.6",
"@bit/wasedatime.core.ts.utils.i18n": "0.0.4",
"@bit/wasedatime.core.ts.utils.responsive-utils": "0.0.1",
"@bit/wasedatime.core.ts.utils.user": "0.0.4",
- "@emotion/react": "^11.9.0",
- "@emotion/styled": "^11.8.1",
- "@fortawesome/fontawesome-svg-core": "1.3.0",
- "@fortawesome/free-brands-svg-icons": "6.0.0",
- "@fortawesome/free-solid-svg-icons": "6.0.0",
- "@fortawesome/react-fontawesome": "0.1.17",
- "@mui/icons-material": "^5.6.1",
- "@mui/material": "^5.6.1",
- "@types/react": "17.0.39",
- "@types/react-dom": "17.0.13",
+ "@emotion/react": "11.9.0",
+ "@emotion/styled": "11.8.1",
+ "@fortawesome/fontawesome-svg-core": "6.1.1",
+ "@fortawesome/free-brands-svg-icons": "6.1.1",
+ "@fortawesome/free-solid-svg-icons": "6.1.1",
+ "@fortawesome/react-fontawesome": "0.1.18",
+ "@mui/icons-material": "5.8.3",
+ "@mui/material": "5.8.3",
+ "@types/react": "18.0.12",
+ "@types/react-dom": "18.0.5",
"@types/react-router-dom": "5.3.3",
- "@types/styled-components": "5.1.24",
- "@types/systemjs": "6.1.1",
- "@types/webpack-env": "1.16.3",
- "css-loader": "6.7.1",
- "history": "^5.3.0",
- "i18next": "19.9.2",
+ "@types/styled-components": "5.1.25",
+ "@wasedatime/root-config": "link:",
+ "daisyui": "2.15.2",
+ "history": "5.3.0",
+ "i18next": "21.8.9",
"localforage": "1.10.0",
"lodash": "4.17.21",
"react": "17.0.2",
- "react-error-boundary": "^3.1.4",
+ "react-dom": "17.0.2",
+ "react-error-boundary": "3.1.4",
"react-ga": "3.3.0",
"react-helmet": "6.1.0",
- "react-i18next": "11.15.6",
- "react-responsive": "8.2.0",
- "react-router-dom": "^6.3.0",
+ "react-i18next": "11.17.0",
+ "react-responsive": "9.0.0-beta.10",
+ "react-router-dom": "6.3.0",
"react-vertical-timeline-component": "3.5.2",
- "single-spa": "5.9.3",
- "single-spa-layout": "1.6.0",
+ "single-spa": "5.9.4",
+ "single-spa-layout": "2.1.0",
"single-spa-react": "4.6.1",
- "styled-components": "5.3.3",
- "ts-loader": "9.2.8",
- "webpack-pwa-manifest": "4.3.0",
- "workbox-cacheable-response": "6.5.1",
- "workbox-core": "6.5.1",
- "workbox-expiration": "6.5.1",
- "workbox-precaching": "6.5.1",
- "workbox-routing": "6.5.1",
- "workbox-strategies": "6.5.1"
+ "styled-components": "5.3.5",
+ "workbox-cacheable-response": "6.5.3",
+ "workbox-core": "6.5.3",
+ "workbox-expiration": "6.5.3",
+ "workbox-precaching": "6.5.3",
+ "workbox-routing": "6.5.3",
+ "workbox-strategies": "6.5.3",
+ "workbox-window": "6.5.3"
+ },
+ "peerDependencies": {
+ "@babel/plugin-syntax-flow": "7.17.12",
+ "@babel/plugin-transform-react-jsx": "7.17.12",
+ "eslint-plugin-react-hooks": "4.5.0",
+ "prop-types": "15.8.1",
+ "react-is": "18.1.0",
+ "react-native": "0.68.2"
}
}
diff --git a/root/pnpm-lock.yaml b/root/pnpm-lock.yaml
index f17728168..135d9c901 100644
--- a/root/pnpm-lock.yaml
+++ b/root/pnpm-lock.yaml
@@ -1,212 +1,215 @@
lockfileVersion: 5.3
specifiers:
- '@aws-amplify/auth': 4.5.0
- '@aws-amplify/core': 4.5.0
- '@babel/core': 7.17.5
- '@babel/eslint-parser': 7.17.0
- '@babel/plugin-transform-runtime': 7.17.0
- '@babel/preset-env': 7.16.11
- '@babel/preset-typescript': 7.16.7
- '@babel/runtime': 7.17.2
- '@bit/wasedatime.core.assets.text-logo': 0.0.1
- '@bit/wasedatime.core.theme.colors': 0.0.5
+ '@aws-amplify/auth': 4.5.6
+ '@aws-amplify/core': 4.5.6
+ '@babel/core': 7.18.2
+ '@babel/eslint-parser': 7.18.2
+ '@babel/plugin-syntax-flow': 7.17.12
+ '@babel/plugin-transform-react-jsx': 7.17.12
+ '@babel/plugin-transform-runtime': 7.18.2
+ '@babel/preset-env': 7.18.2
+ '@babel/preset-typescript': 7.17.12
+ '@babel/runtime': 7.18.3
+ '@bit/wasedatime.core.theme.colors': 0.0.4
'@bit/wasedatime.core.ts.constants.langs': 0.0.5
'@bit/wasedatime.core.ts.styles.overlay': 0.0.1
'@bit/wasedatime.core.ts.styles.wrapper': 0.0.1
- '@bit/wasedatime.core.ts.ui.header': 0.2.17
+ '@bit/wasedatime.core.ts.ui.header': 0.2.21
'@bit/wasedatime.core.ts.ui.language-menu': 0.1.2
- '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.2
- '@bit/wasedatime.core.ts.ui.logo': 0.0.9
+ '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.5
+ '@bit/wasedatime.core.ts.ui.logo': 0.1.2
'@bit/wasedatime.core.ts.ui.modal': 0.0.8
'@bit/wasedatime.core.ts.ui.sign-in-modal': 0.1.6
'@bit/wasedatime.core.ts.utils.i18n': 0.0.4
'@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1
'@bit/wasedatime.core.ts.utils.user': 0.0.4
- '@emotion/react': ^11.9.0
- '@emotion/styled': ^11.8.1
- '@fortawesome/fontawesome-svg-core': 1.3.0
- '@fortawesome/free-brands-svg-icons': 6.0.0
- '@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17
- '@mui/icons-material': ^5.6.1
- '@mui/material': ^5.6.1
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
+ '@emotion/react': 11.9.0
+ '@emotion/styled': 11.8.1
+ '@fortawesome/fontawesome-svg-core': 6.1.1
+ '@fortawesome/free-brands-svg-icons': 6.1.1
+ '@fortawesome/free-solid-svg-icons': 6.1.1
+ '@fortawesome/react-fontawesome': 0.1.18
+ '@mui/icons-material': 5.8.3
+ '@mui/material': 5.8.3
+ '@types/node': 17.0.41
+ '@types/react': 18.0.12
+ '@types/react-dom': 18.0.5
'@types/react-router-dom': 5.3.3
- '@types/styled-components': 5.1.24
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
- '@typescript-eslint/eslint-plugin': 5.14.0
- '@typescript-eslint/parser': 5.14.0
- '@vue/preload-webpack-plugin': 2.0.0
- autoprefixer: 10.4.2
- awesome-typescript-loader: 5.2.1
- babel-plugin-styled-components: 2.0.6
- concurrently: 7.0.0
- copy-webpack-plugin: 10.2.4
- css-loader: 6.7.1
- cssnano: 5.1.4
- eslint: 8.10.0
+ '@types/styled-components': 5.1.25
+ '@typescript-eslint/eslint-plugin': 5.27.1
+ '@typescript-eslint/parser': 5.27.1
+ '@vitejs/plugin-react': 1.3.2
+ '@wasedatime/root-config': 'link:'
+ autoprefixer: 10.4.7
+ babel-plugin-styled-components: 2.0.7
+ concurrently: 7.2.1
+ cssnano: 5.1.11
+ daisyui: 2.15.2
+ dotenv: 16.0.1
+ eslint: 8.17.0
eslint-config-airbnb: 19.0.4
eslint-config-prettier: 8.5.0
- eslint-config-react-app: 7.0.0
- eslint-plugin-import: 2.25.4
+ eslint-config-react-app: 7.0.1
+ eslint-plugin-import: 2.26.0
eslint-plugin-jsx-a11y: 6.5.1
eslint-plugin-prefer-arrow: 1.2.3
eslint-plugin-prettier: 4.0.0
- eslint-plugin-react: 7.29.4
- history: ^5.3.0
- html-webpack-plugin: 5.5.0
- i18next: 19.9.2
+ eslint-plugin-react: 7.30.0
+ eslint-plugin-react-hooks: 4.5.0
+ history: 5.3.0
+ i18next: 21.8.9
localforage: 1.10.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.6.0
- postcss: 8.4.8
- postcss-loader: 5.3.0
- prettier: 2.5.1
- prettier-eslint: 13.0.0
+ postcss: 8.4.14
+ prettier: 2.6.2
+ prettier-eslint: 15.0.1
+ prop-types: 15.8.1
react: 17.0.2
- react-error-boundary: ^3.1.4
+ react-dom: 17.0.2
+ react-error-boundary: 3.1.4
react-ga: 3.3.0
react-helmet: 6.1.0
- react-i18next: 11.15.6
- react-responsive: 8.2.0
- react-router-dom: ^6.3.0
+ react-i18next: 11.17.0
+ react-is: 18.1.0
+ react-native: 0.68.2
+ react-responsive: 9.0.0-beta.10
+ react-router-dom: 6.3.0
react-vertical-timeline-component: 3.5.2
- single-spa: 5.9.3
- single-spa-layout: 1.6.0
+ single-spa: 5.9.4
+ single-spa-layout: 2.1.0
single-spa-react: 4.6.1
- style-loader: 3.3.1
- styled-components: 5.3.3
- tailwindcss: 3.0.23
- ts-config-single-spa: 2.0.1
- ts-loader: 9.2.8
- typescript: 4.6.2
- webpack: 5.70.0
- webpack-cli: 4.9.2
- webpack-config-single-spa-ts: 4.1.2
- webpack-dev-server: 4.7.4
- webpack-merge: 5.8.0
- webpack-pwa-manifest: 4.3.0
- workbox-cacheable-response: 6.5.1
- workbox-core: 6.5.1
- workbox-expiration: 6.5.1
- workbox-precaching: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
- workbox-webpack-plugin: 6.5.1
+ styled-components: 5.3.5
+ tailwindcss: 3.0.24
+ ts-config-single-spa: 3.0.0
+ typescript: 4.7.3
+ vite: 2.9.10
+ vite-plugin-dynamic-import: 0.9.6
+ vite-plugin-ejs: 1.4.4
+ vite-plugin-html: 3.2.0
+ vite-plugin-html-env: 1.1.2
+ vite-plugin-import-maps: 0.1.2
+ vite-plugin-pwa: 0.12.0
+ workbox-cacheable-response: 6.5.3
+ workbox-core: 6.5.3
+ workbox-expiration: 6.5.3
+ workbox-precaching: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
+ workbox-window: 6.5.3
dependencies:
- '@aws-amplify/auth': 4.5.0
- '@aws-amplify/core': 4.5.0
- '@bit/wasedatime.core.assets.text-logo': node.bit.dev/@bit/wasedatime.core.assets.text-logo/0.0.1_react@17.0.2
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react@17.0.2
- '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.ui.header': node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17_f5a915282880b6195cdb1046e80c5e3a
- '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.2_f5a915282880b6195cdb1046e80c5e3a
- '@bit/wasedatime.core.ts.ui.loading-spinner': node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react@17.0.2
- '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react@17.0.2
- '@bit/wasedatime.core.ts.ui.modal': node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8
- '@bit/wasedatime.core.ts.ui.sign-in-modal': node.bit.dev/@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6_e46095638471543ba34100765238dc47
- '@bit/wasedatime.core.ts.utils.i18n': node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_i18next@19.9.2+react@17.0.2
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.utils.user': node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_react@17.0.2
- '@emotion/react': 11.9.0_7c3ecd89bd75b61b41f2029715ea2305
- '@emotion/styled': 11.8.1_aa14098c2ea011cbc634dc0640a5389f
- '@fortawesome/fontawesome-svg-core': 1.3.0
- '@fortawesome/free-brands-svg-icons': 6.0.0
- '@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
- '@mui/icons-material': 5.6.1_5747690979a2fb029bf71365b1632d30
- '@mui/material': 5.6.1_475d8a8490f8dc103fa6bfa97d06671c
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
+ '@aws-amplify/auth': 4.5.6_react-native@0.68.2
+ '@aws-amplify/core': 4.5.6_react-native@0.68.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.4
+ '@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.ui.header': node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21_a6a614d057c08015d57b9942d6d0f07b
+ '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.2_a6a614d057c08015d57b9942d6d0f07b
+ '@bit/wasedatime.core.ts.ui.loading-spinner': node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.ui.modal': node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8_react-dom@17.0.2
+ '@bit/wasedatime.core.ts.ui.sign-in-modal': node.bit.dev/@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6_44372ad526450f77d720d3fe51751afb
+ '@bit/wasedatime.core.ts.utils.i18n': node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_9724892b3df2999a6ee0ebb64e8fe4b0
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.utils.user': node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_6e7d8002d9aed4660df23491d430a582
+ '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
+ '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
+ '@fortawesome/fontawesome-svg-core': 6.1.1
+ '@fortawesome/free-brands-svg-icons': 6.1.1
+ '@fortawesome/free-solid-svg-icons': 6.1.1
+ '@fortawesome/react-fontawesome': 0.1.18_6909f5698ccb6b468185370814560628
+ '@mui/icons-material': 5.8.3_8839cb9fb61448aa836a88f035666937
+ '@mui/material': 5.8.3_4999d578384e5752dd6357c6002e0ea9
+ '@types/react': 18.0.12
+ '@types/react-dom': 18.0.5
'@types/react-router-dom': 5.3.3
- '@types/styled-components': 5.1.24
- '@types/systemjs': 6.1.1
- '@types/webpack-env': 1.16.3
- css-loader: 6.7.1_webpack@5.70.0
+ '@types/styled-components': 5.1.25
+ '@wasedatime/root-config': 'link:'
+ daisyui: 2.15.2_a191cbaa25c4a0a9f05cc78eac153be7
history: 5.3.0
- i18next: 19.9.2
+ i18next: 21.8.9
localforage: 1.10.0
lodash: 4.17.21
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-error-boundary: 3.1.4_react@17.0.2
- react-ga: 3.3.0_react@17.0.2
+ react-ga: 3.3.0_prop-types@15.8.1+react@17.0.2
react-helmet: 6.1.0_react@17.0.2
- react-i18next: 11.15.6_i18next@19.9.2+react@17.0.2
- react-responsive: 8.2.0_react@17.0.2
- react-router-dom: 6.3.0_react@17.0.2
+ react-i18next: 11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0
+ react-responsive: 9.0.0-beta.10_react@17.0.2
+ react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2
react-vertical-timeline-component: 3.5.2_react@17.0.2
- single-spa: 5.9.3
- single-spa-layout: 1.6.0
- single-spa-react: 4.6.1_41ec47b032f4824cf690f95377e02aa6
- styled-components: 5.3.3_react@17.0.2
- ts-loader: 9.2.8_typescript@4.6.2+webpack@5.70.0
- webpack-pwa-manifest: 4.3.0
- workbox-cacheable-response: 6.5.1
- workbox-core: 6.5.1
- workbox-expiration: 6.5.1
- workbox-precaching: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
+ single-spa: 5.9.4
+ single-spa-layout: 2.1.0
+ single-spa-react: 4.6.1_f9b20e8c2eeb44bdeef755a440c59c76
+ styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
+ workbox-cacheable-response: 6.5.3
+ workbox-core: 6.5.3
+ workbox-expiration: 6.5.3
+ workbox-precaching: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
+ workbox-window: 6.5.3
devDependencies:
- '@babel/core': 7.17.5
- '@babel/eslint-parser': 7.17.0_@babel+core@7.17.5+eslint@8.10.0
- '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
- '@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
- '@vue/preload-webpack-plugin': 2.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7
- autoprefixer: 10.4.2_postcss@8.4.8
- awesome-typescript-loader: 5.2.1_typescript@4.6.2
- babel-plugin-styled-components: 2.0.6_styled-components@5.3.3
- concurrently: 7.0.0
- copy-webpack-plugin: 10.2.4_webpack@5.70.0
- cssnano: 5.1.4_postcss@8.4.8
- eslint: 8.10.0
- eslint-config-airbnb: 19.0.4_d088d899c01a254e9346ef40899b7d56
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- eslint-config-react-app: 7.0.0_eslint@8.10.0+typescript@4.6.2
- eslint-plugin-import: 2.25.4_eslint@8.10.0
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
- eslint-plugin-prefer-arrow: 1.2.3_eslint@8.10.0
- eslint-plugin-prettier: 4.0.0_f3d13a703a9c1079e3d1af6044603beb
- eslint-plugin-react: 7.29.4_eslint@8.10.0
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- mini-css-extract-plugin: 2.6.0_webpack@5.70.0
- postcss: 8.4.8
- postcss-loader: 5.3.0_postcss@8.4.8+webpack@5.70.0
- prettier: 2.5.1
- prettier-eslint: 13.0.0
- style-loader: 3.3.1_webpack@5.70.0
- tailwindcss: 3.0.23_autoprefixer@10.4.2
- ts-config-single-spa: 2.0.1
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-config-single-spa-ts: 4.1.2_6ed29217d3dea9188d7e08e233aa8cd3
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
- workbox-webpack-plugin: 6.5.1_webpack@5.70.0
+ '@babel/core': 7.18.2
+ '@babel/eslint-parser': 7.18.2_@babel+core@7.18.2+eslint@8.17.0
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-env': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2
+ '@babel/runtime': 7.18.3
+ '@types/node': 17.0.41
+ '@typescript-eslint/eslint-plugin': 5.27.1_043f48e0ee10c350c28cdede89899bc7
+ '@typescript-eslint/parser': 5.27.1_eslint@8.17.0+typescript@4.7.3
+ '@vitejs/plugin-react': 1.3.2
+ autoprefixer: 10.4.7_postcss@8.4.14
+ babel-plugin-styled-components: 2.0.7_styled-components@5.3.5
+ concurrently: 7.2.1
+ cssnano: 5.1.11_postcss@8.4.14
+ dotenv: 16.0.1
+ eslint: 8.17.0
+ eslint-config-airbnb: 19.0.4_790ac381f0561db09e4c291cb829676e
+ eslint-config-prettier: 8.5.0_eslint@8.17.0
+ eslint-config-react-app: 7.0.1_1caf21791a09b9d7407b2a14d5d2031e
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.17.0
+ eslint-plugin-prefer-arrow: 1.2.3_eslint@8.17.0
+ eslint-plugin-prettier: 4.0.0_a088652d234d3f0e6595b5f3073e25de
+ eslint-plugin-react: 7.30.0_eslint@8.17.0
+ eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0
+ postcss: 8.4.14
+ prettier: 2.6.2
+ prettier-eslint: 15.0.1
+ prop-types: 15.8.1
+ react-is: 18.1.0
+ react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
+ tailwindcss: 3.0.24
+ ts-config-single-spa: 3.0.0
+ typescript: 4.7.3
+ vite: 2.9.10
+ vite-plugin-dynamic-import: 0.9.6
+ vite-plugin-ejs: 1.4.4
+ vite-plugin-html: 3.2.0_vite@2.9.10
+ vite-plugin-html-env: 1.1.2_vite@2.9.10
+ vite-plugin-import-maps: 0.1.2
+ vite-plugin-pwa: 0.12.0_vite@2.9.10
packages:
- /@ampproject/remapping/2.1.2:
- resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
+ /@ampproject/remapping/2.2.0:
+ resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.4
+ '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/trace-mapping': 0.3.13
dev: true
- /@apideck/better-ajv-errors/0.3.3_ajv@8.11.0:
- resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==}
+ /@apideck/better-ajv-errors/0.3.4_ajv@8.11.0:
+ resolution: {integrity: sha512-Ic2d8ZT6HJiSikGVQvSklaFyw1OUv4g8sDOxa0PXSlbmN/3gL5IO1WYY9DOwTDqOFmjWoqG1yaaKnPDqYCE9KA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
@@ -217,33 +220,33 @@ packages:
leven: 3.1.0
dev: true
- /@aws-amplify/auth/4.5.0:
- resolution: {integrity: sha512-L8AgQPzseev7IdxwHG/qD1GCCCEGNvu4iSEnn1HZSsAHAr3G2Li/l+8/QzXGvavYyCx/ruJj5Whs9YPpZ/PEng==}
+ /@aws-amplify/auth/4.5.6_react-native@0.68.2:
+ resolution: {integrity: sha512-G0pxqKaVouuhVK6qH0EBHG5ziNVRT7AzKSj8jN2I7klHtFJHnY/F6NEEjr/e99IgbyzspjWX5xFRBAQecgF44A==}
dependencies:
- '@aws-amplify/cache': 4.0.38
- '@aws-amplify/core': 4.5.0
- amazon-cognito-identity-js: 5.2.8
+ '@aws-amplify/cache': 4.0.44_react-native@0.68.2
+ '@aws-amplify/core': 4.5.6_react-native@0.68.2
+ amazon-cognito-identity-js: 5.2.9
crypto-js: 4.1.1
transitivePeerDependencies:
- encoding
- react-native
dev: false
- /@aws-amplify/cache/4.0.38:
- resolution: {integrity: sha512-ZM9Z+D4HvCaL86DdlV7Iz2FwaYSXviDk6Bd1f/IU3KYWksqScGhz7/Lbxmi+O3qOayRDy6VToHaa3QEM/4F/bg==}
+ /@aws-amplify/cache/4.0.44_react-native@0.68.2:
+ resolution: {integrity: sha512-lfybDAXaJWzHPprPJILPcSNCfow9xkgskP5tkNdG2/dlkgTwN2aUJVkQdguO5q5zUxgM0xoS7bbVY3kvoQ2b6Q==}
dependencies:
- '@aws-amplify/core': 4.5.0
+ '@aws-amplify/core': 4.5.6_react-native@0.68.2
transitivePeerDependencies:
- react-native
dev: false
- /@aws-amplify/core/4.5.0:
- resolution: {integrity: sha512-V6x7n26flxPNpQI9nrXUotfuIlxw2ctFaLAXXnfsKaR9GnwZjGn7ML4czjhzNypq5qUMSofr/cDno8fp43/elw==}
+ /@aws-amplify/core/4.5.6_react-native@0.68.2:
+ resolution: {integrity: sha512-TmtKtxMno7TubMqiXQpqdFIfIBm2bCqK6sW1BUk8N8WoHnuA3hBPf1qmZeDHTaSjTFBV1AOxfVgVZ9RGErZQzw==}
dependencies:
'@aws-crypto/sha256-js': 1.0.0-alpha.0
- '@aws-sdk/client-cloudwatch-logs': 3.6.1
- '@aws-sdk/client-cognito-identity': 3.6.1
- '@aws-sdk/credential-provider-cognito-identity': 3.6.1
+ '@aws-sdk/client-cloudwatch-logs': 3.6.1_react-native@0.68.2
+ '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.2
+ '@aws-sdk/credential-provider-cognito-identity': 3.6.1_react-native@0.68.2
'@aws-sdk/types': 3.6.1
'@aws-sdk/util-hex-encoding': 3.6.1
universal-cookie: 4.0.4
@@ -308,7 +311,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/client-cloudwatch-logs/3.6.1:
+ /@aws-sdk/client-cloudwatch-logs/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-QOxIDnlVTpnwJ26Gap6RGz61cDLH6TKrIp30VqwdMeT1pCGy8mn9rWln6XA+ymkofHy/08RfpGp+VN4axwd4Lw==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -322,7 +325,7 @@ packages:
'@aws-sdk/middleware-content-length': 3.6.1
'@aws-sdk/middleware-host-header': 3.6.1
'@aws-sdk/middleware-logger': 3.6.1
- '@aws-sdk/middleware-retry': 3.6.1
+ '@aws-sdk/middleware-retry': 3.6.1_react-native@0.68.2
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -342,12 +345,12 @@ packages:
'@aws-sdk/util-user-agent-node': 3.6.1
'@aws-sdk/util-utf8-browser': 3.6.1
'@aws-sdk/util-utf8-node': 3.6.1
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- react-native
dev: false
- /@aws-sdk/client-cognito-identity/3.6.1:
+ /@aws-sdk/client-cognito-identity/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-FMj2GR9R5oCKb3/NI16GIvWeHcE4uX42fBAaQKPbjg2gALFDx9CcJYsdOtDP37V89GtPyZilLv6GJxrwJKzYGg==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -361,7 +364,7 @@ packages:
'@aws-sdk/middleware-content-length': 3.6.1
'@aws-sdk/middleware-host-header': 3.6.1
'@aws-sdk/middleware-logger': 3.6.1
- '@aws-sdk/middleware-retry': 3.6.1
+ '@aws-sdk/middleware-retry': 3.6.1_react-native@0.68.2
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -381,7 +384,7 @@ packages:
'@aws-sdk/util-user-agent-node': 3.6.1
'@aws-sdk/util-utf8-browser': 3.6.1
'@aws-sdk/util-utf8-node': 3.6.1
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- react-native
dev: false
@@ -395,11 +398,11 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-cognito-identity/3.6.1:
+ /@aws-sdk/credential-provider-cognito-identity/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-uJ9q+yq+Dhdo32gcv0p/AT7sKSAUH0y4ts9XRK/vx0dW9Q3XJy99mOJlq/6fkh4LfWeavJJlaCo9lSHNMWXx4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@aws-sdk/client-cognito-identity': 3.6.1
+ '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.2
'@aws-sdk/property-provider': 3.6.1
'@aws-sdk/types': 3.6.1
tslib: 1.14.1
@@ -519,14 +522,14 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-retry/3.6.1:
+ /@aws-sdk/middleware-retry/3.6.1_react-native@0.68.2:
resolution: {integrity: sha512-WHeo4d2jsXxBP+cec2SeLb0btYXwYXuE56WLmNt0RvJYmiBzytUeGJeRa9HuwV574kgigAuHGCeHlPO36G4Y0Q==}
engines: {node: '>= 10.0.0'}
dependencies:
'@aws-sdk/protocol-http': 3.6.1
'@aws-sdk/service-error-classification': 3.6.1
'@aws-sdk/types': 3.6.1
- react-native-get-random-values: 1.7.2
+ react-native-get-random-values: 1.8.0_react-native@0.68.2
tslib: 1.14.1
uuid: 3.4.0
transitivePeerDependencies:
@@ -727,7 +730,7 @@ packages:
resolution: {integrity: sha512-0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg==}
engines: {node: '>= 12.0.0'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/@aws-sdk/util-uri-escape/3.6.1:
@@ -774,37 +777,31 @@ packages:
tslib: 1.14.1
dev: false
- /@babel/code-frame/7.12.11:
- resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
- dependencies:
- '@babel/highlight': 7.17.9
- dev: true
-
/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.17.9
+ '@babel/highlight': 7.17.12
- /@babel/compat-data/7.17.7:
- resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
+ /@babel/compat-data/7.17.10:
+ resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.17.5:
- resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==}
+ /@babel/core/7.18.2:
+ resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.1.2
+ '@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helpers': 7.17.9
- '@babel/parser': 7.17.9
+ '@babel/generator': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helpers': 7.18.2
+ '@babel/parser': 7.18.3
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -814,94 +811,94 @@ packages:
- supports-color
dev: true
- /@babel/eslint-parser/7.17.0_@babel+core@7.17.5+eslint@8.10.0:
- resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
+ /@babel/eslint-parser/7.18.2_@babel+core@7.18.2+eslint@8.17.0:
+ resolution: {integrity: sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': '>=7.11.0'
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.17.5
- eslint: 8.10.0
+ '@babel/core': 7.18.2
+ eslint: 8.17.0
eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: true
- /@babel/generator/7.17.9:
- resolution: {integrity: sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==}
+ /@babel/generator/7.18.2:
+ resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
+ '@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
- source-map: 0.5.7
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
/@babel/helper-builder-binary-assignment-operator-visitor/7.16.7:
resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
+ /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.17.7
- '@babel/core': 7.17.5
+ '@babel/compat-data': 7.17.10
+ '@babel/core': 7.18.2
'@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.2
+ browserslist: 4.20.3
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.5:
- resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==}
+ /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
+ /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
regexpu-core: 5.0.1
dev: true
- /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.5:
+ /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.2:
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.9
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/traverse': 7.18.2
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.0
@@ -910,17 +907,15 @@ packages:
- supports-color
dev: true
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
+ /@babel/helper-environment-visitor/7.18.2:
+ resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
/@babel/helper-explode-assignable-expression/7.16.7:
resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
/@babel/helper-function-name/7.17.9:
@@ -928,39 +923,39 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
/@babel/helper-member-expression-to-functions/7.17.7:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
- /@babel/helper-module-transforms/7.17.7:
- resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==}
+ /@babel/helper-module-transforms/7.18.0:
+ resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.17.7
+ '@babel/helper-simple-access': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -969,11 +964,11 @@ packages:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
- /@babel/helper-plugin-utils/7.16.7:
- resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==}
+ /@babel/helper-plugin-utils/7.17.12:
+ resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==}
engines: {node: '>=6.9.0'}
/@babel/helper-remap-async-to-generator/7.16.8:
@@ -982,43 +977,43 @@ packages:
dependencies:
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.16.7:
- resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
+ /@babel/helper-replace-supers/7.18.2:
+ resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-simple-access/7.17.7:
- resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
+ /@babel/helper-simple-access/7.18.2:
+ resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.16.0:
resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
dev: true
/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.18.2
/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
@@ -1035,1010 +1030,1102 @@ packages:
dependencies:
'@babel/helper-function-name': 7.17.9
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.17.9:
- resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==}
+ /@babel/helpers/7.18.2:
+ resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/highlight/7.17.9:
- resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==}
+ /@babel/highlight/7.17.12:
+ resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.17.9:
- resolution: {integrity: sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==}
+ /@babel/parser/7.18.3:
+ resolution: {integrity: sha512-rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.18.2
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
+ /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-remap-async-to-generator': 7.16.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
+ /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.5:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
+ /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.17.9_@babel+core@7.17.5:
- resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==}
+ /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.5
+ '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.2
charcodes: 0.2.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2
+ dev: true
+
+ /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
+ /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
+ /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
+ /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5
+ '@babel/compat-data': 7.17.10
+ '@babel/core': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
+ /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2
dev: true
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.5:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
+ /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
+ /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
+ /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.2:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.5:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.2:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.2:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==}
+ /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.18.2:
+ resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
+ /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==}
+ /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.2:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.2:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.2:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.2:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
+ /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
+ /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-remap-async-to-generator': 7.16.8
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
+ /@babel/plugin-transform-block-scoping/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
+ /@babel/plugin-transform-classes/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-function-name': 7.17.9
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
+ /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
+ /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
+ /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
+ /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2
dev: true
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
+ /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.2:
+ resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
'@babel/helper-function-name': 7.17.9
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
+ /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
+ /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.17.5:
- resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==}
+ /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.17.7
+ '@babel/core': 7.18.2
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-simple-access': 7.18.2
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
+ /@babel/plugin-transform-modules-systemjs/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-identifier': 7.16.7
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
+ /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
+ /@babel/plugin-transform-object-assign/7.16.7_@babel+core@7.18.2:
+ resolution: {integrity: sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-replace-supers': 7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.18.2:
+ resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==}
+ /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/types': 7.18.2
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
+ /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.17.5:
- resolution: {integrity: sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==}
+ /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
+ /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==}
+ /@babel/plugin-transform-runtime/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ '@babel/helper-plugin-utils': 7.17.12
+ babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.2
+ babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.2
+ babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
+ /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
+ /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
+ /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ /@babel/plugin-transform-typescript/7.18.1_@babel+core@7.18.2:
+ resolution: {integrity: sha512-F+RJmL479HJmC0KeqqwEGZMg1P7kWArLGbAKfEi9yPthJyMNjF+DjxFF/halfQvq1Q9GFM4TUbYDNV8xe4Ctqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.2:
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/preset-env/7.16.11_@babel+core@7.17.5:
- resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
+ /@babel/preset-env/7.18.2_@babel+core@7.18.2:
+ resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/compat-data': 7.17.10
+ '@babel/core': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.5
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.17.5
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.5
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.5
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.17.5
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.5
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
- core-js-compat: 3.21.1
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.2
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.2
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-systemjs': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/preset-modules': 0.1.5_@babel+core@7.18.2
+ '@babel/types': 7.18.2
+ babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.2
+ babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.2
+ babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2
+ core-js-compat: 3.22.7
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.17.5:
+ /@babel/preset-flow/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/helper-validator-option': 7.16.7
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2
+ dev: true
+
+ /@babel/preset-modules/0.1.5_@babel+core@7.18.2:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
+ '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/types': 7.18.2
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==}
+ /@babel/preset-react/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.5
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.2
dev: true
- /@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
+ /@babel/preset-typescript/7.17.12_@babel+core@7.18.2:
+ resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.5
+ '@babel/plugin-transform-typescript': 7.18.1_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/runtime-corejs3/7.17.9:
- resolution: {integrity: sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==}
+ /@babel/register/7.17.7_@babel+core@7.18.2:
+ resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.18.2
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.5
+ source-map-support: 0.5.21
+ dev: true
+
+ /@babel/runtime-corejs3/7.18.3:
+ resolution: {integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.21.1
+ core-js-pure: 3.22.7
regenerator-runtime: 0.13.9
dev: true
- /@babel/runtime/7.17.2:
- resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==}
+ /@babel/runtime/7.18.3:
+ resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
@@ -2048,82 +2135,61 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.3
+ '@babel/types': 7.18.2
- /@babel/traverse/7.17.9:
- resolution: {integrity: sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==}
+ /@babel/traverse/7.18.2:
+ resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.9
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/generator': 7.18.2
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-function-name': 7.17.9
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.3
+ '@babel/types': 7.18.2
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/traverse/7.17.9_supports-color@5.5.0:
- resolution: {integrity: sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==}
+ /@babel/traverse/7.18.2_supports-color@5.5.0:
+ resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.9
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/generator': 7.18.2
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-function-name': 7.17.9
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.9
- '@babel/types': 7.17.0
+ '@babel/parser': 7.18.3
+ '@babel/types': 7.18.2
debug: 4.3.4_supports-color@5.5.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types/7.17.0:
- resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
+ /@babel/types/7.18.2:
+ resolution: {integrity: sha512-0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
to-fast-properties: 2.0.0
- /@bit/wasedatime.core.theme.colors/0.0.2:
- resolution: {integrity: sha1-O0I7As2DSqrSnqY7AX/O43j09GI=, tarball: wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.2.tgz}
- dev: false
-
- /@bit/wasedatime.core.theme.colors/0.0.3:
- resolution: {integrity: sha1-6Fj0r3lf0e0ogkF168OnyzlWmj0=, tarball: wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.3.tgz}
- dev: false
-
- /@bit/wasedatime.core.theme.colors/0.0.4:
- resolution: {integrity: sha1-YBl9+ScBcYb7Kohku9cb5zAfhDs=, tarball: wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.4.tgz}
- dev: false
-
- /@bit/wasedatime.core.theme.colors/0.0.5:
- resolution: {integrity: sha1-K7sD8kjDztzqeg0jgeHErLF4mYE=, tarball: wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.5.tgz}
- dev: false
-
- /@discoveryjs/json-ext/0.5.7:
- resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
- engines: {node: '>=10.0.0'}
- dev: true
-
- /@emotion/babel-plugin/11.9.2_@babel+core@7.17.5:
+ /@emotion/babel-plugin/11.9.2_@babel+core@7.18.2:
resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.18.2
'@babel/helper-module-imports': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
+ '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/runtime': 7.18.3
'@emotion/hash': 0.8.0
'@emotion/memoize': 0.7.5
'@emotion/serialize': 1.0.3
@@ -2149,27 +2215,17 @@ packages:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
dev: false
- /@emotion/is-prop-valid/0.8.8:
- resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
- dependencies:
- '@emotion/memoize': 0.7.4
- dev: false
-
/@emotion/is-prop-valid/1.1.2:
resolution: {integrity: sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==}
dependencies:
'@emotion/memoize': 0.7.5
dev: false
- /@emotion/memoize/0.7.4:
- resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- dev: false
-
/@emotion/memoize/0.7.5:
resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
dev: false
- /@emotion/react/11.9.0_7c3ecd89bd75b61b41f2029715ea2305:
+ /@emotion/react/11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf:
resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -2181,14 +2237,14 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/core': 7.17.5
- '@babel/runtime': 7.17.2
- '@emotion/babel-plugin': 11.9.2_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/runtime': 7.18.3
+ '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.2
'@emotion/cache': 11.7.1
'@emotion/serialize': 1.0.3
'@emotion/utils': 1.1.0
'@emotion/weak-memoize': 0.2.5
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: false
@@ -2200,14 +2256,14 @@ packages:
'@emotion/memoize': 0.7.5
'@emotion/unitless': 0.7.5
'@emotion/utils': 1.1.0
- csstype: 3.0.11
+ csstype: 3.1.0
dev: false
/@emotion/sheet/1.1.0:
resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==}
dev: false
- /@emotion/styled/11.8.1_aa14098c2ea011cbc634dc0640a5389f:
+ /@emotion/styled/11.8.1_79d5ab1fe20874d4cd362f25b796a196:
resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -2220,14 +2276,14 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/core': 7.17.5
- '@babel/runtime': 7.17.2
- '@emotion/babel-plugin': 11.9.2_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/runtime': 7.18.3
+ '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.2
'@emotion/is-prop-valid': 1.1.2
- '@emotion/react': 11.9.0_7c3ecd89bd75b61b41f2029715ea2305
+ '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
'@emotion/serialize': 1.0.3
'@emotion/utils': 1.1.0
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
react: 17.0.2
dev: false
@@ -2247,31 +2303,14 @@ packages:
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
dev: false
- /@eslint/eslintrc/0.4.3:
- resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
- engines: {node: ^10.12.0 || >=12.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.4
- espree: 7.3.1
- globals: 13.13.0
- ignore: 4.0.6
- import-fresh: 3.3.0
- js-yaml: 3.14.1
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@eslint/eslintrc/1.2.1:
- resolution: {integrity: sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==}
+ /@eslint/eslintrc/1.3.0:
+ resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.1
- globals: 13.13.0
+ espree: 9.3.2
+ globals: 13.15.0
ignore: 5.2.0
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -2309,12 +2348,12 @@ packages:
'@fortawesome/fontawesome-common-types': 0.3.0
dev: false
- /@fortawesome/free-brands-svg-icons/6.0.0:
- resolution: {integrity: sha512-BIhsy2YeGuk8+KQwpqmyayQDWo1lvGMHsMIE+z5ApPRgV7T+zGhmNzYVoBT4IrJMC6ep5WpGrxoHX+IvNxHnkw==}
+ /@fortawesome/fontawesome-svg-core/6.1.1:
+ resolution: {integrity: sha512-NCg0w2YIp81f4V6cMGD9iomfsIj7GWrqmsa0ZsPh59G7PKiGN1KymZNxmF00ssuAlo/VZmpK6xazsGOwzKYUMg==}
engines: {node: '>=6'}
requiresBuild: true
dependencies:
- '@fortawesome/fontawesome-common-types': 0.3.0
+ '@fortawesome/fontawesome-common-types': 6.1.1
dev: false
/@fortawesome/free-brands-svg-icons/6.1.1:
@@ -2333,18 +2372,18 @@ packages:
'@fortawesome/fontawesome-common-types': 0.2.36
dev: false
- /@fortawesome/free-solid-svg-icons/6.0.0:
- resolution: {integrity: sha512-o4FZ1XbndcgeWNb8Wh0y+Hgf73CjmyOQowUSaqQCtgIIdS+XliSBSOwCl330wER+I6CGYE96hT27bHBPmzX2Gg==}
+ /@fortawesome/free-solid-svg-icons/6.1.1:
+ resolution: {integrity: sha512-0/5exxavOhI/D4Ovm2r3vxNojGZioPwmFrKg0ZUH69Q68uFhFPs6+dhAToh6VEQBntxPRYPuT5Cg1tpNa9JUPg==}
engines: {node: '>=6'}
requiresBuild: true
dependencies:
- '@fortawesome/fontawesome-common-types': 0.3.0
+ '@fortawesome/fontawesome-common-types': 6.1.1
dev: false
- /@fortawesome/react-fontawesome/0.1.17_4bd8f766d7cd56ce339ee1b51a510026:
- resolution: {integrity: sha512-dX43Z5IvMaW7fwzU8farosYjKNGfRb2HB/DgjVBHeJZ/NSnuuaujPPx0YOdcAq+n3mqn70tyCde2HM1mqbhiuw==}
+ /@fortawesome/react-fontawesome/0.1.18_4bd8f766d7cd56ce339ee1b51a510026:
+ resolution: {integrity: sha512-RwLIB4TZw0M9gvy5u+TusAA0afbwM4JQIimNH/j3ygd6aIvYPQLqXMhC9ErY26J23rDPyDZldIfPq/HpTTJ/tQ==}
peerDependencies:
- '@fortawesome/fontawesome-svg-core': ~1 || >=1.3.0-beta1
+ '@fortawesome/fontawesome-svg-core': ~1 || ~6
react: '>=16.x'
dependencies:
'@fortawesome/fontawesome-svg-core': 1.3.0
@@ -2352,15 +2391,25 @@ packages:
react: 17.0.2
dev: false
- /@humanwhocodes/config-array/0.5.0:
- resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
- engines: {node: '>=10.10.0'}
+ /@fortawesome/react-fontawesome/0.1.18_6909f5698ccb6b468185370814560628:
+ resolution: {integrity: sha512-RwLIB4TZw0M9gvy5u+TusAA0afbwM4JQIimNH/j3ygd6aIvYPQLqXMhC9ErY26J23rDPyDZldIfPq/HpTTJ/tQ==}
+ peerDependencies:
+ '@fortawesome/fontawesome-svg-core': ~1 || ~6
+ react: '>=16.x'
dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@fortawesome/fontawesome-svg-core': 6.1.1
+ prop-types: 15.8.1
+ react: 17.0.2
+ dev: false
+
+ /@hapi/hoek/9.3.0:
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+ dev: true
+
+ /@hapi/topo/5.1.0:
+ resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
+ dependencies:
+ '@hapi/hoek': 9.3.0
dev: true
/@humanwhocodes/config-array/0.9.5:
@@ -2378,398 +2427,69 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@jimp/bmp/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-iwyNYQeBawrdg/f24x3pQ5rEx+/GwjZcCXd3Kgc+ZUd+Ivia7sIqBsOnDaMZdKCBPlfW364ekexnlOqyVa0NWg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- bmp-js: 0.1.0
- dev: false
-
- /@jimp/core/0.16.1:
- resolution: {integrity: sha512-la7kQia31V6kQ4q1kI/uLimu8FXx7imWVajDGtwUG8fzePLWDFJyZl0fdIXVCL1JW2nBcRHidUot6jvlRDi2+g==}
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/utils': 0.16.1
- any-base: 1.1.0
- buffer: 5.7.1
- exif-parser: 0.1.12
- file-type: 9.0.0
- load-bmfont: 1.4.1
- mkdirp: 0.5.6
- phin: 2.9.3
- pixelmatch: 4.0.2
- tinycolor2: 1.4.2
- dev: false
-
- /@jimp/custom/0.16.1:
- resolution: {integrity: sha512-DNUAHNSiUI/j9hmbatD6WN/EBIyeq4AO0frl5ETtt51VN1SvE4t4v83ZA/V6ikxEf3hxLju4tQ5Pc3zmZkN/3A==}
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/core': 0.16.1
- dev: false
-
- /@jimp/gif/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-r/1+GzIW1D5zrP4tNrfW+3y4vqD935WBXSc8X/wm23QTY9aJO9Lw6PEdzpYCEY+SOklIFKaJYUAq/Nvgm/9ryw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- gifwrap: 0.9.4
- omggif: 1.0.10
- dev: false
-
- /@jimp/jpeg/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-8352zrdlCCLFdZ/J+JjBslDvml+fS3Z8gttdml0We759PnnZGqrnPRhkOEOJbNUlE+dD4ckLeIe6NPxlS/7U+w==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- jpeg-js: 0.4.2
- dev: false
-
- /@jimp/plugin-blit/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-fKFNARm32RoLSokJ8WZXHHH2CGzz6ire2n1Jh6u+XQLhk9TweT1DcLHIXwQMh8oR12KgjbgsMGvrMVlVknmOAg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-blur/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-1WhuLGGj9MypFKRcPvmW45ht7nXkOKu+lg3n2VBzIB7r4kKNVchuI59bXaCYQumOLEqVK7JdB4glaDAbCQCLyw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-circle/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-JK7yi1CIU7/XL8hdahjcbGA3V7c+F+Iw+mhMQhLEi7Q0tCnZ69YJBTamMiNg3fWPVfMuvWJJKOBRVpwNTuaZRg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-color/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-9yQttBAO5SEFj7S6nJK54f+1BnuBG4c28q+iyzm1JjtnehjqMg6Ljw4gCSDCvoCQ3jBSYHN66pmwTV74SU1B7A==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- tinycolor2: 1.4.2
- dev: false
-
- /@jimp/plugin-contain/0.16.1_38e919e7cde018834207f15ee7b0ce6a:
- resolution: {integrity: sha512-44F3dUIjBDHN+Ym/vEfg+jtjMjAqd2uw9nssN67/n4FdpuZUVs7E7wadKY1RRNuJO+WgcD5aDQcsvurXMETQTg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-blit': '>=0.3.5'
- '@jimp/plugin-resize': '>=0.3.5'
- '@jimp/plugin-scale': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-blit': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-scale': 0.16.1_c382371bb4f60ea2fd211a04ed8ab1e2
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-cover/0.16.1_3d13feed36f5fd86198de47b78b25314:
- resolution: {integrity: sha512-YztWCIldBAVo0zxcQXR+a/uk3/TtYnpKU2CanOPJ7baIuDlWPsG+YE4xTsswZZc12H9Kl7CiziEbDtvF9kwA/Q==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-crop': '>=0.3.5'
- '@jimp/plugin-resize': '>=0.3.5'
- '@jimp/plugin-scale': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-crop': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-scale': 0.16.1_c382371bb4f60ea2fd211a04ed8ab1e2
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-crop/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-UQdva9oQzCVadkyo3T5Tv2CUZbf0klm2cD4cWMlASuTOYgaGaFHhT9st+kmfvXjKL8q3STkBu/zUPV6PbuV3ew==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-displace/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-iVAWuz2+G6Heu8gVZksUz+4hQYpR4R0R/RtBzpWEl8ItBe7O6QjORAkhxzg+WdYLL2A/Yd4ekTpvK0/qW8hTVw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-dither/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-tADKVd+HDC9EhJRUDwMvzBXPz4GLoU6s5P7xkVq46tskExYSptgj5713J5Thj3NMgH9Rsqu22jNg1H/7tr3V9Q==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-fisheye/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-BWHnc5hVobviTyIRHhIy9VxI1ACf4CeSuCfURB6JZm87YuyvgQh5aX5UDKtOz/3haMHXBLP61ZBxlNpMD8CG4A==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-flip/0.16.1_205f1d9ec51496ff93f52ac5618c3660:
- resolution: {integrity: sha512-KdxTf0zErfZ8DyHkImDTnQBuHby+a5YFdoKI/G3GpBl3qxLBvC+PWkS2F/iN3H7wszP7/TKxTEvWL927pypT0w==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-rotate': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-rotate': 0.16.1_37f4bc9bbdbf41c03b931ee8408b3361
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-gaussian/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-u9n4wjskh3N1mSqketbL6tVcLU2S5TEaFPR40K6TDv4phPLZALi1Of7reUmYpVm8mBDHt1I6kGhuCJiWvzfGyg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-invert/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-2DKuyVXANH8WDpW9NG+PYFbehzJfweZszFYyxcaewaPLN0GxvxVLOGOPP1NuUTcHkOdMFbE0nHDuB7f+sYF/2w==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-mask/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-snfiqHlVuj4bSFS0v96vo2PpqCDMe4JB+O++sMo5jF5mvGcGL6AIeLo8cYqPNpdO6BZpBJ8MY5El0Veckhr39Q==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-normalize/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-dOQfIOvGLKDKXPU8xXWzaUeB0nvkosHw6Xg1WhS1Z5Q0PazByhaxOQkSKgUryNN/H+X7UdbDvlyh/yHf3ITRaw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-print/0.16.1_5191b610a3eb861d3baa10a735e89ecc:
- resolution: {integrity: sha512-ceWgYN40jbN4cWRxixym+csyVymvrryuKBQ+zoIvN5iE6OyS+2d7Mn4zlNgumSczb9GGyZZESIgVcBDA1ezq0Q==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-blit': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-blit': 0.16.1_@jimp+custom@0.16.1
- '@jimp/utils': 0.16.1
- load-bmfont: 1.4.1
- dev: false
-
- /@jimp/plugin-resize/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-u4JBLdRI7dargC04p2Ha24kofQBk3vhaf0q8FwSYgnCRwxfvh2RxvhJZk9H7Q91JZp6wgjz/SjvEAYjGCEgAwQ==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-rotate/0.16.1_37f4bc9bbdbf41c03b931ee8408b3361:
- resolution: {integrity: sha512-ZUU415gDQ0VjYutmVgAYYxC9Og9ixu2jAGMCU54mSMfuIlmohYfwARQmI7h4QB84M76c9hVLdONWjuo+rip/zg==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-blit': '>=0.3.5'
- '@jimp/plugin-crop': '>=0.3.5'
- '@jimp/plugin-resize': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-blit': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-crop': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-scale/0.16.1_c382371bb4f60ea2fd211a04ed8ab1e2:
- resolution: {integrity: sha512-jM2QlgThIDIc4rcyughD5O7sOYezxdafg/2Xtd1csfK3z6fba3asxDwthqPZAgitrLgiKBDp6XfzC07Y/CefUw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-resize': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-shadow/0.16.1_82540ab48d5f83680494f34d0dac907f:
- resolution: {integrity: sha512-MeD2Is17oKzXLnsphAa1sDstTu6nxscugxAEk3ji0GV1FohCvpHBcec0nAq6/czg4WzqfDts+fcPfC79qWmqrA==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-blur': '>=0.3.5'
- '@jimp/plugin-resize': '>=0.3.5'
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-blur': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/utils': 0.16.1
- dev: false
-
- /@jimp/plugin-threshold/0.16.1_ec0c83f3603149a8780f87045f821922:
- resolution: {integrity: sha512-iGW8U/wiCSR0+6syrPioVGoSzQFt4Z91SsCRbgNKTAk7D+XQv6OI78jvvYg4o0c2FOlwGhqz147HZV5utoSLxA==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
- '@jimp/plugin-color': '>=0.8.0'
- '@jimp/plugin-resize': '>=0.8.0'
+ /@jest/create-cache-key-function/27.5.1:
+ resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-color': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/utils': 0.16.1
- dev: false
+ '@jest/types': 27.5.1
+ dev: true
- /@jimp/plugins/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-c+lCqa25b+4q6mJZSetlxhMoYuiltyS+ValLzdwK/47+aYsq+kcJNl+TuxIEKf59yr9+5rkbpsPkZHLF/V7FFA==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
+ /@jest/types/26.6.2:
+ resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
+ engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugin-blit': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-blur': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-circle': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-color': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-contain': 0.16.1_38e919e7cde018834207f15ee7b0ce6a
- '@jimp/plugin-cover': 0.16.1_3d13feed36f5fd86198de47b78b25314
- '@jimp/plugin-crop': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-displace': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-dither': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-fisheye': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-flip': 0.16.1_205f1d9ec51496ff93f52ac5618c3660
- '@jimp/plugin-gaussian': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-invert': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-mask': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-normalize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-print': 0.16.1_5191b610a3eb861d3baa10a735e89ecc
- '@jimp/plugin-resize': 0.16.1_@jimp+custom@0.16.1
- '@jimp/plugin-rotate': 0.16.1_37f4bc9bbdbf41c03b931ee8408b3361
- '@jimp/plugin-scale': 0.16.1_c382371bb4f60ea2fd211a04ed8ab1e2
- '@jimp/plugin-shadow': 0.16.1_82540ab48d5f83680494f34d0dac907f
- '@jimp/plugin-threshold': 0.16.1_ec0c83f3603149a8780f87045f821922
- timm: 1.7.1
- dev: false
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 17.0.41
+ '@types/yargs': 15.0.14
+ chalk: 4.1.2
+ dev: true
- /@jimp/png/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-iyWoCxEBTW0OUWWn6SveD4LePW89kO7ZOy5sCfYeDM/oTPLpR8iMIGvZpZUz1b8kvzFr27vPst4E5rJhGjwsdw==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
+ /@jest/types/27.5.1:
+ resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/utils': 0.16.1
- pngjs: 3.4.0
- dev: false
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 17.0.41
+ '@types/yargs': 16.0.4
+ chalk: 4.1.2
+ dev: true
- /@jimp/tiff/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-3K3+xpJS79RmSkAvFMgqY5dhSB+/sxhwTFA9f4AVHUK0oKW+u6r52Z1L0tMXHnpbAdR9EJ+xaAl2D4x19XShkQ==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
+ /@jridgewell/gen-mapping/0.1.1:
+ resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
+ engines: {node: '>=6.0.0'}
dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- utif: 2.0.1
- dev: false
+ '@jridgewell/set-array': 1.1.1
+ '@jridgewell/sourcemap-codec': 1.4.13
+ dev: true
- /@jimp/types/0.16.1_@jimp+custom@0.16.1:
- resolution: {integrity: sha512-g1w/+NfWqiVW4CaXSJyD28JQqZtm2eyKMWPhBBDCJN9nLCN12/Az0WFF3JUAktzdsEC2KRN2AqB1a2oMZBNgSQ==}
- peerDependencies:
- '@jimp/custom': '>=0.3.5'
+ /@jridgewell/gen-mapping/0.3.1:
+ resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==}
+ engines: {node: '>=6.0.0'}
dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/bmp': 0.16.1_@jimp+custom@0.16.1
- '@jimp/custom': 0.16.1
- '@jimp/gif': 0.16.1_@jimp+custom@0.16.1
- '@jimp/jpeg': 0.16.1_@jimp+custom@0.16.1
- '@jimp/png': 0.16.1_@jimp+custom@0.16.1
- '@jimp/tiff': 0.16.1_@jimp+custom@0.16.1
- timm: 1.7.1
- dev: false
+ '@jridgewell/set-array': 1.1.1
+ '@jridgewell/sourcemap-codec': 1.4.13
+ '@jridgewell/trace-mapping': 0.3.13
- /@jimp/utils/0.16.1:
- resolution: {integrity: sha512-8fULQjB0x4LzUSiSYG6ZtQl355sZjxbv8r9PPAuYHzS9sGiSHJQavNqK/nKnpDsVkU88/vRGcE7t3nMU0dEnVw==}
- dependencies:
- '@babel/runtime': 7.17.2
- regenerator-runtime: 0.13.9
- dev: false
+ /@jridgewell/resolve-uri/3.0.7:
+ resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==}
+ engines: {node: '>=6.0.0'}
- /@jridgewell/resolve-uri/3.0.5:
- resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
+ /@jridgewell/set-array/1.1.1:
+ resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==}
engines: {node: '>=6.0.0'}
- dev: true
- /@jridgewell/sourcemap-codec/1.4.11:
- resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
- dev: true
+ /@jridgewell/sourcemap-codec/1.4.13:
+ resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
- /@jridgewell/trace-mapping/0.3.4:
- resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==}
+ /@jridgewell/trace-mapping/0.3.13:
+ resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
dependencies:
- '@jridgewell/resolve-uri': 3.0.5
- '@jridgewell/sourcemap-codec': 1.4.11
- dev: true
+ '@jridgewell/resolve-uri': 3.0.7
+ '@jridgewell/sourcemap-codec': 1.4.13
- /@material-ui/core/4.12.4_a0c521d4794c7ad97f5f4c1c4a7d5818:
+ /@material-ui/core/4.12.4_c89428357385a28c4f386227766bd512:
resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2780,23 +2500,24 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@material-ui/styles': 4.11.5_a0c521d4794c7ad97f5f4c1c4a7d5818
- '@material-ui/system': 4.12.2_a0c521d4794c7ad97f5f4c1c4a7d5818
- '@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.3_react@17.0.2
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@material-ui/styles': 4.11.5_c89428357385a28c4f386227766bd512
+ '@material-ui/system': 4.12.2_c89428357385a28c4f386227766bd512
+ '@material-ui/types': 5.1.0_@types+react@18.0.12
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
+ '@types/react': 18.0.12
'@types/react-transition-group': 4.4.4
clsx: 1.1.1
hoist-non-react-statics: 3.3.2
popper.js: 1.16.1-lts
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
- react-transition-group: 4.4.2_react@17.0.2
+ react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2
dev: false
- /@material-ui/styles/4.11.5_a0c521d4794c7ad97f5f4c1c4a7d5818:
+ /@material-ui/styles/4.11.5_c89428357385a28c4f386227766bd512:
resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2807,11 +2528,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
'@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.3_react@17.0.2
- '@types/react': 17.0.39
+ '@material-ui/types': 5.1.0_@types+react@18.0.12
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
+ '@types/react': 18.0.12
clsx: 1.1.1
csstype: 2.6.20
hoist-non-react-statics: 3.3.2
@@ -2825,9 +2546,10 @@ packages:
jss-plugin-vendor-prefixer: 10.9.0
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- /@material-ui/system/4.12.2_a0c521d4794c7ad97f5f4c1c4a7d5818:
+ /@material-ui/system/4.12.2_c89428357385a28c4f386227766bd512:
resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2838,15 +2560,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@material-ui/utils': 4.11.3_react@17.0.2
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
+ '@types/react': 18.0.12
csstype: 2.6.20
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- /@material-ui/types/5.1.0_@types+react@17.0.39:
+ /@material-ui/types/5.1.0_@types+react@18.0.12:
resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==}
peerDependencies:
'@types/react': '*'
@@ -2854,24 +2577,25 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
- /@material-ui/utils/4.11.3_react@17.0.2:
+ /@material-ui/utils/4.11.3_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
dev: false
- /@mui/base/5.0.0-alpha.76_a0c521d4794c7ad97f5f4c1c4a7d5818:
- resolution: {integrity: sha512-Pd0l4DvjXiGRyipn/CTDlYB2XrJwhpLktVXvbvcmzL2SMDaNprSarZqBkPHIubkulmRDZEEcnFDrpKgeSJDg4A==}
+ /@mui/base/5.0.0-alpha.84_c89428357385a28c4f386227766bd512:
+ resolution: {integrity: sha512-uDx+wGVytS+ZHiWHyzUyijY83GSIXJpzSJ0PGc/8/s+8nBzeHvaPKrAyJz15ASLr52hYRA6PQGqn0eRAsB7syQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -2881,20 +2605,21 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
'@emotion/is-prop-valid': 1.1.2
- '@mui/types': 7.1.3_@types+react@17.0.39
- '@mui/utils': 5.6.1_react@17.0.2
+ '@mui/types': 7.1.3_@types+react@18.0.12
+ '@mui/utils': 5.8.0_react@17.0.2
'@popperjs/core': 2.11.5
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
clsx: 1.1.1
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
dev: false
- /@mui/icons-material/5.6.1_5747690979a2fb029bf71365b1632d30:
- resolution: {integrity: sha512-I1x8u+FRLOmoJpRJASMx9UG+jZrSkNLyRQmBXivQQwXu3m3iasMoaKYhhI0J18t8+FWktbkNTp63oEUHE9Gw0Q==}
+ /@mui/icons-material/5.8.3_8839cb9fb61448aa836a88f035666937:
+ resolution: {integrity: sha512-dAdhimSLKOV0Q8FR7AYGEaCrTUh9OV7zU4Ueo5REoUt4cC3Vy+UBKDjZk66x5ezaYb63AFgQIFwtnZj3B/QDbQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
@@ -2904,14 +2629,14 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@mui/material': 5.6.1_475d8a8490f8dc103fa6bfa97d06671c
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@mui/material': 5.8.3_4999d578384e5752dd6357c6002e0ea9
+ '@types/react': 18.0.12
react: 17.0.2
dev: false
- /@mui/material/5.6.1_475d8a8490f8dc103fa6bfa97d06671c:
- resolution: {integrity: sha512-xg6pPq+1jxWupwmPpnfmsHNjrsOe2xynUQWrRfcH8WHrrr1sQulq0VF4gORq/l8DD8a/jb4s8SsC20e/e6mHKQ==}
+ /@mui/material/5.8.3_4999d578384e5752dd6357c6002e0ea9:
+ resolution: {integrity: sha512-8UecY/W9SMtEZm5PMCUcMbujajVP6fobu0BgBPiIWwwWRblZVEzqprY6v1P2me7qCyrve4L4V/rqAKPKhVHOSg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -2927,26 +2652,27 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/react': 11.9.0_7c3ecd89bd75b61b41f2029715ea2305
- '@emotion/styled': 11.8.1_aa14098c2ea011cbc634dc0640a5389f
- '@mui/base': 5.0.0-alpha.76_a0c521d4794c7ad97f5f4c1c4a7d5818
- '@mui/system': 5.6.1_475d8a8490f8dc103fa6bfa97d06671c
- '@mui/types': 7.1.3_@types+react@17.0.39
- '@mui/utils': 5.6.1_react@17.0.2
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
+ '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
+ '@mui/base': 5.0.0-alpha.84_c89428357385a28c4f386227766bd512
+ '@mui/system': 5.8.3_12e59eed2472cefdcd35b5d5484b3d11
+ '@mui/types': 7.1.3_@types+react@18.0.12
+ '@mui/utils': 5.8.0_react@17.0.2
+ '@types/react': 18.0.12
'@types/react-transition-group': 4.4.4
clsx: 1.1.1
- csstype: 3.0.11
+ csstype: 3.1.0
hoist-non-react-statics: 3.3.2
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
- react-transition-group: 4.4.2_react@17.0.2
+ react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2
dev: false
- /@mui/private-theming/5.6.1_a0c521d4794c7ad97f5f4c1c4a7d5818:
- resolution: {integrity: sha512-8lgh+tUt/3ftStfvml3dwAzhW3fe/cUFjLcBViOTnWk7UixWR79me4qehsO4NVj0THpu3d2qclrLzdD8qBAWAQ==}
+ /@mui/private-theming/5.8.0_43bb65ad44624192eabf549bb184d850:
+ resolution: {integrity: sha512-MjRAneTmCKLR9u2S4jtjLUe6gpHxlbb4g2bqpDJ2PdwlvwsWIUzbc/gVB4dvccljXeWxr5G2M/Co2blXisvFIw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -2955,15 +2681,15 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@mui/utils': 5.6.1_react@17.0.2
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@mui/utils': 5.8.0_react@17.0.2
+ '@types/react': 18.0.12
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/styled-engine/5.6.1_09a0c9559c3e7c8c898f158921333fde:
- resolution: {integrity: sha512-jEhH6TBY8jc9S8yVncXmoTYTbATjEu44RMFXj6sIYfKr5NArVwTwRo3JexLL0t3BOAiYM4xsFLgfKEIvB9SAeQ==}
+ /@mui/styled-engine/5.8.0_09a0c9559c3e7c8c898f158921333fde:
+ resolution: {integrity: sha512-Q3spibB8/EgeMYHc+/o3RRTnAYkSl7ROCLhXJ830W8HZ2/iDiyYp16UcxKPurkXvLhUaILyofPVrP3Su2uKsAw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
@@ -2975,16 +2701,16 @@ packages:
'@emotion/styled':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
'@emotion/cache': 11.7.1
- '@emotion/react': 11.9.0_7c3ecd89bd75b61b41f2029715ea2305
- '@emotion/styled': 11.8.1_aa14098c2ea011cbc634dc0640a5389f
+ '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
+ '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/system/5.6.1_475d8a8490f8dc103fa6bfa97d06671c:
- resolution: {integrity: sha512-Y5pDvEOK6VOY+0vgNeyDuEEO5QCinhXbZQDyLOlaGLKuAoRGLXO9pcSsjZoGkewYZitXD44EDfgBQ+BqsAfgUA==}
+ /@mui/system/5.8.3_12e59eed2472cefdcd35b5d5484b3d11:
+ resolution: {integrity: sha512-/tyGQcYqZT0nl98qV9XnGiedTO+V7VHc28k4POfhMJNedB1CRrwWRm767DeEdc5f/8CU2See3WD16ikP6pYiOA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -2999,21 +2725,21 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/react': 11.9.0_7c3ecd89bd75b61b41f2029715ea2305
- '@emotion/styled': 11.8.1_aa14098c2ea011cbc634dc0640a5389f
- '@mui/private-theming': 5.6.1_a0c521d4794c7ad97f5f4c1c4a7d5818
- '@mui/styled-engine': 5.6.1_09a0c9559c3e7c8c898f158921333fde
- '@mui/types': 7.1.3_@types+react@17.0.39
- '@mui/utils': 5.6.1_react@17.0.2
- '@types/react': 17.0.39
+ '@babel/runtime': 7.18.3
+ '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
+ '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
+ '@mui/private-theming': 5.8.0_43bb65ad44624192eabf549bb184d850
+ '@mui/styled-engine': 5.8.0_09a0c9559c3e7c8c898f158921333fde
+ '@mui/types': 7.1.3_@types+react@18.0.12
+ '@mui/utils': 5.8.0_react@17.0.2
+ '@types/react': 18.0.12
clsx: 1.1.1
- csstype: 3.0.11
+ csstype: 3.1.0
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/types/7.1.3_@types+react@17.0.39:
+ /@mui/types/7.1.3_@types+react@18.0.12:
resolution: {integrity: sha512-DDF0UhMBo4Uezlk+6QxrlDbchF79XG6Zs0zIewlR4c0Dt6GKVFfUtzPtHCH1tTbcSlq/L2bGEdiaoHBJ9Y1gSA==}
peerDependencies:
'@types/react': '*'
@@ -3021,16 +2747,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
- /@mui/utils/5.6.1_react@17.0.2:
- resolution: {integrity: sha512-CPrzrkiBusCZBLWu0Sg5MJvR3fKJyK3gKecLVX012LULyqg2U64Oz04BKhfkbtBrPBbSQxM+DWW9B1c9hmV9nQ==}
+ /@mui/utils/5.8.0_react@17.0.2:
+ resolution: {integrity: sha512-7LgUtCvz78676iC0wpTH7HizMdCrTphhBmRWimIMFrp5Ph6JbDFVuKS1CwYnWWxRyYKL0QzXrDL0lptAU90EXg==}
engines: {node: '>=12.0.0'}
peerDependencies:
react: ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
'@types/prop-types': 15.7.5
'@types/react-is': 17.0.3
prop-types: 15.8.1
@@ -3044,12 +2770,10 @@ packages:
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- dev: true
/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- dev: true
/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
@@ -3057,59 +2781,255 @@ packages:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.13.0
- dev: true
-
- /@polka/url/1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
- dev: true
/@popperjs/core/2.11.5:
resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==}
dev: false
- /@rollup/plugin-babel/5.3.1_@babel+core@7.17.5+rollup@2.70.1:
- resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
- engines: {node: '>= 10.0.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@types/babel__core': ^7.1.9
- rollup: ^1.20.0||^2.0.0
- peerDependenciesMeta:
- '@types/babel__core':
- optional: true
+ /@react-native-community/cli-debugger-ui/7.0.3:
+ resolution: {integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==}
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-imports': 7.16.7
- '@rollup/pluginutils': 3.1.0_rollup@2.70.1
- rollup: 2.70.1
+ serve-static: 1.15.0
dev: true
- /@rollup/plugin-node-resolve/11.2.1_rollup@2.70.1:
- resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
- engines: {node: '>= 10.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
+ /@react-native-community/cli-hermes/6.3.0:
+ resolution: {integrity: sha512-Uhbm9bubyZLZ12vFCIfWbE/Qi3SBTbYIN/TC08EudTLhv/KbPomCQnmFsnJ7AXQFuOZJs73mBxoEAYSbRbwyVA==}
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.70.1
- '@types/resolve': 1.17.1
- builtin-modules: 3.2.0
- deepmerge: 4.2.2
- is-module: 1.0.0
- resolve: 1.22.0
- rollup: 2.70.1
+ '@react-native-community/cli-platform-android': 6.3.0
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ hermes-profile-transformer: 0.0.6
+ ip: 1.1.8
+ transitivePeerDependencies:
+ - encoding
dev: true
- /@rollup/plugin-replace/2.4.2_rollup@2.70.1:
+ /@react-native-community/cli-platform-android/6.3.0:
+ resolution: {integrity: sha512-d5ufyYcvrZoHznYm5bjBXaiHIJv552t5gYtQpnUsxBhHSQ8QlaNmlLUyeSPRDfOw4ND9b0tPHqs4ufwx6vp/fQ==}
+ dependencies:
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ execa: 1.0.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ jetifier: 1.6.8
+ lodash: 4.17.21
+ logkitty: 0.7.1
+ slash: 3.0.0
+ xmldoc: 1.1.2
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-platform-android/7.0.1:
+ resolution: {integrity: sha512-nOr0aMkxAymCnbtsQwXBlyoRN2Y+IzC7Qz5T+/zyWwEbTY8SKQI8uV+8+qttUvzSvuXa2PeXsTWluuliOS8KCw==}
+ dependencies:
+ '@react-native-community/cli-tools': 7.0.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ jetifier: 1.6.8
+ lodash: 4.17.21
+ logkitty: 0.7.1
+ slash: 3.0.0
+ xmldoc: 1.1.2
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-platform-ios/7.0.1:
+ resolution: {integrity: sha512-PLRIbzrCzSedmpjuFtQqcqUD45G8q7sEciI1lf5zUbVMXqjIBwJWS7iz8235PyWwj8J4MNHohLC+oyRueFtbGg==}
+ dependencies:
+ '@react-native-community/cli-tools': 7.0.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ glob: 7.2.3
+ js-yaml: 3.14.1
+ lodash: 4.17.21
+ ora: 5.4.1
+ plist: 3.0.5
+ xcode: 3.0.1
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-plugin-metro/7.0.3:
+ resolution: {integrity: sha512-HJrEkFbxv9DNixsGwO+Q0zCcZMghDltyzeB9yQ//D5ZR4ZUEuAIPrRDdEp9xVw0WkBxAIZs6KXLux2/yPMwLhA==}
+ dependencies:
+ '@react-native-community/cli-server-api': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ chalk: 4.1.2
+ metro: 0.67.0
+ metro-config: 0.67.0
+ metro-core: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0
+ metro-resolver: 0.67.0
+ metro-runtime: 0.67.0
+ readline: 1.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@react-native-community/cli-server-api/7.0.3:
+ resolution: {integrity: sha512-JDrLsrkBgNxbG2u3fouoVGL9tKrXUrTsaNwr+oCV+3XyMwbVe42r/OaQ681/iW/7mHXjuVkDnMcp7BMg7e2yJg==}
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ compression: 1.7.4
+ connect: 3.7.0
+ errorhandler: 1.5.1
+ nocache: 2.1.0
+ pretty-format: 26.6.2
+ serve-static: 1.15.0
+ ws: 7.5.8
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+ dev: true
+
+ /@react-native-community/cli-tools/6.2.0:
+ resolution: {integrity: sha512-08ssz4GMEnRxC/1FgTTN/Ud7mExQi5xMphItPjfHiTxpZPhrFn+IMx6mya0ncFEhhxQ207wYlJMRLPRRdBZ8oA==}
+ dependencies:
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ lodash: 4.17.21
+ mime: 2.6.0
+ node-fetch: 2.6.7
+ open: 6.4.0
+ semver: 6.3.0
+ shell-quote: 1.6.1
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-tools/7.0.1:
+ resolution: {integrity: sha512-0xra4hKNA5PR2zYVXsDMNiXMGaDNoNRYMY6eTP2aVIxQbqIcVMDWSyCA8wMWX5iOpMWg0cZGaQ6a77f3Rlb34g==}
+ dependencies:
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ lodash: 4.17.21
+ mime: 2.6.0
+ node-fetch: 2.6.7
+ open: 6.4.0
+ ora: 5.4.1
+ semver: 6.3.0
+ shell-quote: 1.7.3
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@react-native-community/cli-types/6.0.0:
+ resolution: {integrity: sha512-K493Fk2DMJC0ZM8s8gnfseKxGasIhuDaCUDeLZcoCSFlrjKEuEs1BKKEJiev0CARhKEXKOyyp/uqYM9nWhisNw==}
+ dependencies:
+ ora: 3.4.0
+ dev: true
+
+ /@react-native-community/cli/7.0.3_react-native@0.68.2:
+ resolution: {integrity: sha512-WyJOA829KAhU1pw2MDQt0YhOS9kyR2KqyqgJyTuQhzFVCBPX4F5aDEkZYYn4jdldaDHCPrLJ3ho3gxYTXy+x7w==}
+ engines: {node: '>=12'}
+ hasBin: true
+ peerDependencies:
+ react-native: '*'
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 7.0.3
+ '@react-native-community/cli-hermes': 6.3.0
+ '@react-native-community/cli-plugin-metro': 7.0.3
+ '@react-native-community/cli-server-api': 7.0.3
+ '@react-native-community/cli-tools': 6.2.0
+ '@react-native-community/cli-types': 6.0.0
+ appdirsjs: 1.2.6
+ chalk: 4.1.2
+ command-exists: 1.2.9
+ commander: 2.20.3
+ cosmiconfig: 5.2.1
+ deepmerge: 3.3.0
+ envinfo: 7.8.1
+ execa: 1.0.0
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ glob: 7.2.3
+ graceful-fs: 4.2.10
+ joi: 17.6.0
+ leven: 3.1.0
+ lodash: 4.17.21
+ minimist: 1.2.6
+ node-stream-zip: 1.15.0
+ ora: 3.4.0
+ pretty-format: 26.6.2
+ prompts: 2.4.2
+ react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
+ semver: 6.3.0
+ serve-static: 1.15.0
+ strip-ansi: 5.2.0
+ sudo-prompt: 9.2.1
+ wcwidth: 1.0.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@react-native/assets/1.0.0:
+ resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
+ dev: true
+
+ /@react-native/normalize-color/2.0.0:
+ resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==}
+ dev: true
+
+ /@react-native/polyfills/2.0.0:
+ resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==}
+ dev: true
+
+ /@rollup/plugin-babel/5.3.1_@babel+core@7.18.2+rollup@2.75.3:
+ resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
+ engines: {node: '>= 10.0.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ '@types/babel__core': ^7.1.9
+ rollup: ^1.20.0||^2.0.0
+ peerDependenciesMeta:
+ '@types/babel__core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/helper-module-imports': 7.16.7
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.3
+ rollup: 2.75.3
+ dev: true
+
+ /@rollup/plugin-node-resolve/11.2.1_rollup@2.75.3:
+ resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
+ engines: {node: '>= 10.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.3
+ '@types/resolve': 1.17.1
+ builtin-modules: 3.3.0
+ deepmerge: 4.2.2
+ is-module: 1.0.0
+ resolve: 1.22.0
+ rollup: 2.75.3
+ dev: true
+
+ /@rollup/plugin-replace/2.4.2_rollup@2.75.3:
resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.70.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.3
magic-string: 0.25.9
- rollup: 2.70.1
+ rollup: 2.75.3
dev: true
- /@rollup/pluginutils/3.1.0_rollup@2.70.1:
+ /@rollup/pluginutils/3.1.0_rollup@2.75.3:
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
@@ -3118,72 +3038,57 @@ packages:
'@types/estree': 0.0.39
estree-walker: 1.0.1
picomatch: 2.3.1
- rollup: 2.70.1
- dev: true
-
- /@rushstack/eslint-patch/1.1.2:
- resolution: {integrity: sha512-oe5WJEDaVsW8fBlGT7udrSCgOwWfoYHQOmSpnh8X+0GXpqqcRCP8k4y+Dxb0taWJDPpB+rdDUtumIiBwkY9qGA==}
+ rollup: 2.75.3
dev: true
- /@surma/rollup-plugin-off-main-thread/2.2.3:
- resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
+ /@rollup/pluginutils/4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
dependencies:
- ejs: 3.1.6
- json5: 2.2.1
- magic-string: 0.25.9
- string.prototype.matchall: 4.0.7
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
dev: true
- /@trysound/sax/0.2.0:
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
+ /@rushstack/eslint-patch/1.1.3:
+ resolution: {integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==}
dev: true
- /@types/body-parser/1.19.2:
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
+ /@sideway/address/4.1.4:
+ resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 17.0.23
+ '@hapi/hoek': 9.3.0
dev: true
- /@types/bonjour/3.5.10:
- resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
- dependencies:
- '@types/node': 17.0.23
+ /@sideway/formula/3.0.0:
+ resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
dev: true
- /@types/connect-history-api-fallback/1.3.5:
- resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
- dependencies:
- '@types/express-serve-static-core': 4.17.28
- '@types/node': 17.0.23
+ /@sideway/pinpoint/2.0.0:
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: true
- /@types/connect/3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ /@surma/rollup-plugin-off-main-thread/2.2.3:
+ resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
dependencies:
- '@types/node': 17.0.23
+ ejs: 3.1.8
+ json5: 2.2.1
+ magic-string: 0.25.9
+ string.prototype.matchall: 4.0.7
+ dev: true
+
+ /@trysound/sax/0.2.0:
+ resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
+ engines: {node: '>=10.13.0'}
dev: true
/@types/cookie/0.3.3:
resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
dev: false
- /@types/eslint-scope/3.7.3:
- resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
- dependencies:
- '@types/eslint': 8.4.1
- '@types/estree': 0.0.51
- dev: true
-
- /@types/eslint-visitor-keys/1.0.0:
- resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
- dev: true
-
- /@types/eslint/8.4.1:
- resolution: {integrity: sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==}
+ /@types/eslint/8.4.2:
+ resolution: {integrity: sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==}
dependencies:
- '@types/estree': 0.0.51
+ '@types/estree': 0.0.39
'@types/json-schema': 7.0.11
dev: true
@@ -3191,25 +3096,10 @@ packages:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
- /@types/estree/0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- dev: true
-
- /@types/express-serve-static-core/4.17.28:
- resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
- dependencies:
- '@types/node': 17.0.23
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- dev: true
-
- /@types/express/4.17.13:
- resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==}
+ /@types/graceful-fs/4.1.5:
+ resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.28
- '@types/qs': 6.9.7
- '@types/serve-static': 1.13.10
+ '@types/node': 17.0.41
dev: true
/@types/history/4.7.11:
@@ -3219,18 +3109,24 @@ packages:
/@types/hoist-non-react-statics/3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
hoist-non-react-statics: 3.3.2
dev: false
- /@types/html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
+ /@types/istanbul-lib-coverage/2.0.4:
+ resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: true
- /@types/http-proxy/1.17.8:
- resolution: {integrity: sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==}
+ /@types/istanbul-lib-report/3.0.0:
+ resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
- '@types/node': 17.0.23
+ '@types/istanbul-lib-coverage': 2.0.4
+ dev: true
+
+ /@types/istanbul-reports/3.0.1:
+ resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ dependencies:
+ '@types/istanbul-lib-report': 3.0.0
dev: true
/@types/json-schema/7.0.11:
@@ -3238,57 +3134,45 @@ packages:
dev: true
/@types/json5/0.0.29:
- resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
- dev: true
-
- /@types/mime/1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/node/16.9.1:
- resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
- dev: false
-
- /@types/node/17.0.23:
- resolution: {integrity: sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==}
+ /@types/node/17.0.41:
+ resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==}
dev: true
/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- /@types/parse5/5.0.3:
- resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
+ /@types/parse5/6.0.3:
+ resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
dev: false
+ /@types/prettier/2.6.3:
+ resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==}
+ dev: true
+
/@types/prop-types/15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/qs/6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- dev: true
-
- /@types/range-parser/1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- dev: true
-
- /@types/react-dom/17.0.13:
- resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
+ /@types/react-dom/18.0.5:
+ resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
/@types/react-is/17.0.3:
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
/@types/react-router-dom/5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
'@types/react-router': 5.1.18
dev: false
@@ -3296,84 +3180,62 @@ packages:
resolution: {integrity: sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
/@types/react-transition-group/4.4.4:
resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 18.0.12
dev: false
- /@types/react/17.0.39:
- resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
+ /@types/react/18.0.12:
+ resolution: {integrity: sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.0.11
+ csstype: 3.1.0
dev: false
/@types/resolve/1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 17.0.23
- dev: true
-
- /@types/retry/0.12.1:
- resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
+ '@types/node': 17.0.41
dev: true
/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: false
- /@types/serve-index/1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
- dependencies:
- '@types/express': 4.17.13
- dev: true
-
- /@types/serve-static/1.13.10:
- resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==}
- dependencies:
- '@types/mime': 1.3.2
- '@types/node': 17.0.23
- dev: true
-
- /@types/sockjs/0.3.33:
- resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
- dependencies:
- '@types/node': 17.0.23
- dev: true
-
- /@types/styled-components/5.1.24:
- resolution: {integrity: sha512-mz0fzq2nez+Lq5IuYammYwWgyLUE6OMAJTQL9D8hFLP4Pkh7gVYJii/VQWxq8/TK34g/OrkehXaFNdcEKcItug==}
+ /@types/styled-components/5.1.25:
+ resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==}
dependencies:
'@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.39
- csstype: 3.0.11
- dev: false
-
- /@types/systemjs/6.1.1:
- resolution: {integrity: sha512-d1M6eDKBGWx7RbYy295VEFoOF9YDJkPI959QYnmzcmeaV+SP4D0xV7dEh3sN5XF3GvO3PhGzm+17Z598nvHQuQ==}
+ '@types/react': 18.0.12
+ csstype: 3.1.0
dev: false
/@types/trusted-types/2.0.2:
resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==}
+
+ /@types/yargs-parser/21.0.0:
+ resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
- /@types/webpack-env/1.16.3:
- resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
- dev: false
+ /@types/yargs/15.0.14:
+ resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==}
+ dependencies:
+ '@types/yargs-parser': 21.0.0
+ dev: true
- /@types/ws/8.5.3:
- resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+ /@types/yargs/16.0.4:
+ resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
dependencies:
- '@types/node': 17.0.23
+ '@types/yargs-parser': 21.0.0
dev: true
- /@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0:
- resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==}
+ /@typescript-eslint/eslint-plugin/5.27.1_043f48e0ee10c350c28cdede89899bc7:
+ resolution: {integrity: sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -3383,75 +3245,37 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
- '@typescript-eslint/scope-manager': 5.14.0
- '@typescript-eslint/type-utils': 5.14.0_eslint@8.10.0+typescript@4.6.2
- '@typescript-eslint/utils': 5.14.0_eslint@8.10.0+typescript@4.6.2
+ '@typescript-eslint/parser': 5.27.1_eslint@8.17.0+typescript@4.7.3
+ '@typescript-eslint/scope-manager': 5.27.1
+ '@typescript-eslint/type-utils': 5.27.1_eslint@8.17.0+typescript@4.7.3
+ '@typescript-eslint/utils': 5.27.1_eslint@8.17.0+typescript@4.7.3
debug: 4.3.4
- eslint: 8.10.0
+ eslint: 8.17.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/experimental-utils/3.10.1_eslint@7.32.0+typescript@3.9.10:
- resolution: {integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: '*'
- dependencies:
- '@types/json-schema': 7.0.11
- '@typescript-eslint/types': 3.10.1
- '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.10
- eslint: 7.32.0
- eslint-scope: 5.1.1
- eslint-utils: 2.1.0
+ tsutils: 3.21.0_typescript@4.7.3
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
- - typescript
dev: true
- /@typescript-eslint/experimental-utils/5.19.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-F+X/TTzmb2UXbghY1LrNLNDjMcGZMhKzXuzvu0xD+YEB77EamLM7zMOLuz2kP5807IJRDLBoAFFPYa7HT62sYg==}
+ /@typescript-eslint/experimental-utils/5.26.0_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-OgUGXC/teXD8PYOkn33RSwBJPVwL0I2ipm5OHr9g9cfAhVrPC2DxQiWqaq88MNO5mbr/ZWnav3EVBpuwDreS5Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.19.0_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
+ '@typescript-eslint/utils': 5.26.0_eslint@8.17.0+typescript@4.7.3
+ eslint: 8.17.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser/3.10.1_eslint@7.32.0+typescript@3.9.10:
- resolution: {integrity: sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@types/eslint-visitor-keys': 1.0.0
- '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.32.0+typescript@3.9.10
- '@typescript-eslint/types': 3.10.1
- '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.10
- eslint: 7.32.0
- eslint-visitor-keys: 1.3.0
- typescript: 3.9.10
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/parser/5.14.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==}
+ /@typescript-eslint/parser/5.27.1_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -3460,34 +3284,34 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.14.0
- '@typescript-eslint/types': 5.14.0
- '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.2
+ '@typescript-eslint/scope-manager': 5.27.1
+ '@typescript-eslint/types': 5.27.1
+ '@typescript-eslint/typescript-estree': 5.27.1_typescript@4.7.3
debug: 4.3.4
- eslint: 8.10.0
- typescript: 4.6.2
+ eslint: 8.17.0
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.14.0:
- resolution: {integrity: sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==}
+ /@typescript-eslint/scope-manager/5.26.0:
+ resolution: {integrity: sha512-gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.14.0
- '@typescript-eslint/visitor-keys': 5.14.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/visitor-keys': 5.26.0
dev: true
- /@typescript-eslint/scope-manager/5.19.0:
- resolution: {integrity: sha512-Fz+VrjLmwq5fbQn5W7cIJZ066HxLMKvDEmf4eu1tZ8O956aoX45jAuBB76miAECMTODyUxH61AQM7q4/GOMQ5g==}
+ /@typescript-eslint/scope-manager/5.27.1:
+ resolution: {integrity: sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.19.0
- '@typescript-eslint/visitor-keys': 5.19.0
+ '@typescript-eslint/types': 5.27.1
+ '@typescript-eslint/visitor-keys': 5.27.1
dev: true
- /@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==}
+ /@typescript-eslint/type-utils/5.27.1_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -3496,54 +3320,27 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.14.0_eslint@8.10.0+typescript@4.6.2
+ '@typescript-eslint/utils': 5.27.1_eslint@8.17.0+typescript@4.7.3
debug: 4.3.4
- eslint: 8.10.0
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ eslint: 8.17.0
+ tsutils: 3.21.0_typescript@4.7.3
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/3.10.1:
- resolution: {integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==}
- engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- dev: true
-
- /@typescript-eslint/types/5.14.0:
- resolution: {integrity: sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw==}
+ /@typescript-eslint/types/5.26.0:
+ resolution: {integrity: sha512-8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.19.0:
- resolution: {integrity: sha512-zR1ithF4Iyq1wLwkDcT+qFnhs8L5VUtjgac212ftiOP/ZZUOCuuF2DeGiZZGQXGoHA50OreZqLH5NjDcDqn34w==}
+ /@typescript-eslint/types/5.27.1:
+ resolution: {integrity: sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/3.10.1_typescript@3.9.10:
- resolution: {integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 3.10.1
- '@typescript-eslint/visitor-keys': 3.10.1
- debug: 4.3.4
- glob: 7.2.0
- is-glob: 4.0.3
- lodash: 4.17.21
- semver: 7.3.7
- tsutils: 3.21.0_typescript@3.9.10
- typescript: 3.9.10
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.2:
- resolution: {integrity: sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==}
+ /@typescript-eslint/typescript-estree/5.26.0_typescript@4.7.3:
+ resolution: {integrity: sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -3551,20 +3348,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.14.0
- '@typescript-eslint/visitor-keys': 5.14.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/visitor-keys': 5.26.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ tsutils: 3.21.0_typescript@4.7.3
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.19.0_typescript@4.6.2:
- resolution: {integrity: sha512-dRPuD4ocXdaE1BM/dNR21elSEUPKaWgowCA0bqJ6YbYkvtrPVEvZ+zqcX5a8ECYn3q5iBSSUcBBD42ubaOp0Hw==}
+ /@typescript-eslint/typescript-estree/5.27.1_typescript@4.7.3:
+ resolution: {integrity: sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -3572,330 +3369,140 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.19.0
- '@typescript-eslint/visitor-keys': 5.19.0
+ '@typescript-eslint/types': 5.27.1
+ '@typescript-eslint/visitor-keys': 5.27.1
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ tsutils: 3.21.0_typescript@4.7.3
+ typescript: 4.7.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==}
+ /@typescript-eslint/utils/5.26.0_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.14.0
- '@typescript-eslint/types': 5.14.0
- '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.2
- eslint: 8.10.0
+ '@typescript-eslint/scope-manager': 5.26.0
+ '@typescript-eslint/types': 5.26.0
+ '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.7.3
+ eslint: 8.17.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0_eslint@8.17.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils/5.19.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-ZuEckdupXpXamKvFz/Ql8YnePh2ZWcwz7APICzJL985Rp5C2AYcHO62oJzIqNhAMtMK6XvrlBTZeNG8n7gS3lQ==}
+ /@typescript-eslint/utils/5.27.1_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.19.0
- '@typescript-eslint/types': 5.19.0
- '@typescript-eslint/typescript-estree': 5.19.0_typescript@4.6.2
- eslint: 8.10.0
+ '@typescript-eslint/scope-manager': 5.27.1
+ '@typescript-eslint/types': 5.27.1
+ '@typescript-eslint/typescript-estree': 5.27.1_typescript@4.7.3
+ eslint: 8.17.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0_eslint@8.17.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/3.10.1:
- resolution: {integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==}
- engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- dependencies:
- eslint-visitor-keys: 1.3.0
- dev: true
-
- /@typescript-eslint/visitor-keys/5.14.0:
- resolution: {integrity: sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw==}
+ /@typescript-eslint/visitor-keys/5.26.0:
+ resolution: {integrity: sha512-wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.14.0
+ '@typescript-eslint/types': 5.26.0
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.19.0:
- resolution: {integrity: sha512-Ym7zZoMDZcAKWsULi2s7UMLREdVQdScPQ/fKWMYefarCztWlHPFVJo8racf8R0Gc8FAEJ2eD4of8As1oFtnQlQ==}
+ /@typescript-eslint/visitor-keys/5.27.1:
+ resolution: {integrity: sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.19.0
+ '@typescript-eslint/types': 5.27.1
eslint-visitor-keys: 3.3.0
dev: true
- /@vue/preload-webpack-plugin/2.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7:
- resolution: {integrity: sha512-RoorRB50WehYbsiWu497q8egZBYlrvOo9KBUG41uth4O023Cbs+7POLm9uw2CAiViBAIhvpw1Y4w4i+MZxOfXw==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- html-webpack-plugin: ^5.0.0 || ^4.5.1
- webpack: ^5.20.0 || ^4.1.0
+ /@vitejs/plugin-react/1.3.2:
+ resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
+ engines: {node: '>=12.0.0'}
dependencies:
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- webpack: 5.70.0_webpack-cli@4.9.2
+ '@babel/core': 7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.18.2
+ '@rollup/pluginutils': 4.2.1
+ react-refresh: 0.13.0
+ resolve: 1.22.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@webassemblyjs/ast/1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
+ /abort-controller/3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- dev: true
-
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
+ event-target-shim: 5.0.1
dev: true
- /@webassemblyjs/helper-api-error/1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
+ /absolute-path/0.0.0:
+ resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
dev: true
- /@webassemblyjs/helper-buffer/1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- dev: true
-
- /@webassemblyjs/helper-numbers/1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
+ /accepts/1.3.8:
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
+ mime-types: 2.1.35
+ negotiator: 0.6.3
dev: true
- /@webassemblyjs/helper-wasm-section/1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
+ /acorn-jsx/5.3.2_acorn@8.7.1:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
+ acorn: 8.7.1
dev: true
- /@webassemblyjs/ieee754/1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
+ /acorn-node/1.8.2:
+ resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
+ acorn: 7.4.1
+ acorn-walk: 7.2.0
+ xtend: 4.0.2
- /@webassemblyjs/leb128/1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
+ /acorn-walk/7.2.0:
+ resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
+ engines: {node: '>=0.4.0'}
- /@webassemblyjs/utf8/1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- dev: true
-
- /@webassemblyjs/wasm-edit/1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-gen/1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-opt/1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-parser/1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wast-printer/1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==}
- peerDependencies:
- webpack: 4.x.x || 5.x.x
- webpack-cli: 4.x.x
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
-
- /@webpack-cli/info/1.4.1_webpack-cli@4.9.2:
- resolution: {integrity: sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==}
- peerDependencies:
- webpack-cli: 4.x.x
- dependencies:
- envinfo: 7.8.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- dev: true
-
- /@webpack-cli/serve/1.6.1_9a0b5ed2553fd0953b975a959afcbb80:
- resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==}
- peerDependencies:
- webpack-cli: 4.x.x
- webpack-dev-server: '*'
- peerDependenciesMeta:
- webpack-dev-server:
- optional: true
- dependencies:
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- dev: true
-
- /@xtuc/ieee754/1.2.0:
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- dev: true
-
- /@xtuc/long/4.2.2:
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- dev: true
-
- /accepts/1.3.8:
- resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
- engines: {node: '>= 0.6'}
- dependencies:
- mime-types: 2.1.35
- negotiator: 0.6.3
- dev: true
-
- /acorn-import-assertions/1.8.0_acorn@8.7.0:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
- dependencies:
- acorn: 8.7.0
- dev: true
-
- /acorn-jsx/5.3.2_acorn@7.4.1:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 7.4.1
- dev: true
-
- /acorn-jsx/5.3.2_acorn@8.7.0:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 8.7.0
- dev: true
-
- /acorn-node/1.8.2:
- resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
- xtend: 4.0.2
- dev: true
-
- /acorn-walk/7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
- dev: true
-
- /acorn-walk/8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
- engines: {node: '>=0.4.0'}
+ /acorn-walk/8.2.0:
+ resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+ engines: {node: '>=0.4.0'}
dev: true
/acorn/7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /acorn/8.7.0:
- resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==}
+ /acorn/8.7.1:
+ resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /aggregate-error/3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
- dev: true
-
- /ajv-formats/2.1.1:
- resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependenciesMeta:
- ajv:
- optional: true
- dependencies:
- ajv: 8.11.0
- dev: true
-
- /ajv-keywords/3.5.2_ajv@6.12.6:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
- dependencies:
- ajv: 6.12.6
- dev: true
-
- /ajv-keywords/5.1.0_ajv@8.11.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
- dependencies:
- ajv: 8.11.0
- fast-deep-equal: 3.1.3
- dev: true
-
/ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
@@ -3914,8 +3521,8 @@ packages:
uri-js: 4.4.1
dev: true
- /amazon-cognito-identity-js/5.2.8:
- resolution: {integrity: sha512-ikHbIBtdJeXUeHIKFDF+qptRbTX81ZIe+ItvsgjcNXEKuW0ZgjnHw6tgPmOFOweQfUyzW+RpA+T3fG+YqOklbw==}
+ /amazon-cognito-identity-js/5.2.9:
+ resolution: {integrity: sha512-2ZLVOE1fb0eziAaV6kXCDMe35HNFkdz3HyMwb9i+lqm1G2q3SHrliL30MHbc2KwMeu5qu/ysw5BSU+b1Y5AIaQ==}
dependencies:
buffer: 4.9.2
crypto-js: 4.1.1
@@ -3926,19 +3533,20 @@ packages:
- encoding
dev: false
- /ansi-colors/4.1.1:
- resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
- engines: {node: '>=6'}
+ /anser/1.4.10:
+ resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
dev: true
- /ansi-html-community/0.0.8:
- resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
+ /ansi-fragments/0.2.1:
+ resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
+ dependencies:
+ colorette: 1.4.0
+ slice-ansi: 2.1.0
+ strip-ansi: 5.2.0
dev: true
/ansi-regex/2.1.1:
- resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -3947,18 +3555,18 @@ packages:
engines: {node: '>=4'}
dev: true
+ /ansi-regex/4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
+ dev: true
+
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
- /ansi-regex/6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
- engines: {node: '>=12'}
- dev: true
-
/ansi-styles/2.2.1:
- resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -3973,10 +3581,7 @@ packages:
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
-
- /any-base/1.1.0:
- resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==}
- dev: false
+ dev: true
/anymatch/3.1.2:
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
@@ -3984,11 +3589,13 @@ packages:
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
+
+ /appdirsjs/1.2.6:
+ resolution: {integrity: sha512-D8wJNkqMCeQs3kLasatELsddox/Xqkhp+J07iXGyL54fVN7oc+nmNfYzGuCs1IEP6uBw+TfpuO3JKwc+lECy4w==}
dev: true
/arg/5.0.1:
resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==}
- dev: true
/argparse/1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -4004,12 +3611,12 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.17.2
- '@babel/runtime-corejs3': 7.17.9
+ '@babel/runtime': 7.18.3
+ '@babel/runtime-corejs3': 7.18.3
dev: true
/arr-diff/4.0.0:
- resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=}
+ resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4019,41 +3626,40 @@ packages:
dev: true
/arr-union/3.1.0:
- resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=}
+ resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
dev: true
- /array-flatten/1.1.1:
- resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
+ /array-filter/0.0.1:
+ resolution: {integrity: sha512-VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw==}
dev: true
- /array-flatten/2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- dev: true
-
- /array-includes/3.1.4:
- resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
+ /array-includes/3.1.5:
+ resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
get-intrinsic: 1.1.1
is-string: 1.0.7
dev: true
+ /array-map/0.0.0:
+ resolution: {integrity: sha512-123XMszMB01QKVptpDQ7x1m1pP5NmJIG1kbl0JSPPRezvwQChxAN0Gvzo7rvR1IZ2tOL2tmiy7kY/KKgnpVVpg==}
+ dev: true
+
+ /array-reduce/0.0.0:
+ resolution: {integrity: sha512-8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw==}
+ dev: true
+
/array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: true
- /array-union/3.0.1:
- resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
- engines: {node: '>=12'}
- dev: true
-
/array-unique/0.3.2:
- resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=}
+ resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4062,8 +3668,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
es-shim-unscopables: 1.0.0
dev: true
@@ -4072,35 +3678,50 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
es-shim-unscopables: 1.0.0
dev: true
+ /asap/2.0.6:
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+ dev: true
+
/assign-symbols/1.0.0:
- resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=}
+ resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
engines: {node: '>=0.10.0'}
dev: true
/ast-types-flow/0.0.7:
- resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /astral-regex/2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
+ /ast-types/0.14.2:
+ resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.4.0
+ dev: true
+
+ /astral-regex/1.0.0:
+ resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
+ engines: {node: '>=4'}
dev: true
- /async/0.9.2:
- resolution: {integrity: sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=}
+ /async-limiter/1.0.1:
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
dev: true
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
+ /async/2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
dev: true
+ /async/3.2.3:
+ resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
+ dev: true
+
/at-least-node/1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
@@ -4112,60 +3733,37 @@ packages:
hasBin: true
dev: true
- /autoprefixer/10.4.2_postcss@8.4.8:
- resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==}
+ /autoprefixer/10.4.7_postcss@8.4.14:
+ resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001331
+ browserslist: 4.20.3
+ caniuse-lite: 1.0.30001344
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /awesome-typescript-loader/5.2.1_typescript@4.6.2:
- resolution: {integrity: sha512-slv66OAJB8orL+UUaTI3pKlLorwIvS4ARZzYR9iJJyGsEgOqueMfOMdKySWzZ73vIkEe3fcwFgsKMg4d8zyb1g==}
- peerDependencies:
- typescript: ^2.7 || ^3
- dependencies:
- chalk: 2.4.2
- enhanced-resolve: 4.5.0
- loader-utils: 1.4.0
- lodash: 4.17.21
- micromatch: 3.1.10
- mkdirp: 0.5.6
- source-map-support: 0.5.21
- typescript: 4.6.2
- webpack-log: 1.2.0
- dev: true
-
- /axe-core/4.4.1:
- resolution: {integrity: sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==}
- engines: {node: '>=4'}
+ /axe-core/4.4.2:
+ resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==}
+ engines: {node: '>=12'}
dev: true
/axobject-query/2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-loader/8.2.4_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==}
- engines: {node: '>= 8.9'}
+ /babel-core/7.0.0-bridge.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- find-cache-dir: 3.3.2
- loader-utils: 2.0.2
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
+ '@babel/core': 7.18.2
dev: true
/babel-plugin-dynamic-import-node/2.3.3:
@@ -4177,7 +3775,7 @@ packages:
/babel-plugin-macros/2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
cosmiconfig: 6.0.0
resolve: 1.22.0
dev: false
@@ -4186,49 +3784,49 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
cosmiconfig: 7.0.1
resolve: 1.22.0
dev: true
- /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.2:
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
+ '@babel/compat-data': 7.17.10
+ '@babel/core': 7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.2:
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
- core-js-compat: 3.21.1
+ '@babel/core': 7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2
+ core-js-compat: 3.22.7
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.5:
+ /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.2:
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
+ '@babel/core': 7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.2
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-styled-components/2.0.6_styled-components@5.3.3:
- resolution: {integrity: sha512-Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg==}
+ /babel-plugin-styled-components/2.0.7_styled-components@5.3.5:
+ resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==}
peerDependencies:
styled-components: '>= 2'
dependencies:
@@ -4237,32 +3835,74 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.3_react@17.0.2
+ styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
/babel-plugin-syntax-jsx/6.18.0:
- resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=}
+ resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
+
+ /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0:
+ resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
+ dev: true
/babel-plugin-transform-react-remove-prop-types/0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: true
+ /babel-preset-fbjs/3.4.0_@babel+core@7.18.2:
+ resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2
+ babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-preset-react-app/10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/preset-react': 7.16.7_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
+ '@babel/core': 7.18.2
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-env': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-react': 7.17.12_@babel+core@7.18.2
+ '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2
+ '@babel/runtime': 7.18.3
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -4288,60 +3928,45 @@ packages:
/base64-js/1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: false
-
- /batch/0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
- dev: true
- /big.js/5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+ /big-integer/1.6.51:
+ resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
+ engines: {node: '>=0.6'}
dev: true
/binary-extensions/2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- dev: true
-
- /bmp-js/0.1.0:
- resolution: {integrity: sha1-4Fpj95amwf8l9Hcex62twUjAcjM=}
- dev: false
- /body-parser/1.19.2:
- resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.4
- debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.9.7
- raw-body: 2.4.3
- type-is: 1.6.18
- dev: true
-
- /bonjour/3.5.0:
- resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=}
+ /bl/4.1.0:
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
- array-flatten: 2.1.2
- deep-equal: 1.1.1
- dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.0
dev: true
/boolbase/1.0.0:
- resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
/bowser/2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
dev: false
+ /bplist-creator/0.1.0:
+ resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
+ dependencies:
+ stream-buffers: 2.2.0
+ dev: true
+
+ /bplist-parser/0.3.1:
+ resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==}
+ engines: {node: '>= 5.10.0'}
+ dependencies:
+ big-integer: 1.6.51
+ dev: true
+
/brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -4349,6 +3974,12 @@ packages:
concat-map: 0.0.1
dev: true
+ /brace-expansion/2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ dependencies:
+ balanced-match: 1.0.2
+ dev: true
+
/braces/2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
@@ -4375,31 +4006,28 @@ packages:
resolution: {integrity: sha512-nqOxTbatv6FcdgBvUTuH4MuojMZwvskspz5Y4dmpVcKd0uaQY8KEl3iALWus16+AwPVe3BIerBNEgELyaHZcQg==}
dev: false
- /browserslist/4.20.2:
- resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==}
+ /browserslist/4.20.3:
+ resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001331
- electron-to-chromium: 1.4.107
+ caniuse-lite: 1.0.30001344
+ electron-to-chromium: 1.4.141
escalade: 3.1.1
- node-releases: 2.0.3
+ node-releases: 2.0.5
picocolors: 1.0.0
dev: true
- /buffer-equal/0.0.1:
- resolution: {integrity: sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=}
- engines: {node: '>=0.4.0'}
- dev: false
+ /bser/2.1.1:
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ dependencies:
+ node-int64: 0.4.0
+ dev: true
/buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /buffer-indexof/1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
- dev: true
-
/buffer/4.9.2:
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
dependencies:
@@ -4413,10 +4041,10 @@ packages:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: false
+ dev: true
- /builtin-modules/3.2.0:
- resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==}
+ /builtin-modules/3.3.0:
+ resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
dev: true
@@ -4425,11 +4053,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /bytes/3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
- engines: {node: '>= 0.8'}
- dev: true
-
/cache-base/1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
@@ -4452,6 +4075,25 @@ packages:
get-intrinsic: 1.1.1
dev: true
+ /caller-callsite/2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ callsites: 2.0.0
+ dev: true
+
+ /caller-path/2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: true
+
+ /callsites/2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+ dev: true
+
/callsites/3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -4460,33 +4102,42 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.3.1
+ tslib: 2.4.0
dev: true
/camelcase-css/2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
+
+ /camelcase/5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /camelcase/6.3.0:
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
dev: true
/camelize/1.0.0:
- resolution: {integrity: sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=}
+ resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==}
dev: false
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001331
+ browserslist: 4.20.3
+ caniuse-lite: 1.0.30001344
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001331:
- resolution: {integrity: sha512-Y1xk6paHpUXKP/P6YjQv1xqyTbgAP05ycHBcRdQjTcyXlWol868sJJPlmk5ylOekw2BrucWes5jk+LvVd7WZ5Q==}
+ /caniuse-lite/1.0.30001344:
+ resolution: {integrity: sha512-0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g==}
dev: true
/chalk/1.1.3:
- resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=}
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-styles: 2.2.1
@@ -4510,6 +4161,7 @@ packages:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ dev: true
/charcodes/0.2.0:
resolution: {integrity: sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==}
@@ -4529,11 +4181,13 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.2
+
+ /ci-info/2.0.0:
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: true
- /chrome-trace-event/1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
- engines: {node: '>=6.0'}
+ /ci-info/3.3.1:
+ resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==}
dev: true
/class-utils/0.3.6:
@@ -4557,11 +4211,33 @@ packages:
source-map: 0.6.1
dev: true
- /clean-stack/2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ /cli-cursor/2.1.0:
+ resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
+ engines: {node: '>=4'}
+ dependencies:
+ restore-cursor: 2.0.0
+ dev: true
+
+ /cli-cursor/3.1.0:
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: true
+
+ /cli-spinners/2.6.1:
+ resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
dev: true
+ /cliui/6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+
/cliui/7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
@@ -4579,13 +4255,18 @@ packages:
shallow-clone: 3.0.1
dev: true
+ /clone/1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+ dev: true
+
/clsx/1.1.1:
resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
engines: {node: '>=6'}
dev: false
/collection-visit/1.0.0:
- resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=}
+ resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
engines: {node: '>=0.10.0'}
dependencies:
map-visit: 1.0.0
@@ -4604,19 +4285,46 @@ packages:
color-name: 1.1.4
/color-name/1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ /color-string/1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: false
+
+ /color/4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ dev: false
+
/colord/2.9.2:
resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==}
dev: true
+ /colorette/1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+ dev: true
+
/colorette/2.0.16:
resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
dev: true
+ /command-exists/1.2.9:
+ resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
+ dev: true
+
+ /commander/2.13.0:
+ resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
+ dev: true
+
/commander/2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: true
@@ -4637,7 +4345,7 @@ packages:
dev: true
/commondir/1.0.1:
- resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: true
/component-emitter/1.3.0:
@@ -4668,8 +4376,8 @@ packages:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true
- /concurrently/7.0.0:
- resolution: {integrity: sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==}
+ /concurrently/7.2.1:
+ resolution: {integrity: sha512-7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
dependencies:
@@ -4677,10 +4385,11 @@ packages:
date-fns: 2.28.0
lodash: 4.17.21
rxjs: 6.6.7
+ shell-quote: 1.7.3
spawn-command: 0.0.2-1
supports-color: 8.1.1
tree-kill: 1.2.2
- yargs: 16.2.0
+ yargs: 17.5.1
dev: true
/confusing-browser-globals/1.0.11:
@@ -4692,16 +4401,18 @@ packages:
engines: {node: '>=0.8'}
dev: true
- /content-disposition/0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
+ /connect/3.7.0:
+ resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
+ engines: {node: '>= 0.10.0'}
dependencies:
- safe-buffer: 5.2.1
+ debug: 2.6.9
+ finalhandler: 1.1.2
+ parseurl: 1.3.3
+ utils-merge: 1.0.1
dev: true
- /content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
- engines: {node: '>= 0.6'}
+ /consola/2.15.3:
+ resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
dev: true
/convert-source-map/1.8.0:
@@ -4709,43 +4420,31 @@ packages:
dependencies:
safe-buffer: 5.1.2
- /cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
- dev: true
-
/cookie/0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
+ dev: false
+
+ /copy-anything/2.0.6:
+ resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
+ dependencies:
+ is-what: 3.14.1
+ dev: true
/copy-descriptor/0.1.1:
- resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=}
+ resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
dev: true
- /copy-webpack-plugin/10.2.4_webpack@5.70.0:
- resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==}
- engines: {node: '>= 12.20.0'}
- peerDependencies:
- webpack: ^5.1.0
+ /core-js-compat/3.22.7:
+ resolution: {integrity: sha512-uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==}
dependencies:
- fast-glob: 3.2.11
- glob-parent: 6.0.2
- globby: 12.2.0
- normalize-path: 3.0.0
- schema-utils: 4.0.0
- serialize-javascript: 6.0.0
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /core-js-compat/3.21.1:
- resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==}
- dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
semver: 7.0.0
dev: true
- /core-js-pure/3.21.1:
- resolution: {integrity: sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==}
+ /core-js-pure/3.22.7:
+ resolution: {integrity: sha512-wTriFxiZI+C8msGeh7fJcbC/a0V8fdInN1oS2eK79DMBGs8iIJiXhtFJCiT3rBa8w6zroHWW3p8ArlujZ/Mz+w==}
requiresBuild: true
dev: true
@@ -4753,6 +4452,16 @@ packages:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
+ /cosmiconfig/5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: true
+
/cosmiconfig/6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
@@ -4762,6 +4471,7 @@ packages:
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
+ dev: false
/cosmiconfig/7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
@@ -4782,6 +4492,17 @@ packages:
- encoding
dev: false
+ /cross-spawn/6.0.5:
+ resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
+ engines: {node: '>=4.8'}
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.1
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+
/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -4801,61 +4522,21 @@ packages:
dev: true
/css-color-keywords/1.0.0:
- resolution: {integrity: sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=}
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
dev: false
- /css-color-names/1.0.1:
- resolution: {integrity: sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==}
- dev: false
-
- /css-declaration-sorter/6.2.2_postcss@8.4.8:
+ /css-declaration-sorter/6.2.2_postcss@8.4.14:
resolution: {integrity: sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /css-loader/5.2.7_webpack@5.70.0:
- resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- loader-utils: 2.0.2
- postcss: 8.4.8
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.8
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.8
- postcss-modules-scope: 3.0.0_postcss@8.4.8
- postcss-modules-values: 4.0.0_postcss@8.4.8
- postcss-value-parser: 4.2.0
- schema-utils: 3.1.1
- semver: 7.3.7
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /css-loader/6.7.1_webpack@5.70.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.8
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.8
- postcss-modules-scope: 3.0.0_postcss@8.4.8
- postcss-modules-values: 4.0.0_postcss@8.4.8
- postcss-value-parser: 4.2.0
- semver: 7.3.7
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: false
-
/css-mediaquery/0.1.2:
- resolution: {integrity: sha1-aiw3NEkoYYYxxUvTPO3TAdoYvqA=}
+ resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==}
dev: false
/css-select/4.3.0:
@@ -4865,9 +4546,16 @@ packages:
css-what: 6.1.0
domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
+ nth-check: 2.1.1
dev: true
+ /css-selector-tokenizer/0.8.0:
+ resolution: {integrity: sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==}
+ dependencies:
+ cssesc: 3.0.0
+ fastparse: 1.1.2
+ dev: false
+
/css-to-react-native/3.0.0:
resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==}
dependencies:
@@ -4887,7 +4575,7 @@ packages:
/css-vendor/2.0.8:
resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
is-in-browser: 1.1.3
dev: false
@@ -4896,67 +4584,75 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /css/3.0.0:
+ resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.6.0
+ dev: true
+
/cssesc/3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/5.2.7_postcss@8.4.8:
- resolution: {integrity: sha512-JiKP38ymZQK+zVKevphPzNSGHSlTI+AOwlasoSRtSVMUU285O7/6uZyd5NbW92ZHp41m0sSHe6JoZosakj63uA==}
+ /cssnano-preset-default/5.2.11_postcss@8.4.14:
+ resolution: {integrity: sha512-4PadR1NtuaIK8MvLNuY7MznK4WJteldGlzCiMaaTiOUP+apeiIvUDIXykzUOoqgOOUAHrU64ncdD90NfZR3LSQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.2.2_postcss@8.4.8
- cssnano-utils: 3.1.0_postcss@8.4.8
- postcss: 8.4.8
- postcss-calc: 8.2.4_postcss@8.4.8
- postcss-colormin: 5.3.0_postcss@8.4.8
- postcss-convert-values: 5.1.0_postcss@8.4.8
- postcss-discard-comments: 5.1.1_postcss@8.4.8
- postcss-discard-duplicates: 5.1.0_postcss@8.4.8
- postcss-discard-empty: 5.1.1_postcss@8.4.8
- postcss-discard-overridden: 5.1.0_postcss@8.4.8
- postcss-merge-longhand: 5.1.4_postcss@8.4.8
- postcss-merge-rules: 5.1.1_postcss@8.4.8
- postcss-minify-font-values: 5.1.0_postcss@8.4.8
- postcss-minify-gradients: 5.1.1_postcss@8.4.8
- postcss-minify-params: 5.1.2_postcss@8.4.8
- postcss-minify-selectors: 5.2.0_postcss@8.4.8
- postcss-normalize-charset: 5.1.0_postcss@8.4.8
- postcss-normalize-display-values: 5.1.0_postcss@8.4.8
- postcss-normalize-positions: 5.1.0_postcss@8.4.8
- postcss-normalize-repeat-style: 5.1.0_postcss@8.4.8
- postcss-normalize-string: 5.1.0_postcss@8.4.8
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.8
- postcss-normalize-unicode: 5.1.0_postcss@8.4.8
- postcss-normalize-url: 5.1.0_postcss@8.4.8
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.8
- postcss-ordered-values: 5.1.1_postcss@8.4.8
- postcss-reduce-initial: 5.1.0_postcss@8.4.8
- postcss-reduce-transforms: 5.1.0_postcss@8.4.8
- postcss-svgo: 5.1.0_postcss@8.4.8
- postcss-unique-selectors: 5.1.1_postcss@8.4.8
- dev: true
-
- /cssnano-utils/3.1.0_postcss@8.4.8:
+ css-declaration-sorter: 6.2.2_postcss@8.4.14
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
+ postcss-calc: 8.2.4_postcss@8.4.14
+ postcss-colormin: 5.3.0_postcss@8.4.14
+ postcss-convert-values: 5.1.2_postcss@8.4.14
+ postcss-discard-comments: 5.1.2_postcss@8.4.14
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.14
+ postcss-discard-empty: 5.1.1_postcss@8.4.14
+ postcss-discard-overridden: 5.1.0_postcss@8.4.14
+ postcss-merge-longhand: 5.1.5_postcss@8.4.14
+ postcss-merge-rules: 5.1.2_postcss@8.4.14
+ postcss-minify-font-values: 5.1.0_postcss@8.4.14
+ postcss-minify-gradients: 5.1.1_postcss@8.4.14
+ postcss-minify-params: 5.1.3_postcss@8.4.14
+ postcss-minify-selectors: 5.2.1_postcss@8.4.14
+ postcss-normalize-charset: 5.1.0_postcss@8.4.14
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.14
+ postcss-normalize-positions: 5.1.0_postcss@8.4.14
+ postcss-normalize-repeat-style: 5.1.0_postcss@8.4.14
+ postcss-normalize-string: 5.1.0_postcss@8.4.14
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.14
+ postcss-normalize-unicode: 5.1.0_postcss@8.4.14
+ postcss-normalize-url: 5.1.0_postcss@8.4.14
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.14
+ postcss-ordered-values: 5.1.2_postcss@8.4.14
+ postcss-reduce-initial: 5.1.0_postcss@8.4.14
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.14
+ postcss-svgo: 5.1.0_postcss@8.4.14
+ postcss-unique-selectors: 5.1.1_postcss@8.4.14
+ dev: true
+
+ /cssnano-utils/3.1.0_postcss@8.4.14:
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /cssnano/5.1.4_postcss@8.4.8:
- resolution: {integrity: sha512-hbfhVZreEPyzl+NbvRsjNo54JOX80b+j6nqG2biLVLaZHJEiqGyMh4xDGHtwhUKd5p59mj2GlDqlUBwJUuIu5A==}
+ /cssnano/5.1.11_postcss@8.4.14:
+ resolution: {integrity: sha512-2nx+O6LvewPo5EBtYrKc8762mMkZRk9cMGIOP4UlkmxHm7ObxH+zvsJJ+qLwPkUc4/yumL/qJkavYi9NlodWIQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.7_postcss@8.4.8
+ cssnano-preset-default: 5.2.11_postcss@8.4.14
lilconfig: 2.0.5
- postcss: 8.4.8
+ postcss: 8.4.14
yaml: 1.10.2
dev: true
@@ -4971,16 +4667,25 @@ packages:
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
dev: false
- /csstype/3.0.11:
- resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==}
+ /csstype/3.1.0:
+ resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
dev: false
- /d/1.0.1:
- resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
- dependencies:
- es5-ext: 0.10.60
- type: 1.2.0
- dev: true
+ /daisyui/2.15.2_a191cbaa25c4a0a9f05cc78eac153be7:
+ resolution: {integrity: sha512-12hjzlOUkGVzMPKhaBc8soqNY2mJWGTYJF8sTuCibDcdGbHDmYgBUY0OX1HHIVq/qh2vELh5yHb4QCgCDWUAwg==}
+ peerDependencies:
+ autoprefixer: ^10.0.2
+ postcss: ^8.1.6
+ dependencies:
+ autoprefixer: 10.4.7_postcss@8.4.14
+ color: 4.2.3
+ css-selector-tokenizer: 0.8.0
+ postcss: 8.4.14
+ postcss-js: 4.0.0_postcss@8.4.14
+ tailwindcss: 3.0.24
+ transitivePeerDependencies:
+ - ts-node
+ dev: false
/damerau-levenshtein/1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
@@ -4991,6 +4696,10 @@ packages:
engines: {node: '>=0.11'}
dev: true
+ /dayjs/1.11.2:
+ resolution: {integrity: sha512-F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw==}
+ dev: true
+
/debug/2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
dependencies:
@@ -5028,59 +4737,53 @@ packages:
supports-color: 5.5.0
dev: false
- /decode-uri-component/0.2.0:
- resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=}
- engines: {node: '>=0.10'}
+ /decamelize/1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
dev: true
- /deep-equal/1.1.1:
- resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
- dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
- is-regex: 1.1.4
- object-is: 1.1.5
- object-keys: 1.1.1
- regexp.prototype.flags: 1.4.2
+ /decode-uri-component/0.2.0:
+ resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
+ engines: {node: '>=0.10'}
dev: true
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
+ /deepmerge/3.3.0:
+ resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/deepmerge/4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
engines: {node: '>=0.10.0'}
dev: true
- /default-gateway/6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
+ /defaults/1.0.3:
+ resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==}
dependencies:
- execa: 5.1.1
+ clone: 1.0.4
dev: true
- /define-lazy-prop/2.0.0:
- resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
- engines: {node: '>=8'}
- dev: true
-
- /define-properties/1.1.3:
- resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
+ /define-properties/1.1.4:
+ resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
dependencies:
+ has-property-descriptors: 1.0.0
object-keys: 1.1.1
dev: true
/define-property/0.2.5:
- resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=}
+ resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
dev: true
/define-property/1.0.0:
- resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=}
+ resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
@@ -5095,49 +4798,41 @@ packages:
dev: true
/defined/1.0.0:
- resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=}
- dev: true
+ resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
- /del/6.0.0:
- resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==}
- engines: {node: '>=10'}
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.10
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
+ /denodeify/1.2.1:
+ resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
dev: true
- /depd/1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
- engines: {node: '>= 0.6'}
+ /depd/2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
dev: true
- /destroy/1.0.4:
- resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=}
+ /deprecated-react-native-prop-types/2.3.0:
+ resolution: {integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==}
+ dependencies:
+ '@react-native/normalize-color': 2.0.0
+ invariant: 2.2.4
+ prop-types: 15.8.1
dev: true
- /detect-node/2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ /destroy/1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: true
- /detective/5.2.0:
- resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==}
+ /detective/5.2.1:
+ resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
acorn-node: 1.8.2
defined: 1.0.0
minimist: 1.2.6
- dev: true
/didyoumean/1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- dev: true
/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
@@ -5148,24 +4843,6 @@ packages:
/dlv/1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dev: true
-
- /dns-equal/1.0.0:
- resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
- dev: true
-
- /dns-packet/1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
- dependencies:
- ip: 1.1.5
- safe-buffer: 5.2.1
- dev: true
-
- /dns-txt/2.0.2:
- resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=}
- dependencies:
- buffer-indexof: 1.1.1
- dev: true
/doctrine/2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
@@ -5181,17 +4858,11 @@ packages:
esutils: 2.0.3
dev: true
- /dom-converter/0.2.0:
- resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
- dependencies:
- utila: 0.4.0
- dev: true
-
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.17.2
- csstype: 3.0.11
+ '@babel/runtime': 7.18.3
+ csstype: 3.1.0
dev: false
/dom-serializer/1.4.1:
@@ -5202,187 +4873,525 @@ packages:
entities: 2.2.0
dev: true
- /dom-walk/0.1.2:
- resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
- dev: false
-
/domelementtype/2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
- /domhandler/4.3.1:
- resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
- engines: {node: '>= 4'}
- dependencies:
- domelementtype: 2.3.0
+ /domhandler/4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
+ dev: true
+
+ /domutils/2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+ dependencies:
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ dev: true
+
+ /dot-case/3.0.4:
+ resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.4.0
+ dev: true
+
+ /dotenv-expand/8.0.3:
+ resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /dotenv/16.0.1:
+ resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /ee-first/1.1.1:
+ resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ dev: true
+
+ /ejs/3.1.8:
+ resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dependencies:
+ jake: 10.8.5
+ dev: true
+
+ /electron-to-chromium/1.4.141:
+ resolution: {integrity: sha512-mfBcbqc0qc6RlxrsIgLG2wCqkiPAjEezHxGTu7p3dHHFOurH4EjS9rFZndX5axC8264rI1Pcbw8uQP39oZckeA==}
+ dev: true
+
+ /emoji-regex/8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ dev: true
+
+ /emoji-regex/9.2.2:
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+ dev: true
+
+ /encodeurl/1.0.2:
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /end-of-stream/1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ dependencies:
+ once: 1.4.0
+ dev: true
+
+ /entities/2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+ dev: true
+
+ /envinfo/7.8.1:
+ resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /errno/0.1.8:
+ resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ prr: 1.0.1
+ dev: true
+ optional: true
+
+ /error-ex/1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
+
+ /error-stack-parser/2.0.7:
+ resolution: {integrity: sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==}
+ dependencies:
+ stackframe: 1.2.1
+ dev: true
+
+ /errorhandler/1.5.1:
+ resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ accepts: 1.3.8
+ escape-html: 1.0.3
+ dev: true
+
+ /es-abstract/1.20.1:
+ resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ es-to-primitive: 1.2.1
+ function-bind: 1.1.1
+ function.prototype.name: 1.1.5
+ get-intrinsic: 1.1.1
+ get-symbol-description: 1.0.0
+ has: 1.0.3
+ has-property-descriptors: 1.0.0
+ has-symbols: 1.0.3
+ internal-slot: 1.0.3
+ is-callable: 1.2.4
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-weakref: 1.0.2
+ object-inspect: 1.12.2
+ object-keys: 1.1.1
+ object.assign: 4.1.2
+ regexp.prototype.flags: 1.4.3
+ string.prototype.trimend: 1.0.5
+ string.prototype.trimstart: 1.0.5
+ unbox-primitive: 1.0.2
+ dev: true
+
+ /es-shim-unscopables/1.0.0:
+ resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ dependencies:
+ has: 1.0.3
+ dev: true
+
+ /es-to-primitive/1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.4
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+ dev: true
+
+ /esbuild-android-64/0.14.34:
+ resolution: {integrity: sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-android-arm64/0.13.15:
+ resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-android-arm64/0.14.34:
+ resolution: {integrity: sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-64/0.13.15:
+ resolution: {integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-64/0.14.34:
+ resolution: {integrity: sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-arm64/0.13.15:
+ resolution: {integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-arm64/0.14.34:
+ resolution: {integrity: sha512-vpidSJEBxx6lf1NWgXC+DCmGqesJuZ5Y8aQVVsaoO4i8tRXbXb0whChRvop/zd3nfNM4dIl5EXAky0knRX5I6w==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-64/0.13.15:
+ resolution: {integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-64/0.14.34:
+ resolution: {integrity: sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-arm64/0.13.15:
+ resolution: {integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-arm64/0.14.34:
+ resolution: {integrity: sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-32/0.13.15:
+ resolution: {integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-32/0.14.34:
+ resolution: {integrity: sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-64/0.13.15:
+ resolution: {integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-64/0.14.34:
+ resolution: {integrity: sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /domutils/2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- dependencies:
- dom-serializer: 1.4.1
- domelementtype: 2.3.0
- domhandler: 4.3.1
+ /esbuild-linux-arm/0.13.15:
+ resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /dot-case/3.0.4:
- resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
- dependencies:
- no-case: 3.0.4
- tslib: 2.3.1
+ /esbuild-linux-arm/0.14.34:
+ resolution: {integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+ /esbuild-linux-arm64/0.13.15:
+ resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /ee-first/1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ /esbuild-linux-arm64/0.14.34:
+ resolution: {integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /ejs/3.1.6:
- resolution: {integrity: sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==}
- engines: {node: '>=0.10.0'}
- hasBin: true
- dependencies:
- jake: 10.8.4
+ /esbuild-linux-mips64le/0.13.15:
+ resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /electron-to-chromium/1.4.107:
- resolution: {integrity: sha512-Huen6taaVrUrSy8o7mGStByba8PfOWWluHNxSHGBrCgEdFVLtvdQDBr9LBCF9Uci8SYxh28QNNMO0oC17wbGAg==}
+ /esbuild-linux-mips64le/0.14.34:
+ resolution: {integrity: sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /emoji-regex/8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ /esbuild-linux-ppc64le/0.13.15:
+ resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /emoji-regex/9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+ /esbuild-linux-ppc64le/0.14.34:
+ resolution: {integrity: sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
+ /esbuild-linux-riscv64/0.14.34:
+ resolution: {integrity: sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /encodeurl/1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
- engines: {node: '>= 0.8'}
+ /esbuild-linux-s390x/0.14.34:
+ resolution: {integrity: sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /enhanced-resolve/4.5.0:
- resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- graceful-fs: 4.2.10
- memory-fs: 0.5.0
- tapable: 1.1.3
+ /esbuild-netbsd-64/0.13.15:
+ resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /enhanced-resolve/5.9.3:
- resolution: {integrity: sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==}
- engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.10
- tapable: 2.2.1
-
- /enquirer/2.3.6:
- resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
- engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.1
+ /esbuild-netbsd-64/0.14.34:
+ resolution: {integrity: sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /entities/2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+ /esbuild-openbsd-64/0.13.15:
+ resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /envinfo/7.8.1:
- resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
- engines: {node: '>=4'}
- hasBin: true
+ /esbuild-openbsd-64/0.14.34:
+ resolution: {integrity: sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /errno/0.1.8:
- resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
- hasBin: true
- dependencies:
- prr: 1.0.1
+ /esbuild-sunos-64/0.13.15:
+ resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
dev: true
+ optional: true
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
+ /esbuild-sunos-64/0.14.34:
+ resolution: {integrity: sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
- /es-abstract/1.19.4:
- resolution: {integrity: sha512-flV8e5g9/xulChMG48Fygk1ptpo4lQRJ0eJYtxJFgi7pklLx7EFcOJ34jnvr8pbWlaFN/AT1cZpe0hiFel9Hqg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- es-to-primitive: 1.2.1
- function-bind: 1.1.1
- get-intrinsic: 1.1.1
- get-symbol-description: 1.0.0
- has: 1.0.3
- has-symbols: 1.0.3
- internal-slot: 1.0.3
- is-callable: 1.2.4
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-weakref: 1.0.2
- object-inspect: 1.12.0
- object-keys: 1.1.1
- object.assign: 4.1.2
- string.prototype.trimend: 1.0.4
- string.prototype.trimstart: 1.0.4
- unbox-primitive: 1.0.1
+ /esbuild-windows-32/0.13.15:
+ resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+ /esbuild-windows-32/0.14.34:
+ resolution: {integrity: sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /es-shim-unscopables/1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
- dependencies:
- has: 1.0.3
+ /esbuild-windows-64/0.13.15:
+ resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /es-to-primitive/1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.4
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ /esbuild-windows-64/0.14.34:
+ resolution: {integrity: sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /es5-ext/0.10.60:
- resolution: {integrity: sha512-jpKNXIt60htYG59/9FGf2PYT3pwMpnEbNKysU+k/4FGwyGtMotOvcZOuW+EmXXYASRqYSXQfGL5cVIthOTgbkg==}
- engines: {node: '>=0.10'}
+ /esbuild-windows-arm64/0.13.15:
+ resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==}
+ cpu: [arm64]
+ os: [win32]
requiresBuild: true
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- next-tick: 1.1.0
dev: true
+ optional: true
- /es6-iterator/2.0.3:
- resolution: {integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.60
- es6-symbol: 3.1.3
+ /esbuild-windows-arm64/0.14.34:
+ resolution: {integrity: sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /es6-symbol/3.1.3:
- resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
- dependencies:
- d: 1.0.1
- ext: 1.6.0
+ /esbuild/0.13.15:
+ resolution: {integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ esbuild-android-arm64: 0.13.15
+ esbuild-darwin-64: 0.13.15
+ esbuild-darwin-arm64: 0.13.15
+ esbuild-freebsd-64: 0.13.15
+ esbuild-freebsd-arm64: 0.13.15
+ esbuild-linux-32: 0.13.15
+ esbuild-linux-64: 0.13.15
+ esbuild-linux-arm: 0.13.15
+ esbuild-linux-arm64: 0.13.15
+ esbuild-linux-mips64le: 0.13.15
+ esbuild-linux-ppc64le: 0.13.15
+ esbuild-netbsd-64: 0.13.15
+ esbuild-openbsd-64: 0.13.15
+ esbuild-sunos-64: 0.13.15
+ esbuild-windows-32: 0.13.15
+ esbuild-windows-64: 0.13.15
+ esbuild-windows-arm64: 0.13.15
+ dev: true
+
+ /esbuild/0.14.34:
+ resolution: {integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ esbuild-android-64: 0.14.34
+ esbuild-android-arm64: 0.14.34
+ esbuild-darwin-64: 0.14.34
+ esbuild-darwin-arm64: 0.14.34
+ esbuild-freebsd-64: 0.14.34
+ esbuild-freebsd-arm64: 0.14.34
+ esbuild-linux-32: 0.14.34
+ esbuild-linux-64: 0.14.34
+ esbuild-linux-arm: 0.14.34
+ esbuild-linux-arm64: 0.14.34
+ esbuild-linux-mips64le: 0.14.34
+ esbuild-linux-ppc64le: 0.14.34
+ esbuild-linux-riscv64: 0.14.34
+ esbuild-linux-s390x: 0.14.34
+ esbuild-netbsd-64: 0.14.34
+ esbuild-openbsd-64: 0.14.34
+ esbuild-sunos-64: 0.14.34
+ esbuild-windows-32: 0.14.34
+ esbuild-windows-64: 0.14.34
+ esbuild-windows-arm64: 0.14.34
dev: true
/escalade/3.1.1:
@@ -5391,18 +5400,18 @@ packages:
dev: true
/escape-html/1.0.3:
- resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: true
/escape-string-regexp/1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
/escape-string-regexp/4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /eslint-config-airbnb-base/15.0.0_8b406960a2a06af75ddac353adbd0cfd:
+ /eslint-config-airbnb-base/15.0.0_de2e8b5f32821e366389b4575f54c566:
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -5410,14 +5419,14 @@ packages:
eslint-plugin-import: ^2.25.2
dependencies:
confusing-browser-globals: 1.0.11
- eslint: 8.10.0
- eslint-plugin-import: 2.25.4_eslint@8.10.0
+ eslint: 8.17.0
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
object.assign: 4.1.2
object.entries: 1.1.5
semver: 6.3.0
dev: true
- /eslint-config-airbnb/19.0.4_d088d899c01a254e9346ef40899b7d56:
+ /eslint-config-airbnb/19.0.4_790ac381f0561db09e4c291cb829676e:
resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -5427,45 +5436,46 @@ packages:
eslint-plugin-react: ^7.28.0
eslint-plugin-react-hooks: ^4.3.0
dependencies:
- eslint: 8.10.0
- eslint-config-airbnb-base: 15.0.0_8b406960a2a06af75ddac353adbd0cfd
- eslint-plugin-import: 2.25.4_eslint@8.10.0
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
- eslint-plugin-react: 7.29.4_eslint@8.10.0
+ eslint: 8.17.0
+ eslint-config-airbnb-base: 15.0.0_de2e8b5f32821e366389b4575f54c566
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.17.0
+ eslint-plugin-react: 7.30.0_eslint@8.17.0
+ eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0
object.assign: 4.1.2
object.entries: 1.1.5
dev: true
- /eslint-config-prettier/8.5.0_eslint@8.10.0:
+ /eslint-config-prettier/8.5.0_eslint@8.17.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
dev: true
- /eslint-config-react-app/7.0.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==}
+ /eslint-config-react-app/7.0.1_1caf21791a09b9d7407b2a14d5d2031e:
+ resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
eslint: ^8.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/eslint-parser': 7.17.0_@babel+core@7.17.5+eslint@8.10.0
- '@rushstack/eslint-patch': 1.1.2
- '@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
+ '@babel/core': 7.18.2
+ '@babel/eslint-parser': 7.18.2_@babel+core@7.18.2+eslint@8.17.0
+ '@rushstack/eslint-patch': 1.1.3
+ '@typescript-eslint/eslint-plugin': 5.27.1_043f48e0ee10c350c28cdede89899bc7
+ '@typescript-eslint/parser': 5.27.1_eslint@8.17.0+typescript@4.7.3
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
- eslint: 8.10.0
- eslint-plugin-flowtype: 8.0.3_eslint@8.10.0
- eslint-plugin-import: 2.25.4_eslint@8.10.0
- eslint-plugin-jest: 25.7.0_22191a90d902226c492032929b57715a
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.10.0
- eslint-plugin-react: 7.29.4_eslint@8.10.0
- eslint-plugin-react-hooks: 4.4.0_eslint@8.10.0
- eslint-plugin-testing-library: 5.3.1_eslint@8.10.0+typescript@4.6.2
+ eslint: 8.17.0
+ eslint-plugin-flowtype: 8.0.3_ae853594273fe47c46b6f572c00fe240
+ eslint-plugin-import: 2.26.0_eslint@8.17.0
+ eslint-plugin-jest: 25.7.0_fee3dc0a241b544764e3d124abfaff26
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.17.0
+ eslint-plugin-react: 7.30.0_eslint@8.17.0
+ eslint-plugin-react-hooks: 4.5.0_eslint@8.17.0
+ eslint-plugin-testing-library: 5.5.1_eslint@8.17.0+typescript@4.7.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -5489,7 +5499,7 @@ packages:
find-up: 2.1.0
dev: true
- /eslint-plugin-flowtype/8.0.3_eslint@8.10.0:
+ /eslint-plugin-flowtype/8.0.3_ae853594273fe47c46b6f572c00fe240:
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5497,26 +5507,28 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
- eslint: 8.10.0
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ eslint: 8.17.0
lodash: 4.17.21
string-natural-compare: 3.0.1
dev: true
- /eslint-plugin-import/2.25.4_eslint@8.10.0:
- resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
+ /eslint-plugin-import/2.26.0_eslint@8.17.0:
+ resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.10.0
+ eslint: 8.17.0
eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.3
has: 1.0.3
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
@@ -5524,7 +5536,7 @@ packages:
tsconfig-paths: 3.14.1
dev: true
- /eslint-plugin-jest/25.7.0_22191a90d902226c492032929b57715a:
+ /eslint-plugin-jest/25.7.0_fee3dc0a241b544764e3d124abfaff26:
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -5537,44 +5549,44 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/experimental-utils': 5.19.0_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
+ '@typescript-eslint/eslint-plugin': 5.27.1_043f48e0ee10c350c28cdede89899bc7
+ '@typescript-eslint/experimental-utils': 5.26.0_eslint@8.17.0+typescript@4.7.3
+ eslint: 8.17.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.10.0:
+ /eslint-plugin-jsx-a11y/6.5.1_eslint@8.17.0:
resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
aria-query: 4.2.2
- array-includes: 3.1.4
+ array-includes: 3.1.5
ast-types-flow: 0.0.7
- axe-core: 4.4.1
+ axe-core: 4.4.2
axobject-query: 2.2.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.10.0
+ eslint: 8.17.0
has: 1.0.3
- jsx-ast-utils: 3.2.2
+ jsx-ast-utils: 3.3.0
language-tags: 1.0.5
minimatch: 3.1.2
dev: true
- /eslint-plugin-prefer-arrow/1.2.3_eslint@8.10.0:
+ /eslint-plugin-prefer-arrow/1.2.3_eslint@8.17.0:
resolution: {integrity: sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==}
peerDependencies:
eslint: '>=2.0.0'
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
dev: true
- /eslint-plugin-prettier/4.0.0_f3d13a703a9c1079e3d1af6044603beb:
+ /eslint-plugin-prettier/4.0.0_a088652d234d3f0e6595b5f3073e25de:
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
engines: {node: '>=6.0.0'}
peerDependencies:
@@ -5585,37 +5597,37 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.10.0
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- prettier: 2.5.1
+ eslint: 8.17.0
+ eslint-config-prettier: 8.5.0_eslint@8.17.0
+ prettier: 2.6.2
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-react-hooks/4.4.0_eslint@8.10.0:
- resolution: {integrity: sha512-U3RVIfdzJaeKDQKEJbz5p3NW8/L80PCATJAfuojwbaEL+gBjfGdhUcGde+WGUW46Q5sr/NgxevsIiDtNXrvZaQ==}
+ /eslint-plugin-react-hooks/4.5.0_eslint@8.17.0:
+ resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
dev: true
- /eslint-plugin-react/7.29.4_eslint@8.10.0:
- resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==}
+ /eslint-plugin-react/7.30.0_eslint@8.17.0:
+ resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.5
array.prototype.flatmap: 1.3.0
doctrine: 2.1.0
- eslint: 8.10.0
+ eslint: 8.17.0
estraverse: 5.3.0
- jsx-ast-utils: 3.2.2
+ jsx-ast-utils: 3.3.0
minimatch: 3.1.2
object.entries: 1.1.5
object.fromentries: 2.0.5
- object.hasown: 1.1.0
+ object.hasown: 1.1.1
object.values: 1.1.5
prop-types: 15.8.1
resolve: 2.0.0-next.3
@@ -5623,14 +5635,14 @@ packages:
string.prototype.matchall: 4.0.7
dev: true
- /eslint-plugin-testing-library/5.3.1_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-OfF4dlG/q6ck6DL3P8Z0FPdK0dU5K57gsBu7eUcaVbwYKaNzjgejnXiM9CCUevppORkvfek+9D3Uj/9ZZ8Vz8g==}
+ /eslint-plugin-testing-library/5.5.1_eslint@8.17.0+typescript@4.7.3:
+ resolution: {integrity: sha512-plLEkkbAKBjPxsLj7x4jNapcHAg2ernkQlKKrN2I8NrQwPISZHyCUNvg5Hv3EDqOQReToQb5bnqXYbkijJPE/g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.19.0_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
+ '@typescript-eslint/utils': 5.27.1_eslint@8.17.0+typescript@4.7.3
+ eslint: 8.17.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -5652,28 +5664,16 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/2.1.0:
- resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
- engines: {node: '>=6'}
- dependencies:
- eslint-visitor-keys: 1.3.0
- dev: true
-
- /eslint-utils/3.0.0_eslint@8.10.0:
+ /eslint-utils/3.0.0_eslint@8.17.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.10.0
+ eslint: 8.17.0
eslint-visitor-keys: 2.1.0
dev: true
- /eslint-visitor-keys/1.3.0:
- resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
- engines: {node: '>=4'}
- dev: true
-
/eslint-visitor-keys/2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
@@ -5684,61 +5684,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/7.32.0:
- resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
- engines: {node: ^10.12.0 || >=12.0.0}
- hasBin: true
- dependencies:
- '@babel/code-frame': 7.12.11
- '@eslint/eslintrc': 0.4.3
- '@humanwhocodes/config-array': 0.5.0
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- enquirer: 2.3.6
- escape-string-regexp: 4.0.0
- eslint-scope: 5.1.1
- eslint-utils: 2.1.0
- eslint-visitor-keys: 2.1.0
- espree: 7.3.1
- esquery: 1.4.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- functional-red-black-tree: 1.0.1
- glob-parent: 5.1.2
- globals: 13.13.0
- ignore: 4.0.6
- import-fresh: 3.3.0
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- js-yaml: 3.14.1
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.1
- progress: 2.0.3
- regexpp: 3.2.0
- semver: 7.3.7
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 6.8.0
- text-table: 0.2.0
- v8-compile-cache: 2.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint/8.10.0:
- resolution: {integrity: sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==}
+ /eslint/8.17.0:
+ resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.2.1
+ '@eslint/eslintrc': 1.3.0
'@humanwhocodes/config-array': 0.9.5
ajv: 6.12.6
chalk: 4.1.2
@@ -5747,16 +5698,16 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0_eslint@8.17.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.1
+ espree: 9.3.2
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
- globals: 13.13.0
+ globals: 13.15.0
ignore: 5.2.0
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -5777,30 +5728,12 @@ packages:
- supports-color
dev: true
- /espree/6.2.1:
- resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
- eslint-visitor-keys: 1.3.0
- dev: true
-
- /espree/7.3.1:
- resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
- engines: {node: ^10.12.0 || >=12.0.0}
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
- eslint-visitor-keys: 1.3.0
- dev: true
-
- /espree/9.3.1:
- resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==}
+ /espree/9.3.2:
+ resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.7.0
- acorn-jsx: 5.3.2_acorn@8.7.0
+ acorn: 8.7.1
+ acorn-jsx: 5.3.2_acorn@8.7.1
eslint-visitor-keys: 3.3.0
dev: true
@@ -5838,50 +5771,44 @@ packages:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
dev: true
+ /estree-walker/2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: true
+
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
/etag/1.8.1:
- resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: true
- /eventemitter3/4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- dev: true
-
- /events/3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
+ /event-target-shim/5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
dev: true
- /execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
+ /execa/1.0.0:
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
+ engines: {node: '>=6'}
dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
signal-exit: 3.0.7
- strip-final-newline: 2.0.0
+ strip-eof: 1.0.0
dev: true
/exenv/1.2.2:
- resolution: {integrity: sha1-KueOhdmJQVhnCwPUe+wfA72Ru50=}
- dev: false
-
- /exif-parser/0.1.12:
- resolution: {integrity: sha1-WKnS1ywCwfbwKg70qRZicrd2CSI=}
+ resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==}
dev: false
/expand-brackets/2.1.4:
- resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=}
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
dependencies:
debug: 2.6.9
@@ -5893,57 +5820,15 @@ packages:
to-regex: 3.0.2
dev: true
- /express/4.17.3:
- resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.19.2
- content-disposition: 0.5.4
- content-type: 1.0.4
- cookie: 0.4.2
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 1.1.2
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.1.2
- fresh: 0.5.2
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.3.0
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.9.7
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.17.2
- serve-static: 1.14.2
- setprototypeof: 1.2.0
- statuses: 1.5.0
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- dev: true
-
- /ext/1.6.0:
- resolution: {integrity: sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==}
- dependencies:
- type: 2.6.0
- dev: true
-
/extend-shallow/2.0.1:
- resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=}
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
dev: true
/extend-shallow/3.0.2:
- resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=}
+ resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
engines: {node: '>=0.10.0'}
dependencies:
assign-symbols: 1.0.0
@@ -5985,31 +5870,28 @@ packages:
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
- dev: true
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
/fast-levenshtein/2.0.6:
- resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
- /fastest-levenshtein/1.0.12:
- resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==}
- dev: true
+ /fastparse/1.1.2:
+ resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
+ dev: false
/fastq/1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
dependencies:
reusify: 1.0.4
- dev: true
- /faye-websocket/0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
+ /fb-watchman/2.0.1:
+ resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
dependencies:
- websocket-driver: 0.7.4
+ bser: 2.1.1
dev: true
/file-entry-cache/6.0.1:
@@ -6019,19 +5901,14 @@ packages:
flat-cache: 3.0.4
dev: true
- /file-type/9.0.0:
- resolution: {integrity: sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==}
- engines: {node: '>=6'}
- dev: false
-
- /filelist/1.0.2:
- resolution: {integrity: sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==}
+ /filelist/1.0.4:
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
- minimatch: 3.1.2
+ minimatch: 5.1.0
dev: true
/fill-range/4.0.0:
- resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=}
+ resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 2.0.1
@@ -6059,13 +5936,13 @@ packages:
unpipe: 1.0.0
dev: true
- /find-cache-dir/3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
+ /find-cache-dir/2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
dependencies:
commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
dev: true
/find-root/1.1.0:
@@ -6073,12 +5950,19 @@ packages:
dev: false
/find-up/2.1.0:
- resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
engines: {node: '>=4'}
dependencies:
locate-path: 2.0.0
dev: true
+ /find-up/3.0.0:
+ resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
+ engines: {node: '>=6'}
+ dependencies:
+ locate-path: 3.0.0
+ dev: true
+
/find-up/4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -6099,64 +5983,22 @@ packages:
resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==}
dev: true
- /follow-redirects/1.14.9:
- resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
+ /flow-parser/0.121.0:
+ resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
+ engines: {node: '>=0.4.0'}
dev: true
/for-in/1.0.2:
- resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=}
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
dev: true
- /fork-ts-checker-webpack-plugin/6.5.1_2847fb73abdc24f6b671e90820eac890:
- resolution: {integrity: sha512-x1wumpHOEf4gDROmKTaB6i4/Q6H3LwmjVO7fIX47vBwlZbtPjU33hgoMuD/Q/y6SU8bnuYSoN6ZQOLshGp0T/g==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.16.7
- '@types/json-schema': 7.0.11
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 6.0.0
- deepmerge: 4.2.2
- eslint: 8.10.0
- fs-extra: 9.1.0
- glob: 7.2.0
- memfs: 3.4.1
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.3.7
- tapable: 1.1.3
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /forwarded/0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
- engines: {node: '>= 0.6'}
- dev: true
-
/fraction.js/4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
/fragment-cache/0.2.1:
- resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=}
+ resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
engines: {node: '>=0.10.0'}
dependencies:
map-cache: 0.2.2
@@ -6167,6 +6009,32 @@ packages:
engines: {node: '>= 0.6'}
dev: true
+ /fs-extra/1.0.0:
+ resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==}
+ dependencies:
+ graceful-fs: 4.2.10
+ jsonfile: 2.4.0
+ klaw: 1.3.1
+ dev: true
+
+ /fs-extra/10.1.0:
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ graceful-fs: 4.2.10
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+ dev: true
+
+ /fs-extra/8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.10
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+
/fs-extra/9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
@@ -6177,12 +6045,8 @@ packages:
universalify: 2.0.0
dev: true
- /fs-monkey/1.0.3:
- resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
- dev: true
-
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
/fsevents/2.3.2:
@@ -6190,14 +6054,27 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
- dev: true
optional: true
/function-bind/1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ /function.prototype.name/1.1.5:
+ resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
+ functions-have-names: 1.2.3
+ dev: true
+
/functional-red-black-tree/1.0.1:
- resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
+ dev: true
+
+ /functions-have-names/1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
dev: true
/gensync/1.0.0-beta.2:
@@ -6222,9 +6099,11 @@ packages:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: true
- /get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
+ /get-stream/4.1.0:
+ resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
+ engines: {node: '>=6'}
+ dependencies:
+ pump: 3.0.0
dev: true
/get-symbol-description/1.0.0:
@@ -6236,37 +6115,24 @@ packages:
dev: true
/get-value/2.0.6:
- resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=}
+ resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
dev: true
- /gifwrap/0.9.4:
- resolution: {integrity: sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==}
- dependencies:
- image-q: 4.0.0
- omggif: 1.0.10
- dev: false
-
/glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- dev: true
/glob-parent/6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- dev: true
-
- /glob-to-regexp/0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: true
- /glob/7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -6276,19 +6142,12 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /global/4.4.0:
- resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
- dependencies:
- min-document: 2.19.0
- process: 0.11.10
- dev: false
-
/globals/11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.13.0:
- resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==}
+ /globals/13.15.0:
+ resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -6306,50 +6165,35 @@ packages:
slash: 3.0.0
dev: true
- /globby/12.2.0:
- resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- array-union: 3.0.1
- dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
- merge2: 1.4.1
- slash: 4.0.0
- dev: true
-
/graceful-fs/4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
-
- /gzip-size/6.0.0:
- resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
- engines: {node: '>=10'}
- dependencies:
- duplexer: 0.1.2
- dev: true
-
- /handle-thing/2.0.1:
- resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: true
/has-ansi/2.0.0:
- resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
dev: true
- /has-bigints/1.0.1:
- resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
+ /has-bigints/1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
/has-flag/3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
/has-flag/4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
+ dev: true
+
+ /has-property-descriptors/1.0.0:
+ resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
+ dependencies:
+ get-intrinsic: 1.1.1
+ dev: true
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
@@ -6364,7 +6208,7 @@ packages:
dev: true
/has-value/0.3.1:
- resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=}
+ resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
engines: {node: '>=0.10.0'}
dependencies:
get-value: 2.0.6
@@ -6373,7 +6217,7 @@ packages:
dev: true
/has-value/1.0.0:
- resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=}
+ resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
engines: {node: '>=0.10.0'}
dependencies:
get-value: 2.0.6
@@ -6382,12 +6226,12 @@ packages:
dev: true
/has-values/0.1.4:
- resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=}
+ resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
dev: true
/has-values/1.0.0:
- resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=}
+ resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
@@ -6405,10 +6249,31 @@ packages:
hasBin: true
dev: true
+ /hermes-engine/0.11.0:
+ resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==}
+ dev: true
+
+ /hermes-estree/0.5.0:
+ resolution: {integrity: sha512-1h8rvG23HhIR5K6Kt0e5C7BC72J1Ath/8MmSta49vxXp/j6wl7IMHvIRFYBQr35tWnQY97dSGR2uoAJ5pHUQkg==}
+ dev: true
+
+ /hermes-parser/0.5.0:
+ resolution: {integrity: sha512-ARnJBScKAkkq8j3BHrNGBUv/4cSpZNbKDsVizEtzmsFeqC67Dopa5s4XRe+e3wN52Dh5Mj2kDB5wJvhcxwDkPg==}
+ dependencies:
+ hermes-estree: 0.5.0
+ dev: true
+
+ /hermes-profile-transformer/0.0.6:
+ resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ source-map: 0.7.3
+ dev: true
+
/history/5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
dev: false
/hoist-non-react-statics/3.3.2:
@@ -6417,19 +6282,6 @@ packages:
react-is: 16.13.1
dev: false
- /hpack.js/2.1.6:
- resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=}
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.7
- wbuf: 1.7.3
- dev: true
-
- /html-entities/2.3.3:
- resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- dev: true
-
/html-escaper/2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: false
@@ -6445,7 +6297,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.12.1
+ terser: 5.13.1
dev: true
/html-parse-stringify/3.0.1:
@@ -6454,93 +6306,17 @@ packages:
void-elements: 3.1.0
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.70.0:
- resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
- engines: {node: '>=10.13.0'}
- peerDependencies:
- webpack: ^5.20.0
- dependencies:
- '@types/html-minifier-terser': 6.1.0
- html-minifier-terser: 6.1.0
- lodash: 4.17.21
- pretty-error: 4.0.0
- tapable: 2.2.1
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /htmlparser2/6.1.0:
- resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- domutils: 2.8.0
- entities: 2.2.0
- dev: true
-
- /http-deceiver/1.2.7:
- resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=}
- dev: true
-
- /http-errors/1.6.3:
- resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
- dev: true
-
- /http-errors/1.8.1:
- resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
- engines: {node: '>= 0.6'}
+ /http-errors/2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
dependencies:
- depd: 1.1.2
+ depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
- statuses: 1.5.0
+ statuses: 2.0.1
toidentifier: 1.0.1
dev: true
- /http-parser-js/0.5.6:
- resolution: {integrity: sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==}
- dev: true
-
- /http-proxy-middleware/2.0.4_@types+express@4.17.13:
- resolution: {integrity: sha512-m/4FxX17SUvz4lJ5WPXOHDUuCwIqXLfLHs1s0uZ3oYjhoXlx9csYxaOa0ElDEJ+h8Q4iJ1s+lTMbiCa4EXIJqg==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
- dependencies:
- '@types/express': 4.17.13
- '@types/http-proxy': 1.17.8
- http-proxy: 1.18.1
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.5
- transitivePeerDependencies:
- - debug
- dev: true
-
- /http-proxy/1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.14.9
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- dev: true
-
- /human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
- dev: true
-
/hyphenate-style-name/1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
dev: false
@@ -6548,21 +6324,21 @@ packages:
/i18next-browser-languagedetector/6.1.4:
resolution: {integrity: sha512-wukWnFeU7rKIWT66VU5i8I+3Zc4wReGcuDK2+kuFhtoxBRGWGdvYI9UQmqNL/yQH1KogWwh+xGEaIPH8V/i2Zg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
dev: false
- /i18next-http-backend/1.4.0:
- resolution: {integrity: sha512-wsvx7E/CT1pHmBM99Vu57YLJpsrHbVjxGxf25EIJ/6oTjsvCkZZ6c3SA4TejcK5jIHfv9oLxQX8l+DFKZHZ0Gg==}
+ /i18next-http-backend/1.4.1:
+ resolution: {integrity: sha512-s4Q9hK2jS29iyhniMP82z+yYY8riGTrWbnyvsSzi5TaF7Le4E7b5deTmtuaRuab9fdDcYXtcwdBgawZG+JCEjA==}
dependencies:
cross-fetch: 3.1.5
transitivePeerDependencies:
- encoding
dev: false
- /i18next/19.9.2:
- resolution: {integrity: sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==}
+ /i18next/21.8.9:
+ resolution: {integrity: sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
dev: false
/iconv-lite/0.4.24:
@@ -6571,42 +6347,49 @@ packages:
dependencies:
safer-buffer: 2.1.2
dev: true
-
- /icss-utils/5.1.0_postcss@8.4.8:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
+ optional: true
/idb/6.1.5:
resolution: {integrity: sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==}
/ieee754/1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: false
-
- /ignore/4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
- engines: {node: '>= 4'}
- dev: true
/ignore/5.2.0:
resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
engines: {node: '>= 4'}
dev: true
- /image-q/4.0.0:
- resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==}
- dependencies:
- '@types/node': 16.9.1
- dev: false
+ /image-size/0.5.5:
+ resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /image-size/0.6.3:
+ resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
+ engines: {node: '>=4.0'}
+ hasBin: true
+ dev: true
/immediate/3.0.6:
- resolution: {integrity: sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=}
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
dev: false
+ /immutable/4.1.0:
+ resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
+ dev: true
+
+ /import-fresh/2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: true
+
/import-fresh/3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -6614,17 +6397,8 @@ packages:
parent-module: 1.0.1
resolve-from: 4.0.0
- /import-local/3.1.0:
- resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- pkg-dir: 4.2.0
- resolve-cwd: 3.0.0
- dev: true
-
/imurmurhash/0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: true
@@ -6640,10 +6414,6 @@ packages:
wrappy: 1.0.2
dev: true
- /inherits/2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
- dev: true
-
/inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
@@ -6657,23 +6427,14 @@ packages:
side-channel: 1.0.4
dev: true
- /interpret/2.2.0:
- resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
- engines: {node: '>= 0.10'}
- dev: true
-
- /ip/1.1.5:
- resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=}
- dev: true
-
- /ipaddr.js/1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
- engines: {node: '>= 0.10'}
+ /invariant/2.2.4:
+ resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+ dependencies:
+ loose-envify: 1.4.0
dev: true
- /ipaddr.js/2.0.1:
- resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
- engines: {node: '>= 10'}
+ /ip/1.1.8:
+ resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
dev: true
/is-accessor-descriptor/0.1.6:
@@ -6690,21 +6451,17 @@ packages:
kind-of: 6.0.3
dev: true
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
/is-arrayish/0.2.1:
- resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+
+ /is-arrayish/0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ dev: false
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
- has-bigints: 1.0.1
+ has-bigints: 1.0.2
dev: true
/is-binary-path/2.1.0:
@@ -6712,7 +6469,6 @@ packages:
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- dev: true
/is-boolean-object/1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
@@ -6731,8 +6487,8 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-core-module/2.8.1:
- resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==}
+ /is-core-module/2.9.0:
+ resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
dependencies:
has: 1.0.3
@@ -6775,10 +6531,9 @@ packages:
kind-of: 6.0.3
dev: true
- /is-docker/2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
+ /is-directory/0.3.1:
+ resolution: {integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=}
+ engines: {node: '>=0.10.0'}
dev: true
/is-extendable/0.1.1:
@@ -6794,8 +6549,12 @@ packages:
dev: true
/is-extglob/2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+
+ /is-fullwidth-code-point/2.0.0:
+ resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
+ engines: {node: '>=4'}
dev: true
/is-fullwidth-code-point/3.0.0:
@@ -6803,21 +6562,21 @@ packages:
engines: {node: '>=8'}
dev: true
- /is-function/1.0.2:
- resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
- dev: false
-
/is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- dev: true
/is-in-browser/1.1.3:
resolution: {integrity: sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=}
dev: false
+ /is-interactive/1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+ dev: true
+
/is-module/1.0.0:
resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
dev: true
@@ -6850,21 +6609,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /is-path-cwd/2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: true
-
- /is-path-inside/3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: true
-
- /is-plain-obj/3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
- dev: true
-
/is-plain-object/2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
@@ -6891,6 +6635,11 @@ packages:
call-bind: 1.0.2
dev: true
+ /is-stream/1.1.0:
+ resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/is-stream/2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -6910,29 +6659,36 @@ packages:
has-symbols: 1.0.3
dev: true
+ /is-unicode-supported/0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+ dev: true
+
/is-weakref/1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
+ /is-what/3.14.1:
+ resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
+ dev: true
+
/is-windows/1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-wsl/2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
+ /is-wsl/1.1.0:
+ resolution: {integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=}
+ engines: {node: '>=4'}
dev: true
/isarray/1.0.0:
- resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
/isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
/isobject/2.1.0:
@@ -6947,31 +6703,93 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /isomorphic-unfetch/3.1.0:
- resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
+ /isomorphic-unfetch/3.1.0:
+ resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
+ dependencies:
+ node-fetch: 2.6.7
+ unfetch: 4.2.0
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+
+ /jake/10.8.5:
+ resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ async: 3.2.3
+ chalk: 4.1.2
+ filelist: 1.0.4
+ minimatch: 3.1.2
+ dev: true
+
+ /jest-get-type/26.3.0:
+ resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
+ engines: {node: '>= 10.14.2'}
+ dev: true
+
+ /jest-haste-map/27.5.1:
+ resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
+ '@types/graceful-fs': 4.1.5
+ '@types/node': 17.0.41
+ anymatch: 3.1.2
+ fb-watchman: 2.0.1
+ graceful-fs: 4.2.10
+ jest-regex-util: 27.5.1
+ jest-serializer: 27.5.1
+ jest-util: 27.5.1
+ jest-worker: 27.5.1
+ micromatch: 4.0.5
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /jest-regex-util/27.5.1:
+ resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dev: true
+
+ /jest-serializer/27.5.1:
+ resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@types/node': 17.0.41
+ graceful-fs: 4.2.10
+ dev: true
+
+ /jest-util/27.5.1:
+ resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- node-fetch: 2.6.7
- unfetch: 4.2.0
- transitivePeerDependencies:
- - encoding
- dev: false
+ '@jest/types': 27.5.1
+ '@types/node': 17.0.41
+ chalk: 4.1.2
+ ci-info: 3.3.1
+ graceful-fs: 4.2.10
+ picomatch: 2.3.1
+ dev: true
- /jake/10.8.4:
- resolution: {integrity: sha512-MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA==}
- engines: {node: '>=10'}
- hasBin: true
+ /jest-validate/26.6.2:
+ resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
+ engines: {node: '>= 10.14.2'}
dependencies:
- async: 0.9.2
+ '@jest/types': 26.6.2
+ camelcase: 6.3.0
chalk: 4.1.2
- filelist: 1.0.2
- minimatch: 3.1.2
+ jest-get-type: 26.3.0
+ leven: 3.1.0
+ pretty-format: 26.6.2
dev: true
/jest-worker/26.6.2:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.23
+ '@types/node': 17.0.41
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -6980,24 +6798,25 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.23
+ '@types/node': 17.0.41
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jimp/0.16.1:
- resolution: {integrity: sha512-+EKVxbR36Td7Hfd23wKGIeEyHbxShZDX6L8uJkgVW3ESA9GiTEPK08tG1XI2r/0w5Ch0HyJF5kPqF9K7EmGjaw==}
- dependencies:
- '@babel/runtime': 7.17.2
- '@jimp/custom': 0.16.1
- '@jimp/plugins': 0.16.1_@jimp+custom@0.16.1
- '@jimp/types': 0.16.1_@jimp+custom@0.16.1
- regenerator-runtime: 0.13.9
- dev: false
+ /jetifier/1.6.8:
+ resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==}
+ hasBin: true
+ dev: true
- /jpeg-js/0.4.2:
- resolution: {integrity: sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw==}
- dev: false
+ /joi/17.6.0:
+ resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
+ dependencies:
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.4
+ '@sideway/formula': 3.0.0
+ '@sideway/pinpoint': 2.0.0
+ dev: true
/js-cookie/2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
@@ -7021,8 +6840,42 @@ packages:
argparse: 2.0.1
dev: true
+ /jsc-android/250230.2.1:
+ resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
+ dev: true
+
+ /jscodeshift/0.13.1_@babel+preset-env@7.18.2:
+ resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/parser': 7.18.3
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-env': 7.18.2_@babel+core@7.18.2
+ '@babel/preset-flow': 7.17.12_@babel+core@7.18.2
+ '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2
+ '@babel/register': 7.17.7_@babel+core@7.18.2
+ babel-core: 7.0.0-bridge.0_@babel+core@7.18.2
+ chalk: 4.1.2
+ flow-parser: 0.121.0
+ graceful-fs: 4.2.10
+ micromatch: 3.1.10
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.20.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/jsesc/0.5.0:
- resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
dev: true
@@ -7051,7 +6904,7 @@ packages:
dev: true
/json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
/json5/1.0.1:
@@ -7067,6 +6920,18 @@ packages:
hasBin: true
dev: true
+ /jsonfile/2.4.0:
+ resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=}
+ optionalDependencies:
+ graceful-fs: 4.2.10
+ dev: true
+
+ /jsonfile/4.0.0:
+ resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
+ optionalDependencies:
+ graceful-fs: 4.2.10
+ dev: true
+
/jsonfile/6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
@@ -7075,6 +6940,10 @@ packages:
graceful-fs: 4.2.10
dev: true
+ /jsonify/0.0.0:
+ resolution: {integrity: sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=}
+ dev: true
+
/jsonpointer/5.0.0:
resolution: {integrity: sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==}
engines: {node: '>=0.10.0'}
@@ -7083,7 +6952,7 @@ packages:
/jss-plugin-camel-case/10.9.0:
resolution: {integrity: sha512-UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
hyphenate-style-name: 1.0.4
jss: 10.9.0
dev: false
@@ -7091,21 +6960,21 @@ packages:
/jss-plugin-default-unit/10.9.0:
resolution: {integrity: sha512-7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
jss: 10.9.0
dev: false
/jss-plugin-global/10.9.0:
resolution: {integrity: sha512-4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
jss: 10.9.0
dev: false
/jss-plugin-nested/10.9.0:
resolution: {integrity: sha512-2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
jss: 10.9.0
tiny-warning: 1.0.3
dev: false
@@ -7113,14 +6982,14 @@ packages:
/jss-plugin-props-sort/10.9.0:
resolution: {integrity: sha512-7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
jss: 10.9.0
dev: false
/jss-plugin-rule-value-function/10.9.0:
resolution: {integrity: sha512-IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
jss: 10.9.0
tiny-warning: 1.0.3
dev: false
@@ -7128,7 +6997,7 @@ packages:
/jss-plugin-vendor-prefixer/10.9.0:
resolution: {integrity: sha512-MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
css-vendor: 2.0.8
jss: 10.9.0
dev: false
@@ -7136,17 +7005,17 @@ packages:
/jss/10.9.0:
resolution: {integrity: sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw==}
dependencies:
- '@babel/runtime': 7.17.2
- csstype: 3.0.11
+ '@babel/runtime': 7.18.3
+ csstype: 3.1.0
is-in-browser: 1.1.3
tiny-warning: 1.0.3
dev: false
- /jsx-ast-utils/3.2.2:
- resolution: {integrity: sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw==}
+ /jsx-ast-utils/3.3.0:
+ resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.5
object.assign: 4.1.2
dev: true
@@ -7174,9 +7043,15 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /klona/2.0.5:
- resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
- engines: {node: '>= 8'}
+ /klaw/1.3.1:
+ resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=}
+ optionalDependencies:
+ graceful-fs: 4.2.10
+ dev: true
+
+ /kleur/3.0.3:
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
dev: true
/language-subtag-registry/0.3.21:
@@ -7189,6 +7064,24 @@ packages:
language-subtag-registry: 0.3.21
dev: true
+ /less/4.1.2:
+ resolution: {integrity: sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.4.0
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.10
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 2.9.1
+ source-map: 0.6.1
+ dev: true
+
/leven/3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -7211,47 +7104,10 @@ packages:
/lilconfig/2.0.5:
resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
engines: {node: '>=10'}
- dev: true
/lines-and-columns/1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /load-bmfont/1.4.1:
- resolution: {integrity: sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==}
- dependencies:
- buffer-equal: 0.0.1
- mime: 1.6.0
- parse-bmfont-ascii: 1.0.6
- parse-bmfont-binary: 1.0.6
- parse-bmfont-xml: 1.1.4
- phin: 2.9.3
- xhr: 2.6.0
- xtend: 4.0.2
- dev: false
-
- /loader-runner/4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
- engines: {node: '>=6.11.5'}
- dev: true
-
- /loader-utils/1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
- engines: {node: '>=4.0.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 1.0.1
- dev: true
-
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
- engines: {node: '>=8.9.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.1
- dev: true
-
/localforage/1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
@@ -7259,13 +7115,21 @@ packages:
dev: false
/locate-path/2.0.0:
- resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
dependencies:
p-locate: 2.0.0
path-exists: 3.0.0
dev: true
+ /locate-path/3.0.0:
+ resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: true
+
/locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -7274,11 +7138,11 @@ packages:
dev: true
/lodash.debounce/4.0.8:
- resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
/lodash.memoize/4.1.2:
- resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
/lodash.merge/4.6.2:
@@ -7289,12 +7153,12 @@ packages:
resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=}
dev: true
- /lodash.truncate/4.4.2:
- resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=}
+ /lodash.throttle/4.1.1:
+ resolution: {integrity: sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=}
dev: true
/lodash.uniq/4.5.0:
- resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
/lodash/4.17.21:
@@ -7307,8 +7171,25 @@ packages:
chalk: 2.4.2
dev: true
+ /log-symbols/4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: true
+
+ /logkitty/0.7.1:
+ resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
+ hasBin: true
+ dependencies:
+ ansi-fragments: 0.2.1
+ dayjs: 1.11.2
+ yargs: 15.4.1
+ dev: true
+
/loglevel-colored-level-prefix/1.0.0:
- resolution: {integrity: sha1-akAhj9x64V/HbD0PPmdsRlOIYD4=}
+ resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
dependencies:
chalk: 1.1.3
loglevel: 1.8.0
@@ -7319,14 +7200,6 @@ packages:
engines: {node: '>= 0.6.0'}
dev: true
- /loglevelnext/1.0.5:
- resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==}
- engines: {node: '>= 6'}
- dependencies:
- es6-symbol: 3.1.3
- object.assign: 4.1.2
- dev: true
-
/loose-envify/1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
@@ -7336,7 +7209,7 @@ packages:
/lower-case/2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.4.0
dev: true
/lru-cache/6.0.0:
@@ -7344,6 +7217,7 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ dev: true
/magic-string/0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
@@ -7351,11 +7225,19 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /make-dir/3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
+ /make-dir/2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
- semver: 6.3.0
+ pify: 4.0.1
+ semver: 5.7.1
+ dev: true
+
+ /makeerror/1.0.12:
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+ dependencies:
+ tmpl: 1.0.5
dev: true
/map-cache/0.2.2:
@@ -7380,41 +7262,280 @@ packages:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: true
- /media-typer/0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
- engines: {node: '>= 0.6'}
+ /merge-stream/2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
dev: true
- /memfs/3.4.1:
- resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==}
- engines: {node: '>= 4.0.0'}
+ /merge2/1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ /metro-babel-transformer/0.67.0:
+ resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==}
dependencies:
- fs-monkey: 1.0.3
+ '@babel/core': 7.18.2
+ hermes-parser: 0.5.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-cache-key/0.67.0:
+ resolution: {integrity: sha512-FNJe5Rcb2uzY6G6tsqCf0RV4t2rCeX6vSHBxmP7k+4aI4NqX4evtPI0K82r221nBzm5DqNWCURZ0RYUT6jZMGA==}
dev: true
- /memory-fs/0.5.0:
- resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ /metro-cache/0.67.0:
+ resolution: {integrity: sha512-IY5dXiR76L75b2ue/mv+9vW8g5hdQJU6YEe81lj6gTSoUrhcONT0rzY+Gh5QOS2Kk6z9utZQMvd9PRKL9/635A==}
dependencies:
- errno: 0.1.8
- readable-stream: 2.3.7
+ metro-core: 0.67.0
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
dev: true
- /merge-descriptors/1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ /metro-config/0.67.0:
+ resolution: {integrity: sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g==}
+ dependencies:
+ cosmiconfig: 5.2.1
+ jest-validate: 26.6.2
+ metro: 0.67.0
+ metro-cache: 0.67.0
+ metro-core: 0.67.0
+ metro-runtime: 0.67.0
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
dev: true
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ /metro-core/0.67.0:
+ resolution: {integrity: sha512-TOa/ShE1bUq83fGNfV6rFwyfZ288M8ydmWN3g9C2OW8emOHLhJslYD/SIU4DhDkP/99yaJluIALdZ2g0+pCrvQ==}
+ dependencies:
+ jest-haste-map: 27.5.1
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.67.0
dev: true
- /merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
+ /metro-hermes-compiler/0.67.0:
+ resolution: {integrity: sha512-X5Pr1jC8/kO6d1EBDJ6yhtuc5euHX89UDNv8qdPJHAET03xfFnlojRPwOw6il2udAH20WLBv+F5M9VY+58zspQ==}
+ dev: true
- /methods/1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
- engines: {node: '>= 0.6'}
+ /metro-inspector-proxy/0.67.0:
+ resolution: {integrity: sha512-5Ubjk94qpNaU3OT2IZa4/dec09bauic1hzWms4czorBzDenkp4kYXG9/aWTmgQLtCk92H3Q8jKl1PQRxUSkrOQ==}
+ hasBin: true
+ dependencies:
+ connect: 3.7.0
+ debug: 2.6.9
+ ws: 7.5.8
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: true
+
+ /metro-minify-uglify/0.67.0:
+ resolution: {integrity: sha512-4CmM5b3MTAmQ/yFEfsHOhD2SuBObB2YF6PKzXZc4agUsQVVtkrrNElaiWa8w26vrTzA9emwcyurxMf4Nl3lYPQ==}
+ dependencies:
+ uglify-es: 3.3.9
+ dev: true
+
+ /metro-react-native-babel-preset/0.67.0:
+ resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==}
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2
+ '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-object-assign': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.2
+ '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2
+ '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2
+ '@babel/plugin-transform-typescript': 7.18.1_@babel+core@7.18.2
+ '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.2
+ '@babel/template': 7.16.7
+ react-refresh: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-react-native-babel-transformer/0.67.0:
+ resolution: {integrity: sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ==}
+ dependencies:
+ '@babel/core': 7.18.2
+ babel-preset-fbjs: 3.4.0_@babel+core@7.18.2
+ hermes-parser: 0.5.0
+ metro-babel-transformer: 0.67.0
+ metro-react-native-babel-preset: 0.67.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-resolver/0.67.0:
+ resolution: {integrity: sha512-d2KS/zAyOA/z/q4/ff41rAp+1txF4H6qItwpsls/RHStV2j6PqgRHUzq/3ga+VIeoUJntYJ8nGW3+3qSrhFlig==}
+ dependencies:
+ absolute-path: 0.0.0
+ dev: true
+
+ /metro-runtime/0.67.0:
+ resolution: {integrity: sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g==}
+ dev: true
+
+ /metro-source-map/0.67.0:
+ resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==}
+ dependencies:
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
+ invariant: 2.2.4
+ metro-symbolicate: 0.67.0
+ nullthrows: 1.1.1
+ ob1: 0.67.0
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-symbolicate/0.67.0:
+ resolution: {integrity: sha512-ZqVVcfa0xSz40eFzA5P8pCF3V6Tna9RU1prFzAJTa3j9dCGqwh0HTXC8AIkMtgX7hNdZrCJI1YipzUBlwkT0/A==}
+ engines: {node: '>=8.3'}
+ hasBin: true
+ dependencies:
+ invariant: 2.2.4
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ through2: 2.0.5
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-transform-plugins/0.67.0:
+ resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==}
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/generator': 7.18.2
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-transform-worker/0.67.0:
+ resolution: {integrity: sha512-29n+JdTb80ROiv/wDiBVlY/xRAF/nrjhp/Udv/XJl1DZb+x7JEiPxpbpthPhwwl+AYxVrostGB0W06WJ61hfiw==}
+ dependencies:
+ '@babel/core': 7.18.2
+ '@babel/generator': 7.18.2
+ '@babel/parser': 7.18.3
+ '@babel/types': 7.18.2
+ babel-preset-fbjs: 3.4.0_@babel+core@7.18.2
+ metro: 0.67.0
+ metro-babel-transformer: 0.67.0
+ metro-cache: 0.67.0
+ metro-cache-key: 0.67.0
+ metro-hermes-compiler: 0.67.0
+ metro-source-map: 0.67.0
+ metro-transform-plugins: 0.67.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /metro/0.67.0:
+ resolution: {integrity: sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ==}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.16.7
+ '@babel/core': 7.18.2
+ '@babel/generator': 7.18.2
+ '@babel/parser': 7.18.3
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.2
+ absolute-path: 0.0.0
+ accepts: 1.3.8
+ async: 2.6.4
+ chalk: 4.1.2
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ denodeify: 1.2.1
+ error-stack-parser: 2.0.7
+ fs-extra: 1.0.0
+ graceful-fs: 4.2.10
+ hermes-parser: 0.5.0
+ image-size: 0.6.3
+ invariant: 2.2.4
+ jest-haste-map: 27.5.1
+ jest-worker: 26.6.2
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.67.0
+ metro-cache: 0.67.0
+ metro-cache-key: 0.67.0
+ metro-config: 0.67.0
+ metro-core: 0.67.0
+ metro-hermes-compiler: 0.67.0
+ metro-inspector-proxy: 0.67.0
+ metro-minify-uglify: 0.67.0
+ metro-react-native-babel-preset: 0.67.0
+ metro-resolver: 0.67.0
+ metro-runtime: 0.67.0
+ metro-source-map: 0.67.0
+ metro-symbolicate: 0.67.0
+ metro-transform-plugins: 0.67.0
+ metro-transform-worker: 0.67.0
+ mime-types: 2.1.35
+ mkdirp: 0.5.6
+ node-fetch: 2.6.7
+ nullthrows: 1.1.1
+ rimraf: 2.7.1
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ strip-ansi: 6.0.1
+ temp: 0.8.3
+ throat: 5.0.0
+ ws: 7.5.8
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
dev: true
/micromatch/3.1.10:
@@ -7459,36 +7580,23 @@ packages:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
+ requiresBuild: true
+ dev: true
- /mime/2.4.6:
- resolution: {integrity: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==}
+ /mime/2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
- dev: false
-
- /mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
dev: true
- /min-document/2.19.0:
- resolution: {integrity: sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=}
- dependencies:
- dom-walk: 0.1.2
- dev: false
-
- /mini-css-extract-plugin/2.6.0_webpack@5.70.0:
- resolution: {integrity: sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- schema-utils: 4.0.0
- webpack: 5.70.0_webpack-cli@4.9.2
+ /mimic-fn/1.2.0:
+ resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
+ engines: {node: '>=4'}
dev: true
- /minimalistic-assert/1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+ /mimic-fn/2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
dev: true
/minimatch/3.1.2:
@@ -7497,6 +7605,13 @@ packages:
brace-expansion: 1.1.11
dev: true
+ /minimatch/5.1.0:
+ resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
/minimist/1.2.6:
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
@@ -7513,14 +7628,10 @@ packages:
hasBin: true
dependencies:
minimist: 1.2.6
-
- /mrmime/1.0.0:
- resolution: {integrity: sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ==}
- engines: {node: '>=10'}
dev: true
/ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
dev: true
/ms/2.1.2:
@@ -7530,20 +7641,8 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /multicast-dns-service-types/1.1.0:
- resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=}
- dev: true
-
- /multicast-dns/6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
- hasBin: true
- dependencies:
- dns-packet: 1.3.4
- thunky: 1.1.0
- dev: true
-
- /nanoid/3.3.2:
- resolution: {integrity: sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA==}
+ /nanoid/3.3.4:
+ resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -7565,8 +7664,20 @@ packages:
dev: true
/natural-compare/1.4.0:
- resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ dev: true
+
+ /needle/2.9.1:
+ resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==}
+ engines: {node: '>= 4.4.x'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ debug: 3.2.7
+ iconv-lite: 0.4.24
+ sax: 1.2.4
dev: true
+ optional: true
/negotiator/0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
@@ -7577,21 +7688,33 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
- /next-tick/1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ /nice-try/1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
dev: true
/no-case/3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
dev: true
/no-scroll/2.1.1:
resolution: {integrity: sha512-YTzGAJOo/B6hkodeT5SKKHpOhAzjMfkUCCXjLJwjWk2F4/InIg+HbdH9kmT7bKpleDuqLZDTRy2OdNtAj0IVyQ==}
dev: false
+ /nocache/2.1.0:
+ resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==}
+ engines: {node: '>=4.0.0'}
+ dev: true
+
+ /node-dir/0.1.17:
+ resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=}
+ engines: {node: '>= 0.10.5'}
+ dependencies:
+ minimatch: 3.1.2
+ dev: true
+
/node-fetch/2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
@@ -7602,24 +7725,33 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
- dev: false
- /node-forge/1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
- engines: {node: '>= 6.13.0'}
+ /node-html-parser/5.3.3:
+ resolution: {integrity: sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==}
+ dependencies:
+ css-select: 4.3.0
+ he: 1.2.0
+ dev: true
+
+ /node-int64/0.4.0:
+ resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=}
dev: true
- /node-releases/2.0.3:
- resolution: {integrity: sha512-maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw==}
+ /node-releases/2.0.5:
+ resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
+ dev: true
+
+ /node-stream-zip/1.15.0:
+ resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
+ engines: {node: '>=0.12.0'}
dev: true
/normalize-path/3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- dev: true
/normalize-range/0.1.2:
- resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -7628,21 +7760,29 @@ packages:
engines: {node: '>=10'}
dev: true
- /npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
+ /npm-run-path/2.0.2:
+ resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
+ engines: {node: '>=4'}
dependencies:
- path-key: 3.1.1
+ path-key: 2.0.1
dev: true
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check/2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: true
+ /nullthrows/1.1.1:
+ resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
+ dev: true
+
+ /ob1/0.67.0:
+ resolution: {integrity: sha512-YvZtX8HKYackQ5PwdFIuuNFVsMChRPHvnARRRT0Vk59xsBvL5t9U1Ock3M1sYrKj+Gp73+0q9xcHLAxI+xLi5g==}
+ dev: true
+
/object-assign/4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
/object-copy/0.1.0:
@@ -7654,21 +7794,12 @@ packages:
kind-of: 3.2.2
dev: true
- /object-hash/2.2.0:
- resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
+ /object-hash/3.0.0:
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- dev: true
- /object-inspect/1.12.0:
- resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
- dev: true
-
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ /object-inspect/1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
/object-keys/1.1.1:
@@ -7688,7 +7819,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
has-symbols: 1.0.3
object-keys: 1.1.1
dev: true
@@ -7698,8 +7829,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/object.fromentries/2.0.5:
@@ -7707,15 +7838,15 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /object.hasown/1.1.0:
- resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==}
+ /object.hasown/1.1.1:
+ resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==}
dependencies:
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/object.pick/1.3.0:
@@ -7730,18 +7861,10 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
- dev: true
-
- /obuf/1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /omggif/1.0.10:
- resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==}
- dev: false
-
/on-finished/2.3.0:
resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=}
engines: {node: '>= 0.8'}
@@ -7749,6 +7872,13 @@ packages:
ee-first: 1.1.1
dev: true
+ /on-finished/2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: true
+
/on-headers/1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
@@ -7760,6 +7890,13 @@ packages:
wrappy: 1.0.2
dev: true
+ /onetime/2.0.1:
+ resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: true
+
/onetime/5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
@@ -7767,18 +7904,11 @@ packages:
mimic-fn: 2.1.0
dev: true
- /open/8.4.0:
- resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
- engines: {node: '>=12'}
+ /open/6.4.0:
+ resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
+ engines: {node: '>=8'}
dependencies:
- define-lazy-prop: 2.0.0
- is-docker: 2.2.1
- is-wsl: 2.2.0
- dev: true
-
- /opener/1.5.2:
- resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
- hasBin: true
+ is-wsl: 1.1.0
dev: true
/optionator/0.9.1:
@@ -7793,6 +7923,43 @@ packages:
word-wrap: 1.2.3
dev: true
+ /ora/3.4.0:
+ resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
+ engines: {node: '>=6'}
+ dependencies:
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-spinners: 2.6.1
+ log-symbols: 2.2.0
+ strip-ansi: 5.2.0
+ wcwidth: 1.0.1
+ dev: true
+
+ /ora/5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.6.1
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: true
+
+ /os-tmpdir/1.0.2:
+ resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /p-finally/1.0.0:
+ resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
+ engines: {node: '>=4'}
+ dev: true
+
/p-limit/1.3.0:
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
engines: {node: '>=4'}
@@ -7808,36 +7975,28 @@ packages:
dev: true
/p-locate/2.0.0:
- resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
engines: {node: '>=4'}
dependencies:
p-limit: 1.3.0
dev: true
- /p-locate/4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
+ /p-locate/3.0.0:
+ resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
+ engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
dev: true
- /p-map/4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
- dependencies:
- aggregate-error: 3.1.0
- dev: true
-
- /p-retry/4.6.1:
- resolution: {integrity: sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==}
+ /p-locate/4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
- '@types/retry': 0.12.1
- retry: 0.13.1
+ p-limit: 2.3.0
dev: true
/p-try/1.0.0:
- resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
dev: true
@@ -7846,15 +8005,11 @@ packages:
engines: {node: '>=6'}
dev: true
- /pako/1.0.11:
- resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
- dev: false
-
/param-case/3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.4.0
dev: true
/parent-module/1.0.1:
@@ -7863,24 +8018,13 @@ packages:
dependencies:
callsites: 3.1.0
- /parse-bmfont-ascii/1.0.6:
- resolution: {integrity: sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU=}
- dev: false
-
- /parse-bmfont-binary/1.0.6:
- resolution: {integrity: sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY=}
- dev: false
-
- /parse-bmfont-xml/1.1.4:
- resolution: {integrity: sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==}
+ /parse-json/4.0.0:
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
dependencies:
- xml-parse-from-string: 1.0.1
- xml2js: 0.4.23
- dev: false
-
- /parse-headers/2.0.5:
- resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==}
- dev: false
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: true
/parse-json/5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
@@ -7891,6 +8035,11 @@ packages:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ /parse-node-version/1.0.1:
+ resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/parse5/6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
@@ -7904,7 +8053,7 @@ packages:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.4.0
dev: true
/pascalcase/0.1.1:
@@ -7913,7 +8062,7 @@ packages:
dev: true
/path-exists/3.0.0:
- resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: true
@@ -7927,6 +8076,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /path-key/2.0.1:
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ engines: {node: '>=4'}
+ dev: true
+
/path-key/3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -7935,17 +8089,13 @@ packages:
/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
- dev: true
-
/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /phin/2.9.3:
- resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==}
- dev: false
+ /pathe/0.2.0:
+ resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
+ dev: true
/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
@@ -7954,123 +8104,120 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pixelmatch/4.0.2:
- resolution: {integrity: sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ=}
- hasBin: true
- dependencies:
- pngjs: 3.4.0
- dev: false
+ /pify/4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+ dev: true
- /pkg-dir/4.2.0:
- resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
- engines: {node: '>=8'}
+ /pirates/4.0.5:
+ resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /pkg-dir/3.0.0:
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
dependencies:
- find-up: 4.1.0
+ find-up: 3.0.0
dev: true
- /pngjs/3.4.0:
- resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
- engines: {node: '>=4.0.0'}
- dev: false
+ /plist/3.0.5:
+ resolution: {integrity: sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==}
+ engines: {node: '>=6'}
+ dependencies:
+ base64-js: 1.5.1
+ xmlbuilder: 9.0.7
+ dev: true
/popper.js/1.16.1-lts:
resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
dev: false
- /portfinder/1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
- engines: {node: '>= 0.12.0'}
- dependencies:
- async: 2.6.3
- debug: 3.2.7
- mkdirp: 0.5.6
- dev: true
-
/posix-character-classes/0.1.1:
resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
engines: {node: '>=0.10.0'}
dev: true
- /postcss-calc/8.2.4_postcss@8.4.8:
+ /postcss-calc/8.2.4_postcss@8.4.14:
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.0_postcss@8.4.8:
+ /postcss-colormin/5.3.0_postcss@8.4.14:
resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
colord: 2.9.2
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.0_postcss@8.4.8:
- resolution: {integrity: sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==}
+ /postcss-convert-values/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ browserslist: 4.20.3
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.1_postcss@8.4.8:
- resolution: {integrity: sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ==}
+ /postcss-discard-comments/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-discard-duplicates/5.1.0_postcss@8.4.8:
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-discard-empty/5.1.1_postcss@8.4.8:
+ /postcss-discard-empty/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-discard-overridden/5.1.0_postcss@8.4.8:
+ /postcss-discard-overridden/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-js/4.0.0_postcss@8.4.8:
+ /postcss-js/4.0.0_postcss@8.4.14:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.3.3
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.8
- dev: true
+ postcss: 8.4.14
- /postcss-load-config/3.1.4_postcss@8.4.8:
+ /postcss-load-config/3.1.4_postcss@8.4.14:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -8083,259 +8230,206 @@ packages:
optional: true
dependencies:
lilconfig: 2.0.5
- postcss: 8.4.8
+ postcss: 8.4.14
yaml: 1.10.2
- dev: true
-
- /postcss-loader/5.3.0_postcss@8.4.8+webpack@5.70.0:
- resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
- dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
- postcss: 8.4.8
- semver: 7.3.7
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
- /postcss-merge-longhand/5.1.4_postcss@8.4.8:
- resolution: {integrity: sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==}
+ /postcss-merge-longhand/5.1.5_postcss@8.4.14:
+ resolution: {integrity: sha512-NOG1grw9wIO+60arKa2YYsrbgvP6tp+jqc7+ZD5/MalIw234ooH2C6KlR6FEn4yle7GqZoBxSK1mLBE9KPur6w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0_postcss@8.4.8
+ stylehacks: 5.1.0_postcss@8.4.14
dev: true
- /postcss-merge-rules/5.1.1_postcss@8.4.8:
- resolution: {integrity: sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==}
+ /postcss-merge-rules/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.8
- postcss: 8.4.8
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
dev: true
- /postcss-minify-font-values/5.1.0_postcss@8.4.8:
+ /postcss-minify-font-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients/5.1.1_postcss@8.4.8:
+ /postcss-minify-gradients/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.2
- cssnano-utils: 3.1.0_postcss@8.4.8
- postcss: 8.4.8
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.1.2_postcss@8.4.8:
- resolution: {integrity: sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==}
+ /postcss-minify-params/5.1.3_postcss@8.4.14:
+ resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- cssnano-utils: 3.1.0_postcss@8.4.8
- postcss: 8.4.8
+ browserslist: 4.20.3
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-selectors/5.2.0_postcss@8.4.8:
- resolution: {integrity: sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==}
+ /postcss-minify-selectors/5.2.1_postcss@8.4.14:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
dev: true
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
-
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
- postcss-selector-parser: 6.0.10
- postcss-value-parser: 4.2.0
-
- /postcss-modules-scope/3.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.8
- postcss-selector-parser: 6.0.10
-
- /postcss-modules-values/4.0.0_postcss@8.4.8:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- icss-utils: 5.1.0_postcss@8.4.8
- postcss: 8.4.8
-
- /postcss-nested/5.0.6_postcss@8.4.8:
+ /postcss-nested/5.0.6_postcss@8.4.14:
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
- dev: true
- /postcss-normalize-charset/5.1.0_postcss@8.4.8:
+ /postcss-normalize-charset/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-normalize-display-values/5.1.0_postcss@8.4.8:
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.1.0_postcss@8.4.8:
+ /postcss-normalize-positions/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.1.0_postcss@8.4.8:
+ /postcss-normalize-repeat-style/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string/5.1.0_postcss@8.4.8:
+ /postcss-normalize-string/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.8:
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.1.0_postcss@8.4.8:
+ /postcss-normalize-unicode/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- postcss: 8.4.8
+ browserslist: 4.20.3
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url/5.1.0_postcss@8.4.8:
+ /postcss-normalize-url/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.8:
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.1.1_postcss@8.4.8:
- resolution: {integrity: sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==}
+ /postcss-ordered-values/5.1.2_postcss@8.4.14:
+ resolution: {integrity: sha512-wr2avRbW4HS2XE2ZCqpfp4N/tDC6GZKZ+SVP8UBTOVS8QWrc4TD8MYrebJrvVVlGPKszmiSCzue43NDiVtgDmg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.8
- postcss: 8.4.8
+ cssnano-utils: 3.1.0_postcss@8.4.14
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.1.0_postcss@8.4.8:
+ /postcss-reduce-initial/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
+ browserslist: 4.20.3
caniuse-api: 3.0.0
- postcss: 8.4.8
+ postcss: 8.4.14
dev: true
- /postcss-reduce-transforms/5.1.0_postcss@8.4.8:
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
dev: true
@@ -8346,35 +8440,35 @@ packages:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo/5.1.0_postcss@8.4.8:
+ /postcss-svgo/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: true
- /postcss-unique-selectors/5.1.1_postcss@8.4.8:
+ /postcss-unique-selectors/5.1.1_postcss@8.4.14:
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.8
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
dev: true
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.8:
- resolution: {integrity: sha512-2tXEqGxrjvAO6U+CJzDL2Fk2kPHTv1jQsYkSoMeOis2SsYaXRO2COxTdQp99cYvif9JTXaAk9lYGc3VhJt7JPQ==}
+ /postcss/8.4.14:
+ resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.2
+ nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
@@ -8383,22 +8477,24 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /prettier-eslint/13.0.0:
- resolution: {integrity: sha512-P5K31qWgUOQCtJL/3tpvEe28KfP49qbr6MTVEXC7I2k7ci55bP3YDr+glhyCdhIzxGCVp2f8eobfQ5so52RIIA==}
+ /prettier-eslint/15.0.1:
+ resolution: {integrity: sha512-mGOWVHixSvpZWARqSDXbdtTL54mMBxc5oQYQ6RAqy8jecuNJBgN3t9E5a81G66F8x8fsKNiR1HWaBV66MJDOpg==}
engines: {node: '>=10.0.0'}
dependencies:
- '@typescript-eslint/parser': 3.10.1_eslint@7.32.0+typescript@3.9.10
+ '@types/eslint': 8.4.2
+ '@types/prettier': 2.6.3
+ '@typescript-eslint/parser': 5.27.1_eslint@8.17.0+typescript@4.7.3
common-tags: 1.8.2
dlv: 1.1.3
- eslint: 7.32.0
+ eslint: 8.17.0
indent-string: 4.0.0
lodash.merge: 4.6.2
loglevel-colored-level-prefix: 1.0.0
- prettier: 2.5.1
+ prettier: 2.6.2
pretty-format: 23.6.0
require-relative: 0.8.7
- typescript: 3.9.10
- vue-eslint-parser: 7.1.1_eslint@7.32.0
+ typescript: 4.7.3
+ vue-eslint-parser: 8.3.0_eslint@8.17.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -8410,8 +8506,8 @@ packages:
fast-diff: 1.2.0
dev: true
- /prettier/2.5.1:
- resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==}
+ /prettier/2.6.2:
+ resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
@@ -8421,11 +8517,9 @@ packages:
engines: {node: '>=6'}
dev: true
- /pretty-error/4.0.0:
- resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
- dependencies:
- lodash: 4.17.21
- renderkid: 3.0.0
+ /pretty-bytes/6.0.0:
+ resolution: {integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==}
+ engines: {node: ^14.13.1 || >=16.0.0}
dev: true
/pretty-format/23.6.0:
@@ -8435,18 +8529,32 @@ packages:
ansi-styles: 3.2.1
dev: true
+ /pretty-format/26.6.2:
+ resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+ dev: true
+
/process-nextick-args/2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: true
- /process/0.11.10:
- resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=}
- engines: {node: '>= 0.6.0'}
- dev: false
+ /promise/8.1.0:
+ resolution: {integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==}
+ dependencies:
+ asap: 2.0.6
+ dev: true
- /progress/2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
+ /prompts/2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
dev: true
/prop-types/15.8.1:
@@ -8456,20 +8564,20 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /proxy-addr/2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
- dev: true
-
/prr/1.0.1:
resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=}
dev: true
+ optional: true
+
+ /pump/3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
/punycode/1.3.2:
- resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=}
+ resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
dev: false
/punycode/2.1.1:
@@ -8477,11 +8585,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /qs/6.9.7:
- resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==}
- engines: {node: '>=0.6'}
- dev: true
-
/querystring/0.2.0:
resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
engines: {node: '>=0.4.x'}
@@ -8490,12 +8593,10 @@ packages:
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- dev: true
/quick-lru/5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- dev: true
/randombytes/2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -8508,23 +8609,34 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /raw-body/2.4.3:
- resolution: {integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==}
- engines: {node: '>= 0.8'}
+ /react-devtools-core/4.24.6:
+ resolution: {integrity: sha512-+6y6JAtAo1NUUxaCwCYTb13ViBpc7RjNTlj1HZRlDJmi7UYToj5+BNn8Duzz2YizzAzmRUWZkRM7OtqxnN6TnA==}
dependencies:
- bytes: 3.1.2
- http-errors: 1.8.1
- iconv-lite: 0.4.24
- unpipe: 1.0.0
+ shell-quote: 1.7.3
+ ws: 7.5.8
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
dev: true
+ /react-dom/17.0.2_react@17.0.2:
+ resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
+ peerDependencies:
+ react: 17.0.2
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react: 17.0.2
+ scheduler: 0.20.2
+ dev: false
+
/react-error-boundary/3.1.4_react@17.0.2:
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
react: '>=16.13.1'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
react: 17.0.2
dev: false
@@ -8532,12 +8644,13 @@ packages:
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
dev: false
- /react-ga/3.3.0_react@17.0.2:
+ /react-ga/3.3.0_prop-types@15.8.1+react@17.0.2:
resolution: {integrity: sha512-o8RScHj6Lb8cwy3GMrVH6NJvL+y0zpJvKtc0+wmH7Bt23rszJmnqEQxRbyrqUzk9DTJIHoP42bfO5rswC9SWBQ==}
peerDependencies:
prop-types: ^15.6.0
react: ^15.6.2 || ^16.0 || ^17
dependencies:
+ prop-types: 15.8.1
react: 17.0.2
dev: false
@@ -8553,8 +8666,8 @@ packages:
react-side-effect: 2.1.1_react@17.0.2
dev: false
- /react-i18next/11.15.6_i18next@19.9.2+react@17.0.2:
- resolution: {integrity: sha512-OUWcFdNgIA9swVx3JGIreuquglAinpRwB/HYrCprTN+s9BQDt9LSiY7x5DGc2JzVpwqtpoTV7oRUTOxEPNyUPw==}
+ /react-i18next/11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0:
+ resolution: {integrity: sha512-ewq2S4bVUTRqOMAdM/XvzCn9xUPIryzeBQRghmJ8lC6VI/8Kp7z1GwoLyt8j7GB2ywhN2SjPk7LU4sHzVeu7aw==}
peerDependencies:
i18next: '>= 19.0.0'
react: '>= 16.8.0'
@@ -8566,11 +8679,13 @@ packages:
react-native:
optional: true
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
html-escaper: 2.0.2
html-parse-stringify: 3.0.1
- i18next: 19.9.2
+ i18next: 21.8.9
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
dev: false
/react-intersection-observer/8.34.0_react@17.0.2:
@@ -8586,34 +8701,113 @@ packages:
/react-is/17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- dev: false
+
+ /react-is/18.1.0:
+ resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
+ dev: true
/react-lifecycles-compat/3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-modal/3.14.4_react@17.0.2:
- resolution: {integrity: sha512-8surmulejafYCH9wfUmFyj4UfbSJwjcgbS9gf3oOItu4Hwd6ivJyVBETI0yHRhpJKCLZMUtnhzk76wXTsNL6Qg==}
+ /react-modal/3.15.1_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==}
engines: {node: '>=8'}
peerDependencies:
- react: ^0.14.0 || ^15.0.0 || ^16 || ^17
- react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17
+ react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
+ react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
dependencies:
exenv: 1.2.2
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-lifecycles-compat: 3.0.4
warning: 4.0.3
dev: false
- /react-native-get-random-values/1.7.2:
- resolution: {integrity: sha512-28KRYGpIG/upV8+k/qFA+TwGW+yGjmtOHaCduJHpOQK1QUTyhiA6E2IgL4UvvU2dybeCTYFmUi9wcEQ0GiWe5g==}
+ /react-native-codegen/0.0.17_@babel+preset-env@7.18.2:
+ resolution: {integrity: sha512-7GIEUmAemH9uWwB6iYXNNsPoPgH06pxzGRmdBzK98TgFBdYJZ7CBuZFPMe4jmHQTPOkQazKZ/w5O6/71JBixmw==}
+ dependencies:
+ '@babel/parser': 7.18.3
+ flow-parser: 0.121.0
+ jscodeshift: 0.13.1_@babel+preset-env@7.18.2
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+ dev: true
+
+ /react-native-get-random-values/1.8.0_react-native@0.68.2:
+ resolution: {integrity: sha512-H/zghhun0T+UIJLmig3+ZuBCvF66rdbiWUfRSNS6kv5oDSpa1ZiVyvRWtuPesQpT8dXj+Bv7WJRQOUP+5TB1sA==}
peerDependencies:
react-native: '>=0.56'
dependencies:
fast-base64-decode: 1.0.0
+ react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
dev: false
+ /react-native-gradle-plugin/0.0.6:
+ resolution: {integrity: sha512-eIlgtsmDp1jLC24dRn43hB3kEcZVqx6DUQbR0N1ABXGnMEafm9I3V3dUUeD1vh+Dy5WqijSoEwLNUPLgu5zDMg==}
+ dev: true
+
+ /react-native/0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375:
+ resolution: {integrity: sha512-qNMz+mdIirCEmlrhapAtAG+SWVx6MAiSfCbFNhfHqiqu1xw1OKXdzIrjaBEPihRC2pcORCoCHduHGQe/Pz9Yuw==}
+ engines: {node: '>=14'}
+ hasBin: true
+ peerDependencies:
+ react: 17.0.2
+ dependencies:
+ '@jest/create-cache-key-function': 27.5.1
+ '@react-native-community/cli': 7.0.3_react-native@0.68.2
+ '@react-native-community/cli-platform-android': 7.0.1
+ '@react-native-community/cli-platform-ios': 7.0.1
+ '@react-native/assets': 1.0.0
+ '@react-native/normalize-color': 2.0.0
+ '@react-native/polyfills': 2.0.0
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ base64-js: 1.5.1
+ deprecated-react-native-prop-types: 2.3.0
+ event-target-shim: 5.0.1
+ hermes-engine: 0.11.0
+ invariant: 2.2.4
+ jsc-android: 250230.2.1
+ metro-react-native-babel-transformer: 0.67.0
+ metro-runtime: 0.67.0
+ metro-source-map: 0.67.0
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.1.0
+ react: 17.0.2
+ react-devtools-core: 4.24.6
+ react-native-codegen: 0.0.17_@babel+preset-env@7.18.2
+ react-native-gradle-plugin: 0.0.6
+ react-refresh: 0.4.3
+ react-shallow-renderer: 16.14.1_react@17.0.2
+ regenerator-runtime: 0.13.9
+ scheduler: 0.20.2
+ stacktrace-parser: 0.1.10
+ use-subscription: 1.5.1_react@17.0.2
+ whatwg-fetch: 3.6.2
+ ws: 6.2.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /react-refresh/0.13.0:
+ resolution: {integrity: sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /react-refresh/0.4.3:
+ resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/react-responsive/8.2.0_react@17.0.2:
resolution: {integrity: sha512-iagCqVrw4QSjhxKp3I/YK6+ODkWY6G+YPElvdYKiUUbywwh9Ds0M7r26Fj2/7dWFFbOpcGnJE6uE7aMck8j5Qg==}
engines: {node: '>= 0.10'}
@@ -8627,7 +8821,20 @@ packages:
shallow-equal: 1.2.1
dev: false
- /react-router-dom/6.3.0_react@17.0.2:
+ /react-responsive/9.0.0-beta.10_react@17.0.2:
+ resolution: {integrity: sha512-41H8g4FYP46ln16rsHvs9/0ZoZxAPfnNiHET86/5pgS+Vw8fSKfLBuOS2SAquaxOxq7DgPviFoHmybgVvSKCNQ==}
+ engines: {node: '>=0.10'}
+ peerDependencies:
+ react: '>=16.8.0'
+ dependencies:
+ hyphenate-style-name: 1.0.4
+ matchmediaquery: 0.3.1
+ prop-types: 15.8.1
+ react: 17.0.2
+ shallow-equal: 1.2.1
+ dev: false
+
+ /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
react: '>=16.8'
@@ -8635,6 +8842,7 @@ packages:
dependencies:
history: 5.3.0
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-router: 6.3.0_react@17.0.2
dev: false
@@ -8647,6 +8855,16 @@ packages:
react: 17.0.2
dev: false
+ /react-shallow-renderer/16.14.1_react@17.0.2:
+ resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react: 17.0.2
+ react-is: 17.0.2
+ dev: true
+
/react-side-effect/2.1.1_react@17.0.2:
resolution: {integrity: sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==}
peerDependencies:
@@ -8655,17 +8873,18 @@ packages:
react: 17.0.2
dev: false
- /react-transition-group/4.4.2_react@17.0.2:
+ /react-transition-group/4.4.2_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
/react-vertical-timeline-component/3.5.2_react@17.0.2:
@@ -8713,13 +8932,19 @@ packages:
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
+
+ /readline/1.3.0:
+ resolution: {integrity: sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=}
dev: true
- /rechoir/0.7.1:
- resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
- engines: {node: '>= 0.10'}
+ /recast/0.20.5:
+ resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
+ engines: {node: '>= 4'}
dependencies:
- resolve: 1.22.0
+ ast-types: 0.14.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.4.0
dev: true
/regenerate-unicode-properties/10.0.1:
@@ -8739,7 +8964,7 @@ packages:
/regenerator-transform/0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.18.3
dev: true
/regex-not/1.0.2:
@@ -8750,12 +8975,13 @@ packages:
safe-regex: 1.1.0
dev: true
- /regexp.prototype.flags/1.4.2:
- resolution: {integrity: sha512-Ynz8fTQW5/1elh+jWU2EDDzeoNbD0OQ0R+D1VJU5ATOkUaro4A9YEkdN2ODQl/8UQFPPpZNw91fOcLFamM7Pww==}
+ /regexp.prototype.flags/1.4.3:
+ resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ functions-have-names: 1.2.3
dev: true
/regexpp/3.2.0:
@@ -8791,16 +9017,6 @@ packages:
engines: {node: '>= 0.10'}
dev: true
- /renderkid/3.0.0:
- resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
- dependencies:
- css-select: 4.3.0
- dom-converter: 0.2.0
- htmlparser2: 6.1.0
- lodash: 4.17.21
- strip-ansi: 6.0.1
- dev: true
-
/repeat-element/1.1.4:
resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
engines: {node: '>=0.10.0'}
@@ -8812,7 +9028,7 @@ packages:
dev: true
/require-directory/2.1.1:
- resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
dev: true
@@ -8821,30 +9037,23 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /require-relative/0.8.7:
- resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=}
+ /require-main-filename/2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
- /requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
+ /require-relative/0.8.7:
+ resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
dev: true
- /resolve-cwd/3.0.0:
- resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
- engines: {node: '>=8'}
- dependencies:
- resolve-from: 5.0.0
+ /resolve-from/3.0.0:
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
+ engines: {node: '>=4'}
dev: true
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve-from/5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
- dev: true
-
/resolve-url/0.2.1:
resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
deprecated: https://github.com/lydell/resolve-url#deprecated
@@ -8854,53 +9063,82 @@ packages:
resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
hasBin: true
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
/resolve/2.0.0-next.3:
resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
dependencies:
- is-core-module: 2.8.1
+ is-core-module: 2.9.0
path-parse: 1.0.7
dev: true
+ /restore-cursor/2.0.0:
+ resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=}
+ engines: {node: '>=4'}
+ dependencies:
+ onetime: 2.0.1
+ signal-exit: 3.0.7
+ dev: true
+
+ /restore-cursor/3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: true
+
/ret/0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
dev: true
- /retry/0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
- dev: true
-
/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ /rimraf/2.2.8:
+ resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
+ hasBin: true
+ dev: true
+
+ /rimraf/2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: true
+
+ /rimraf/2.7.1:
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
dev: true
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
dev: true
- /rollup-plugin-terser/7.0.2_rollup@2.70.1:
+ /rollup-plugin-terser/7.0.2_rollup@2.75.3:
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
peerDependencies:
rollup: ^2.0.0
dependencies:
'@babel/code-frame': 7.16.7
jest-worker: 26.6.2
- rollup: 2.70.1
+ rollup: 2.75.3
serialize-javascript: 4.0.0
- terser: 5.12.1
+ terser: 5.13.1
dev: true
- /rollup/2.70.1:
- resolution: {integrity: sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA==}
+ /rollup/2.75.3:
+ resolution: {integrity: sha512-YA29fLU6MAYSaDxIQYrGGOcbXlDmG96h0krGGYObroezcQ0KgEPM3+7MtKD/qeuUbFuAJXvKZee5dA1dpwq1PQ==}
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
@@ -8911,7 +9149,6 @@ packages:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- dev: true
/rxjs/6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
@@ -8936,57 +9173,31 @@ packages:
/safer-buffer/2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
+ optional: true
- /sax/1.2.4:
- resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
- dev: false
-
- /schema-utils/2.7.0:
- resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
- engines: {node: '>= 8.9.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: true
-
- /schema-utils/2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
+ /sass/1.52.1:
+ resolution: {integrity: sha512-fSzYTbr7z8oQnVJ3Acp9hV80dM1fkMN7mSD/25mpcct9F7FPBMOI8krEYALgU1aZoqGhQNhTPsuSmxjnIvAm4Q==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ chokidar: 3.5.3
+ immutable: 4.1.0
+ source-map-js: 1.0.2
dev: true
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ /sax/1.2.4:
+ resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: true
- /schema-utils/4.0.0:
- resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
- engines: {node: '>= 12.13.0'}
+ /scheduler/0.20.2:
+ resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
- '@types/json-schema': 7.0.11
- ajv: 8.11.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.11.0
- dev: true
-
- /select-hose/2.0.0:
- resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
- dev: true
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
- /selfsigned/2.0.1:
- resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==}
- engines: {node: '>=10'}
- dependencies:
- node-forge: 1.3.1
+ /semver/5.7.1:
+ resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
+ hasBin: true
dev: true
/semver/6.3.0:
@@ -9005,59 +9216,50 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
- /send/0.17.2:
- resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==}
+ /send/0.18.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
+ depd: 2.0.0
+ destroy: 1.2.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 1.8.1
+ http-errors: 2.0.0
mime: 1.6.0
ms: 2.1.3
- on-finished: 2.3.0
+ on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 1.5.0
+ statuses: 2.0.1
dev: true
- /serialize-javascript/4.0.0:
- resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
- dependencies:
- randombytes: 2.1.0
+ /serialize-error/2.1.0:
+ resolution: {integrity: sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=}
+ engines: {node: '>=0.10.0'}
dev: true
- /serialize-javascript/6.0.0:
- resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
+ /serialize-javascript/4.0.0:
+ resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
randombytes: 2.1.0
dev: true
- /serve-index/1.9.1:
- resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
+ /serve-static/1.15.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
- accepts: 1.3.8
- batch: 0.6.1
- debug: 2.6.9
+ encodeurl: 1.0.2
escape-html: 1.0.3
- http-errors: 1.6.3
- mime-types: 2.1.35
parseurl: 1.3.3
+ send: 0.18.0
dev: true
- /serve-static/1.14.2:
- resolution: {integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.17.2
+ /set-blocking/2.0.0:
+ resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
dev: true
/set-value/2.0.1:
@@ -9070,10 +9272,6 @@ packages:
split-string: 3.1.0
dev: true
- /setprototypeof/1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- dev: true
-
/setprototypeof/1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
dev: true
@@ -9093,6 +9291,13 @@ packages:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
dev: false
+ /shebang-command/1.2.0:
+ resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -9100,57 +9305,88 @@ packages:
shebang-regex: 3.0.0
dev: true
+ /shebang-regex/1.0.0:
+ resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
dev: true
+ /shell-quote/1.6.1:
+ resolution: {integrity: sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=}
+ dependencies:
+ array-filter: 0.0.1
+ array-map: 0.0.0
+ array-reduce: 0.0.0
+ jsonify: 0.0.0
+ dev: true
+
+ /shell-quote/1.7.3:
+ resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+ dev: true
+
/side-channel/1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
- object-inspect: 1.12.0
+ object-inspect: 1.12.2
dev: true
/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
- /single-spa-layout/1.6.0:
- resolution: {integrity: sha512-gvsZN5Jhv9+6f3kiAhUXeOQBdcl1Ywrf7sEkcnYMd2u4rO+QxU34j/xc0V4Sy3evqXhwP9B7s2BCWUSMqqxzhQ==}
+ /simple-plist/1.3.1:
+ resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
+ dependencies:
+ bplist-creator: 0.1.0
+ bplist-parser: 0.3.1
+ plist: 3.0.5
+ dev: true
+
+ /simple-swizzle/0.2.2:
+ resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=}
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: false
+
+ /single-spa-layout/2.1.0:
+ resolution: {integrity: sha512-OtacG0uc+4BGwfc5Geu9m8EG/ngR7Y08Q1kx2jE3RkRBZFNOryWPD6muiH3d2FeeT+ZrWkS1RiNdzWpOXkVVfw==}
engines: {node: '>=12'}
dependencies:
- '@types/parse5': 5.0.3
+ '@types/parse5': 6.0.3
merge2: 1.4.1
parse5: 6.0.1
- single-spa: 5.9.3
+ single-spa: 6.0.0-beta.3
dev: false
- /single-spa-react/4.6.1_41ec47b032f4824cf690f95377e02aa6:
+ /single-spa-react/4.6.1_f9b20e8c2eeb44bdeef755a440c59c76:
resolution: {integrity: sha512-19Yr1f6u9ix/wTI+OVLzX/KJ258xCyfe1Zpw7NKoI02QWBLx5B9l9XmBx9gqVtkrgP5ARR0Wr3ztY7EN8V1DAA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
react: '*'
dependencies:
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
+ '@types/react': 18.0.12
+ '@types/react-dom': 18.0.5
browserslist-config-single-spa: 1.0.1
react: 17.0.2
dev: false
- /single-spa/5.9.3:
- resolution: {integrity: sha512-qMGraRzIBsodV6569Fob4cQ4/yQNrcZ5Achh3SAQDljmqUtjAZ7BAA7GAyO/l5eizb7GtTmVq9Di7ORyKw82CQ==}
+ /single-spa/5.9.4:
+ resolution: {integrity: sha512-QkEoh0AzGuU82qnbUUk0ydF78QbU5wMKqKKJn7uUQfBiOYlRQEfIOpLM4m23Sab+kTOLI1kbYhYeiQ7fX5KVVw==}
dev: false
- /sirv/1.0.19:
- resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
- engines: {node: '>= 10'}
- dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.0
- totalist: 1.1.0
+ /single-spa/6.0.0-beta.3:
+ resolution: {integrity: sha512-nyRyqq88hBF+X9y2JZrrOcypYhLV3ziRGyU9hiW+EQEU3FmkmWy9eU2DEC1Q1C3XEKv2Of/khHfanT/q2LNWSw==}
+ dev: false
+
+ /sisteransi/1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
/slash/3.0.0:
@@ -9158,18 +9394,13 @@ packages:
engines: {node: '>=8'}
dev: true
- /slash/4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
- dev: true
-
- /slice-ansi/4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
+ /slice-ansi/2.1.0:
+ resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
+ engines: {node: '>=6'}
dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
dev: true
/snapdragon-node/2.1.1:
@@ -9202,18 +9433,6 @@ packages:
use: 3.1.1
dev: true
- /sockjs/0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
- dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
- dev: true
-
- /source-list-map/2.0.1:
- resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- dev: true
-
/source-map-js/1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
@@ -9229,6 +9448,14 @@ packages:
urix: 0.1.0
dev: true
+ /source-map-resolve/0.6.0:
+ resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.0
+ dev: true
+
/source-map-support/0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
@@ -9270,32 +9497,6 @@ packages:
resolution: {integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=}
dev: true
- /spdy-transport/3.0.0:
- resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
- dependencies:
- debug: 4.3.4
- detect-node: 2.1.0
- hpack.js: 2.1.6
- obuf: 1.1.2
- readable-stream: 3.6.0
- wbuf: 1.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /spdy/4.0.2:
- resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- debug: 4.3.4
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/split-string/3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
@@ -9311,15 +9512,15 @@ packages:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
dev: true
- /standalone-single-spa-webpack-plugin/3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7:
- resolution: {integrity: sha512-qj/iVNXMEWlwMnQbhZC7QqzifoWyps+zlIgbXS6/jvUMZVxD2U4psudPvWsjYw5Q9+HjM0WYdlgl69g9vEyw8w==}
- engines: {node: '>= 8.3.0'}
- peerDependencies:
- html-webpack-plugin: '*'
- webpack: '*'
+ /stackframe/1.2.1:
+ resolution: {integrity: sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==}
+ dev: true
+
+ /stacktrace-parser/0.1.10:
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
dependencies:
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- webpack: 5.70.0_webpack-cli@4.9.2
+ type-fest: 0.7.1
dev: true
/static-extend/0.1.2:
@@ -9335,6 +9536,16 @@ packages:
engines: {node: '>= 0.6'}
dev: true
+ /statuses/2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /stream-buffers/2.2.0:
+ resolution: {integrity: sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=}
+ engines: {node: '>= 0.10.0'}
+ dev: true
+
/string-natural-compare/3.0.1:
resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
dev: true
@@ -9352,27 +9563,29 @@ packages:
resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.4
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
get-intrinsic: 1.1.1
has-symbols: 1.0.3
internal-slot: 1.0.3
- regexp.prototype.flags: 1.4.2
+ regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
dev: true
- /string.prototype.trimend/1.0.4:
- resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==}
+ /string.prototype.trimend/1.0.5:
+ resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
- /string.prototype.trimstart/1.0.4:
- resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==}
+ /string.prototype.trimstart/1.0.5:
+ resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.3
+ define-properties: 1.1.4
+ es-abstract: 1.20.1
dev: true
/string_decoder/1.1.1:
@@ -9403,6 +9616,13 @@ packages:
ansi-regex: 2.1.1
dev: true
+ /strip-ansi/5.2.0:
+ resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-regex: 4.1.1
+ dev: true
+
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -9410,13 +9630,6 @@ packages:
ansi-regex: 5.0.1
dev: true
- /strip-ansi/7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
- engines: {node: '>=12'}
- dependencies:
- ansi-regex: 6.0.1
- dev: true
-
/strip-bom/3.0.0:
resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
engines: {node: '>=4'}
@@ -9427,9 +9640,9 @@ packages:
engines: {node: '>=10'}
dev: true
- /strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
+ /strip-eof/1.0.0:
+ resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
+ engines: {node: '>=0.10.0'}
dev: true
/strip-json-comments/3.1.1:
@@ -9437,44 +9650,38 @@ packages:
engines: {node: '>=8'}
dev: true
- /style-loader/3.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /styled-components/5.3.3_react@17.0.2:
- resolution: {integrity: sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==}
+ /styled-components/5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3:
+ resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==}
engines: {node: '>=10'}
+ requiresBuild: true
peerDependencies:
react: '>= 16.8.0'
react-dom: '>= 16.8.0'
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.16.7
- '@babel/traverse': 7.17.9_supports-color@5.5.0
- '@emotion/is-prop-valid': 0.8.8
+ '@babel/traverse': 7.18.2_supports-color@5.5.0
+ '@emotion/is-prop-valid': 1.1.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.0.6_styled-components@5.3.3
+ babel-plugin-styled-components: 2.0.7_styled-components@5.3.5
css-to-react-native: 3.0.0
hoist-non-react-statics: 3.3.2
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-is: 18.1.0
shallowequal: 1.1.0
supports-color: 5.5.0
dev: false
- /stylehacks/5.1.0_postcss@8.4.8:
+ /stylehacks/5.1.0_postcss@8.4.14:
resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.20.2
- postcss: 8.4.8
+ browserslist: 4.20.3
+ postcss: 8.4.14
postcss-selector-parser: 6.0.10
dev: true
@@ -9482,6 +9689,23 @@ packages:
resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==}
dev: false
+ /stylus/0.58.0:
+ resolution: {integrity: sha512-q27Pof0PINInv/gTO1AH+6C1VkoedEOPp38CB/DFWdSgu4fBCwnxM8cZEm4M1zU+Jr6rmZ75hkmqk2QyDze10g==}
+ hasBin: true
+ dependencies:
+ css: 3.0.0
+ debug: 4.3.4
+ glob: 7.2.3
+ sax: 1.2.4
+ source-map: 0.7.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /sudo-prompt/9.2.1:
+ resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+ dev: true
+
/supports-color/2.0.0:
resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=}
engines: {node: '>=0.8.0'}
@@ -9498,6 +9722,7 @@ packages:
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
+ dev: true
/supports-color/8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
@@ -9524,72 +9749,55 @@ packages:
stable: 0.1.8
dev: true
- /systemjs-webpack-interop/2.3.7_webpack@5.70.0:
- resolution: {integrity: sha512-9wmhkleKWVjcGfHpc1/YvfADnvzpYMdr2/AM2e7FpMczPYEdluwM3AMXxHGzPUNbWfnSaerrmzqP4nDsTDvBxA==}
- peerDependencies:
- webpack: '*'
- dependencies:
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /table/6.8.0:
- resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
- engines: {node: '>=10.0.0'}
- dependencies:
- ajv: 8.11.0
- lodash.truncate: 4.4.2
- slice-ansi: 4.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- dev: true
-
- /tailwindcss/3.0.23_autoprefixer@10.4.2:
- resolution: {integrity: sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==}
+ /tailwindcss/3.0.24:
+ resolution: {integrity: sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==}
engines: {node: '>=12.13.0'}
hasBin: true
- peerDependencies:
- autoprefixer: ^10.0.2
dependencies:
arg: 5.0.1
- autoprefixer: 10.4.2_postcss@8.4.8
- chalk: 4.1.2
chokidar: 3.5.3
color-name: 1.1.4
- cosmiconfig: 7.0.1
- detective: 5.2.0
+ detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.11
glob-parent: 6.0.2
is-glob: 4.0.3
+ lilconfig: 2.0.5
normalize-path: 3.0.0
- object-hash: 2.2.0
- postcss: 8.4.8
- postcss-js: 4.0.0_postcss@8.4.8
- postcss-load-config: 3.1.4_postcss@8.4.8
- postcss-nested: 5.0.6_postcss@8.4.8
+ object-hash: 3.0.0
+ picocolors: 1.0.0
+ postcss: 8.4.14
+ postcss-js: 4.0.0_postcss@8.4.14
+ postcss-load-config: 3.1.4_postcss@8.4.14
+ postcss-nested: 5.0.6_postcss@8.4.14
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
resolve: 1.22.0
transitivePeerDependencies:
- ts-node
- dev: true
-
- /tapable/1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
- dev: true
-
- /tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
/temp-dir/2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
dev: true
+ /temp/0.8.3:
+ resolution: {integrity: sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=}
+ engines: {'0': node >=0.8.0}
+ dependencies:
+ os-tmpdir: 1.0.2
+ rimraf: 2.2.8
+ dev: true
+
+ /temp/0.8.4:
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ rimraf: 2.6.3
+ dev: true
+
/tempy/0.6.0:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
@@ -9600,38 +9808,14 @@ packages:
unique-string: 2.0.0
dev: true
- /terser-webpack-plugin/5.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- source-map: 0.6.1
- terser: 5.12.1
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: true
-
- /terser/5.12.1:
- resolution: {integrity: sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==}
+ /terser/5.13.1:
+ resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- acorn: 8.7.0
+ acorn: 8.7.1
commander: 2.20.3
- source-map: 0.7.3
+ source-map: 0.8.0-beta.0
source-map-support: 0.5.21
dev: true
@@ -9639,21 +9823,24 @@ packages:
resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
dev: true
- /thunky/1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
+ /throat/5.0.0:
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
dev: true
- /timm/1.7.1:
- resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==}
- dev: false
+ /through2/2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ dependencies:
+ readable-stream: 2.3.7
+ xtend: 4.0.2
+ dev: true
/tiny-warning/1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /tinycolor2/1.4.2:
- resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==}
- dev: false
+ /tmpl/1.0.5:
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+ dev: true
/to-fast-properties/2.0.0:
resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
@@ -9695,14 +9882,8 @@ packages:
engines: {node: '>=0.6'}
dev: true
- /totalist/1.1.0:
- resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
- engines: {node: '>=6'}
- dev: true
-
/tr46/0.0.3:
resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=}
- dev: false
/tr46/1.0.1:
resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=}
@@ -9715,25 +9896,10 @@ packages:
hasBin: true
dev: true
- /ts-config-single-spa/2.0.1:
- resolution: {integrity: sha512-zGTozFbnMqdoNCsOJ+gqYSJNIm7QUJtN/3o8uyOCuFxwfrBETQ+lyHnvvgVO29IEVhhrnOp6NQAyOIVE8lmqxA==}
+ /ts-config-single-spa/3.0.0:
+ resolution: {integrity: sha512-SS24+FHn9mi0awcoHN4l6uioBxPjgOnwI8adVZeNnw8oXJ8VyAGDqBfRF1EMVtd9Va0bxA8kkeU0SWtLS/Guvg==}
dev: true
- /ts-loader/9.2.8_typescript@4.6.2+webpack@5.70.0:
- resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- typescript: '*'
- webpack: ^5.0.0
- dependencies:
- chalk: 4.1.2
- enhanced-resolve: 5.9.3
- micromatch: 4.0.5
- semver: 7.3.7
- typescript: 4.6.2
- webpack: 5.70.0_webpack-cli@4.9.2
- dev: false
-
/tsconfig-paths/3.14.1:
resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
dependencies:
@@ -9746,27 +9912,17 @@ packages:
/tslib/1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
-
- /tsutils/3.21.0_typescript@3.9.10:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- dependencies:
- tslib: 1.14.1
- typescript: 3.9.10
- dev: true
+ /tslib/2.4.0:
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- /tsutils/3.21.0_typescript@4.6.2:
+ /tsutils/3.21.0_typescript@4.7.3:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.6.2
+ typescript: 4.7.3
dev: true
/type-check/0.4.0:
@@ -9786,39 +9942,32 @@ packages:
engines: {node: '>=10'}
dev: true
- /type-is/1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
- dev: true
-
- /type/1.2.0:
- resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
- dev: true
-
- /type/2.6.0:
- resolution: {integrity: sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==}
+ /type-fest/0.7.1:
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
dev: true
- /typescript/3.9.10:
- resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
+ /typescript/4.7.3:
+ resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /typescript/4.6.2:
- resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==}
- engines: {node: '>=4.2.0'}
+ /uglify-es/3.3.9:
+ resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==}
+ engines: {node: '>=0.8.0'}
+ deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0
hasBin: true
+ dependencies:
+ commander: 2.13.0
+ source-map: 0.6.1
dev: true
- /unbox-primitive/1.0.1:
- resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==}
+ /unbox-primitive/1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- function-bind: 1.1.1
- has-bigints: 1.0.1
+ call-bind: 1.0.2
+ has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
dev: true
@@ -9874,6 +10023,11 @@ packages:
cookie: 0.4.2
dev: false
+ /universalify/0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
+ dev: true
+
/universalify/2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
@@ -9915,24 +10069,23 @@ packages:
querystring: 0.2.0
dev: false
+ /use-subscription/1.5.1_react@17.0.2:
+ resolution: {integrity: sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react: 17.0.2
+ dev: true
+
/use/3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
dev: true
- /utif/2.0.1:
- resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==}
- dependencies:
- pako: 1.0.11
- dev: false
-
/util-deprecate/1.0.2:
resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
- /utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
- dev: true
-
/utils-merge/1.0.1:
resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
engines: {node: '>= 0.4.0'}
@@ -9942,9 +10095,10 @@ packages:
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
hasBin: true
+ dev: false
- /uuid/8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ /uuid/7.0.3:
+ resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
dev: true
@@ -9957,300 +10111,188 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /void-elements/3.1.0:
- resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /vue-eslint-parser/7.1.1_eslint@7.32.0:
- resolution: {integrity: sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==}
- engines: {node: '>=8.10'}
- peerDependencies:
- eslint: '>=5.0.0'
+ /vite-plugin-dynamic-import/0.9.6:
+ resolution: {integrity: sha512-FpgqaobDq/glVDKRAs3+Wt/PiVoVuEXHLrh0snHrvaQYSTPXiUkMTzB4eFQUIhcgsFBbkg4Jic1cV6gHr8b+qg==}
dependencies:
- debug: 4.3.4
- eslint: 7.32.0
- eslint-scope: 5.1.1
- eslint-visitor-keys: 1.3.0
- espree: 6.2.1
- esquery: 1.4.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
+ fast-glob: 3.2.11
+ vite-plugin-utils: 0.1.0
dev: true
- /warning/4.0.3:
- resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
+ /vite-plugin-ejs/1.4.4:
+ resolution: {integrity: sha512-R3Xt8bPlU/jrzia7iC4sA1bQTRM+JjMrVAk/CTRX8w1EHD8G6xVbSZ6XJbW6kj94M4jEyDu32BAq4JaGoOtnkw==}
dependencies:
- loose-envify: 1.4.0
- dev: false
+ ejs: 3.1.8
+ dev: true
- /watchpack/2.3.1:
- resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==}
- engines: {node: '>=10.13.0'}
+ /vite-plugin-html-env/1.1.2_vite@2.9.10:
+ resolution: {integrity: sha512-7cFcNYnnRiCR0oUbw1nU8VuAMEdQisVdWU1gkSq5aS4UxSdwnJesr/wzz/cGHzkrM7EWarIoNXzuAYNY0C6hvA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ vite: ^2.1.3
dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ vite: 2.9.10
dev: true
- /wbuf/1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
+ /vite-plugin-html/3.2.0_vite@2.9.10:
+ resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==}
+ peerDependencies:
+ vite: '>=2.0.0'
dependencies:
- minimalistic-assert: 1.0.1
+ '@rollup/pluginutils': 4.2.1
+ colorette: 2.0.16
+ connect-history-api-fallback: 1.6.0
+ consola: 2.15.3
+ dotenv: 16.0.1
+ dotenv-expand: 8.0.3
+ ejs: 3.1.8
+ fast-glob: 3.2.11
+ fs-extra: 10.1.0
+ html-minifier-terser: 6.1.0
+ node-html-parser: 5.3.3
+ pathe: 0.2.0
+ vite: 2.9.10
dev: true
- /webidl-conversions/3.0.1:
- resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
- dev: false
+ /vite-plugin-import-maps/0.1.2:
+ resolution: {integrity: sha512-FEUMPFrPzXYWNCLYRk8p0GMygsZJ2s9pr6Wrql6qOletelNgmrznui/8GnAebNt9H5dh+BgLRc1+X03SlPwfgg==}
+ dependencies:
+ less: 4.1.2
+ sass: 1.52.1
+ stylus: 0.58.0
+ vite: 2.6.14_526f0e7594b346f3e77bfb5be54a2518
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /webidl-conversions/4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
+ /vite-plugin-pwa/0.12.0_vite@2.9.10:
+ resolution: {integrity: sha512-KYD+cnS5ExLF3T28NkfzBLZ53ehHlp+qMhHGFNh0zlVGpFHrJkL2v9wd4AMi7ZkBTffgeNatIFiv8rhCsMSxBQ==}
+ peerDependencies:
+ vite: ^2.0.0
+ dependencies:
+ debug: 4.3.4
+ fast-glob: 3.2.11
+ pretty-bytes: 6.0.0
+ rollup: 2.75.3
+ vite: 2.9.10
+ workbox-build: 6.5.3
+ workbox-window: 6.5.3
+ transitivePeerDependencies:
+ - '@types/babel__core'
+ - supports-color
dev: true
- /webpack-bundle-analyzer/4.5.0:
- resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==}
- engines: {node: '>= 10.13.0'}
- hasBin: true
+ /vite-plugin-utils/0.1.0:
+ resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
dependencies:
- acorn: 8.7.0
acorn-walk: 8.2.0
- chalk: 4.1.2
- commander: 7.2.0
- gzip-size: 6.0.0
- lodash: 4.17.21
- opener: 1.5.2
- sirv: 1.0.19
- ws: 7.5.7
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
+ fast-glob: 3.2.11
dev: true
- /webpack-cli/4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26:
- resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==}
- engines: {node: '>=10.13.0'}
+ /vite/2.6.14_526f0e7594b346f3e77bfb5be54a2518:
+ resolution: {integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==}
+ engines: {node: '>=12.2.0'}
hasBin: true
peerDependencies:
- '@webpack-cli/generators': '*'
- '@webpack-cli/migrate': '*'
- webpack: 4.x.x || 5.x.x
- webpack-bundle-analyzer: '*'
- webpack-dev-server: '*'
+ less: '*'
+ sass: '*'
+ stylus: '*'
peerDependenciesMeta:
- '@webpack-cli/generators':
+ less:
optional: true
- '@webpack-cli/migrate':
+ sass:
optional: true
- webpack-bundle-analyzer:
- optional: true
- webpack-dev-server:
+ stylus:
optional: true
dependencies:
- '@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.70.0
- '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2
- '@webpack-cli/serve': 1.6.1_9a0b5ed2553fd0953b975a959afcbb80
- colorette: 2.0.16
- commander: 7.2.0
- execa: 5.1.1
- fastest-levenshtein: 1.0.12
- import-local: 3.1.0
- interpret: 2.2.0
- rechoir: 0.7.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-dev-server: 4.7.4_webpack-cli@4.9.2+webpack@5.70.0
- webpack-merge: 5.8.0
- dev: true
-
- /webpack-config-single-spa-ts/4.1.2_6ed29217d3dea9188d7e08e233aa8cd3:
- resolution: {integrity: sha512-H7INbFQgu9+H0IAOqsQNw/GljxWDdzwyEoyDJ4818V5RATm7IvcNKBuxEKilKK/LvgVeXB+29ZOOrqowSxBiFQ==}
- dependencies:
- fork-ts-checker-webpack-plugin: 6.5.1_2847fb73abdc24f6b671e90820eac890
- typescript: 4.6.2
- webpack-config-single-spa: 5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c
- webpack-merge: 5.8.0
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - eslint
- - utf-8-validate
- - vue-template-compiler
- - webpack
+ esbuild: 0.13.15
+ less: 4.1.2
+ postcss: 8.4.14
+ resolve: 1.22.0
+ rollup: 2.75.3
+ sass: 1.52.1
+ stylus: 0.58.0
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
- /webpack-config-single-spa/5.2.0_ed870ac3ba52c4ec230ba2bc3dbb311c:
- resolution: {integrity: sha512-7GrheBYo5txmOKuRDt5V+8gJzS4y5WR2dqPi/lvQl6uh3xA7vlJSmaBFsYdbA28OC0UfG6fLF6+df+BAk5o25A==}
+ /vite/2.9.10:
+ resolution: {integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ==}
+ engines: {node: '>=12.2.0'}
+ hasBin: true
+ peerDependencies:
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ peerDependenciesMeta:
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
dependencies:
- babel-loader: 8.2.4_ed870ac3ba52c4ec230ba2bc3dbb311c
- css-loader: 5.2.7_webpack@5.70.0
- html-webpack-plugin: 5.5.0_webpack@5.70.0
- standalone-single-spa-webpack-plugin: 3.0.0_b6f6061bfe56c4f5f9f5f814f10f8be7
- style-loader: 3.3.1_webpack@5.70.0
- systemjs-webpack-interop: 2.3.7_webpack@5.70.0
- webpack-bundle-analyzer: 4.5.0
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - utf-8-validate
- - webpack
+ esbuild: 0.14.34
+ postcss: 8.4.14
+ resolve: 1.22.0
+ rollup: 2.75.3
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
- /webpack-dev-middleware/5.3.1_webpack@5.70.0:
- resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 2.0.16
- memfs: 3.4.1
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.0.0
- webpack: 5.70.0_webpack-cli@4.9.2
+ /vlq/1.0.1:
+ resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
dev: true
- /webpack-dev-server/4.7.4_webpack-cli@4.9.2+webpack@5.70.0:
- resolution: {integrity: sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
+ /void-elements/3.1.0:
+ resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /vue-eslint-parser/8.3.0_eslint@8.17.0:
+ resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
+ eslint: '>=6.0.0'
dependencies:
- '@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.13
- '@types/serve-index': 1.9.1
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.3
- ansi-html-community: 0.0.8
- bonjour: 3.5.0
- chokidar: 3.5.3
- colorette: 2.0.16
- compression: 1.7.4
- connect-history-api-fallback: 1.6.0
- default-gateway: 6.0.3
- del: 6.0.0
- express: 4.17.3
- graceful-fs: 4.2.10
- html-entities: 2.3.3
- http-proxy-middleware: 2.0.4_@types+express@4.17.13
- ipaddr.js: 2.0.1
- open: 8.4.0
- p-retry: 4.6.1
- portfinder: 1.0.28
- schema-utils: 4.0.0
- selfsigned: 2.0.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- strip-ansi: 7.0.1
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-dev-middleware: 5.3.1_webpack@5.70.0
- ws: 8.5.0
+ debug: 4.3.4
+ eslint: 8.17.0
+ eslint-scope: 7.1.1
+ eslint-visitor-keys: 3.3.0
+ espree: 9.3.2
+ esquery: 1.4.0
+ lodash: 4.17.21
+ semver: 7.3.7
transitivePeerDependencies:
- - bufferutil
- - debug
- supports-color
- - utf-8-validate
- dev: true
-
- /webpack-log/1.2.0:
- resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==}
- engines: {node: '>=6'}
- dependencies:
- chalk: 2.4.2
- log-symbols: 2.2.0
- loglevelnext: 1.0.5
- uuid: 3.4.0
dev: true
- /webpack-merge/5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
- engines: {node: '>=10.0.0'}
+ /walker/1.0.8:
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
- clone-deep: 4.0.1
- wildcard: 2.0.0
+ makeerror: 1.0.12
dev: true
- /webpack-pwa-manifest/4.3.0:
- resolution: {integrity: sha512-3hK8Qg58SyLCUIz4PBYnfUPM6iJ5K88h8Uhc3MxmlJcVtDF/11aBBdUTdQkqc9bo6Cb8Q1v2xdsB2XO6pzTbiA==}
- engines: {node: '>=6.0.0'}
+ /warning/4.0.3:
+ resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
dependencies:
- css-color-names: 1.0.1
- jimp: 0.16.1
- mime: 2.4.6
+ loose-envify: 1.4.0
dev: false
- /webpack-sources/1.4.3:
- resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
+ /wcwidth/1.0.1:
+ resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=}
dependencies:
- source-list-map: 2.0.1
- source-map: 0.6.1
- dev: true
-
- /webpack-sources/3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
+ defaults: 1.0.3
dev: true
- /webpack/5.70.0_webpack-cli@4.9.2:
- resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.3
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.7.0
- acorn-import-assertions: 1.8.0_acorn@8.7.0
- browserslist: 4.20.2
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.9.3
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
- json-parse-better-errors: 1.0.2
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.1_webpack@5.70.0
- watchpack: 2.3.1
- webpack-cli: 4.9.2_6d3cb84eb7e855ae6fc0a3ee585c0c26
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: true
+ /webidl-conversions/3.0.1:
+ resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
- /websocket-driver/0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
- dependencies:
- http-parser-js: 0.5.6
- safe-buffer: 5.2.1
- websocket-extensions: 0.1.4
+ /webidl-conversions/4.0.2:
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
dev: true
- /websocket-extensions/0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
+ /whatwg-fetch/3.6.2:
+ resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
dev: true
/whatwg-url/5.0.0:
@@ -10258,7 +10300,6 @@ packages:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- dev: false
/whatwg-url/7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
@@ -10278,6 +10319,17 @@ packages:
is-symbol: 1.0.4
dev: true
+ /which-module/2.0.0:
+ resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
+ dev: true
+
+ /which/1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+
/which/2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
@@ -10286,170 +10338,157 @@ packages:
isexe: 2.0.0
dev: true
- /wildcard/2.0.0:
- resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- dev: true
-
/word-wrap/1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
dev: true
- /workbox-background-sync/6.5.1:
- resolution: {integrity: sha512-T5a35fagLXQvV8Dr4+bDU+XYsP90jJ3eBLjZMKuCNELMQZNj+VekCODz1QK44jgoBeQk+vp94pkZV6G+e41pgg==}
+ /workbox-background-sync/6.5.3:
+ resolution: {integrity: sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==}
dependencies:
idb: 6.1.5
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
dev: true
- /workbox-broadcast-update/6.5.1:
- resolution: {integrity: sha512-mb/oyblyEpDbw167cCTyHnC3RqCnCQHtFYuYZd+QTpuExxM60qZuBH1AuQCgvLtDcztBKdEYK2VFD9SZYgRbaQ==}
+ /workbox-broadcast-update/6.5.3:
+ resolution: {integrity: sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
dev: true
- /workbox-build/6.5.1:
- resolution: {integrity: sha512-coDUDzHvFZ1ADOl3wKCsCSyOBvkPKlPgcQDb6LMMShN1zgF31Mev/1HzN3+9T2cjjWAgFwZKkuRyExqc1v21Zw==}
+ /workbox-build/6.5.3:
+ resolution: {integrity: sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==}
engines: {node: '>=10.0.0'}
dependencies:
- '@apideck/better-ajv-errors': 0.3.3_ajv@8.11.0
- '@babel/core': 7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
- '@rollup/plugin-babel': 5.3.1_@babel+core@7.17.5+rollup@2.70.1
- '@rollup/plugin-node-resolve': 11.2.1_rollup@2.70.1
- '@rollup/plugin-replace': 2.4.2_rollup@2.70.1
+ '@apideck/better-ajv-errors': 0.3.4_ajv@8.11.0
+ '@babel/core': 7.18.2
+ '@babel/preset-env': 7.18.2_@babel+core@7.18.2
+ '@babel/runtime': 7.18.3
+ '@rollup/plugin-babel': 5.3.1_@babel+core@7.18.2+rollup@2.75.3
+ '@rollup/plugin-node-resolve': 11.2.1_rollup@2.75.3
+ '@rollup/plugin-replace': 2.4.2_rollup@2.75.3
'@surma/rollup-plugin-off-main-thread': 2.2.3
ajv: 8.11.0
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
- glob: 7.2.0
+ glob: 7.2.3
lodash: 4.17.21
pretty-bytes: 5.6.0
- rollup: 2.70.1
- rollup-plugin-terser: 7.0.2_rollup@2.70.1
+ rollup: 2.75.3
+ rollup-plugin-terser: 7.0.2_rollup@2.75.3
source-map: 0.8.0-beta.0
stringify-object: 3.3.0
strip-comments: 2.0.1
tempy: 0.6.0
upath: 1.2.0
- workbox-background-sync: 6.5.1
- workbox-broadcast-update: 6.5.1
- workbox-cacheable-response: 6.5.1
- workbox-core: 6.5.1
- workbox-expiration: 6.5.1
- workbox-google-analytics: 6.5.1
- workbox-navigation-preload: 6.5.1
- workbox-precaching: 6.5.1
- workbox-range-requests: 6.5.1
- workbox-recipes: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
- workbox-streams: 6.5.1
- workbox-sw: 6.5.1
- workbox-window: 6.5.1
+ workbox-background-sync: 6.5.3
+ workbox-broadcast-update: 6.5.3
+ workbox-cacheable-response: 6.5.3
+ workbox-core: 6.5.3
+ workbox-expiration: 6.5.3
+ workbox-google-analytics: 6.5.3
+ workbox-navigation-preload: 6.5.3
+ workbox-precaching: 6.5.3
+ workbox-range-requests: 6.5.3
+ workbox-recipes: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
+ workbox-streams: 6.5.3
+ workbox-sw: 6.5.3
+ workbox-window: 6.5.3
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
dev: true
- /workbox-cacheable-response/6.5.1:
- resolution: {integrity: sha512-3TdtH/luDiytmM+Cn72HCBLZXmbeRNJqZx2yaVOfUZhj0IVwZqQXhNarlGE9/k6U5Jelb+TtpH2mLVhnzfiSMg==}
+ /workbox-cacheable-response/6.5.3:
+ resolution: {integrity: sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
- /workbox-core/6.5.1:
- resolution: {integrity: sha512-qObXZ39aFJ2N8X7IUbGrJHKWguliCuU1jOXM/I4MTT84u9BiKD2rHMkIzgeRP1Ixu9+cXU4/XHJq3Cy0Qqc5hw==}
+ /workbox-core/6.5.3:
+ resolution: {integrity: sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==}
- /workbox-expiration/6.5.1:
- resolution: {integrity: sha512-iY/cTADAQATMmPkUBRmQdacqq0TJd2wMHimBQz+tRnPGHSMH+/BoLPABPnu7O7rT/g/s59CUYYRGxe3mEgoJCA==}
+ /workbox-expiration/6.5.3:
+ resolution: {integrity: sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==}
dependencies:
idb: 6.1.5
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
- /workbox-google-analytics/6.5.1:
- resolution: {integrity: sha512-qZU46/h4dbionYT6Yk6iBkUwpiEzAfnO1W7KkI+AMmY7G9/gA03dQQ7rpTw8F4vWrG7ahTUGWDFv6fERtaw1BQ==}
+ /workbox-google-analytics/6.5.3:
+ resolution: {integrity: sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==}
dependencies:
- workbox-background-sync: 6.5.1
- workbox-core: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
+ workbox-background-sync: 6.5.3
+ workbox-core: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
dev: true
- /workbox-navigation-preload/6.5.1:
- resolution: {integrity: sha512-aKrgAbn2IMgzTowTi/ZyKdQUcES2m++9aGtpxqsX7Gn9ovCY8zcssaMEAMMwrIeveij5HiWNBrmj6MWDHi+0rg==}
+ /workbox-navigation-preload/6.5.3:
+ resolution: {integrity: sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
dev: true
- /workbox-precaching/6.5.1:
- resolution: {integrity: sha512-EzlPBxvmjGfE56YZzsT/vpVkpLG1XJhoplgXa5RPyVWLUL1LbwEAxhkrENElSS/R9tgiTw80IFwysidfUqLihg==}
+ /workbox-precaching/6.5.3:
+ resolution: {integrity: sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==}
dependencies:
- workbox-core: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
+ workbox-core: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
- /workbox-range-requests/6.5.1:
- resolution: {integrity: sha512-57Da/qRbd9v33YlHX0rlSUVFmE4THCjKqwkmfhY3tNLnSKN2L5YBS3qhWeDO0IrMNgUj+rGve2moKYXeUqQt4A==}
+ /workbox-range-requests/6.5.3:
+ resolution: {integrity: sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
dev: true
- /workbox-recipes/6.5.1:
- resolution: {integrity: sha512-DGsyKygHggcGPQpWafC/Nmbm1Ny3sB2vE9r//3UbeidXiQ+pLF14KEG1/0NNGRaY+lfOXOagq6d1H7SC8KA+rA==}
+ /workbox-recipes/6.5.3:
+ resolution: {integrity: sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==}
dependencies:
- workbox-cacheable-response: 6.5.1
- workbox-core: 6.5.1
- workbox-expiration: 6.5.1
- workbox-precaching: 6.5.1
- workbox-routing: 6.5.1
- workbox-strategies: 6.5.1
+ workbox-cacheable-response: 6.5.3
+ workbox-core: 6.5.3
+ workbox-expiration: 6.5.3
+ workbox-precaching: 6.5.3
+ workbox-routing: 6.5.3
+ workbox-strategies: 6.5.3
dev: true
- /workbox-routing/6.5.1:
- resolution: {integrity: sha512-yAAncdTwanvlR8KPjubyvFKeAok8ZcIws6UKxvIAg0I+wsf7UYi93DXNuZr6RBSQrByrN6HkCyjuhmk8P63+PA==}
+ /workbox-routing/6.5.3:
+ resolution: {integrity: sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
- /workbox-strategies/6.5.1:
- resolution: {integrity: sha512-JNaTXPy8wXzKkr+6za7/eJX9opoZk7UgY261I2kPxl80XQD8lMjz0vo9EOcBwvD72v3ZhGJbW84ZaDwFEhFvWA==}
+ /workbox-strategies/6.5.3:
+ resolution: {integrity: sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==}
dependencies:
- workbox-core: 6.5.1
+ workbox-core: 6.5.3
- /workbox-streams/6.5.1:
- resolution: {integrity: sha512-7jaTWm6HRGJ/ewECnhb+UgjTT50R42E0/uNCC4eTKQwnLO/NzNGjoXTdQgFjo4zteR+L/K6AtFAiYKH3ZJbAYw==}
+ /workbox-streams/6.5.3:
+ resolution: {integrity: sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==}
dependencies:
- workbox-core: 6.5.1
- workbox-routing: 6.5.1
+ workbox-core: 6.5.3
+ workbox-routing: 6.5.3
dev: true
- /workbox-sw/6.5.1:
- resolution: {integrity: sha512-hVrQa19yo9wzN1fQQ/h2JlkzFpkuH2qzYT2/rk7CLaWt6tLnTJVFCNHlGRRPhytZSf++LoIy7zThT714sowT/Q==}
+ /workbox-sw/6.5.3:
+ resolution: {integrity: sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==}
dev: true
- /workbox-webpack-plugin/6.5.1_webpack@5.70.0:
- resolution: {integrity: sha512-SHtlQBpKruI16CAYhICDMkgjXE2fH5Yp+D+1UmBfRVhByZYzusVOykvnPm8ObJb9d/tXgn9yoppoxafFS7D4vQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- webpack: ^4.4.0 || ^5.9.0
+ /workbox-window/6.5.3:
+ resolution: {integrity: sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==}
dependencies:
- fast-json-stable-stringify: 2.1.0
- pretty-bytes: 5.6.0
- upath: 1.2.0
- webpack: 5.70.0_webpack-cli@4.9.2
- webpack-sources: 1.4.3
- workbox-build: 6.5.1
- transitivePeerDependencies:
- - '@types/babel__core'
- - supports-color
- dev: true
+ '@types/trusted-types': 2.0.2
+ workbox-core: 6.5.3
- /workbox-window/6.5.1:
- resolution: {integrity: sha512-oRlun9u7b7YEjo2fIDBqJkU2hXtrEljXcOytRhfeQRbqXxjUOpFgXSGRSAkmDx1MlKUNOSbr+zfi8h5n7In3yA==}
+ /wrap-ansi/6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
dependencies:
- '@types/trusted-types': 2.0.2
- workbox-core: 6.5.1
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
dev: true
/wrap-ansi/7.0.0:
@@ -10465,22 +10504,23 @@ packages:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
dev: true
- /ws/7.5.7:
- resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
+ /write-file-atomic/2.4.3:
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
+ dependencies:
+ graceful-fs: 4.2.10
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
dev: true
- /ws/8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
- engines: {node: '>=10.0.0'}
+ /ws/6.2.2:
+ resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+
+ /ws/7.5.8:
+ resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==}
+ engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -10491,36 +10531,33 @@ packages:
optional: true
dev: true
- /xhr/2.6.0:
- resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==}
+ /xcode/3.0.1:
+ resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
+ engines: {node: '>=10.0.0'}
dependencies:
- global: 4.4.0
- is-function: 1.0.2
- parse-headers: 2.0.5
- xtend: 4.0.2
- dev: false
+ simple-plist: 1.3.1
+ uuid: 7.0.3
+ dev: true
- /xml-parse-from-string/1.0.1:
- resolution: {integrity: sha1-qQKekp09vN7RafPG4oI42VpdWig=}
- dev: false
+ /xmlbuilder/9.0.7:
+ resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=}
+ engines: {node: '>=4.0'}
+ dev: true
- /xml2js/0.4.23:
- resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==}
- engines: {node: '>=4.0.0'}
+ /xmldoc/1.1.2:
+ resolution: {integrity: sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==}
dependencies:
sax: 1.2.4
- xmlbuilder: 11.0.1
- dev: false
-
- /xmlbuilder/11.0.1:
- resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
- engines: {node: '>=4.0'}
- dev: false
+ dev: true
/xtend/4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
+ /y18n/4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: true
+
/y18n/5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -10528,19 +10565,45 @@ packages:
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ dev: true
/yaml/1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yargs-parser/20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
+ /yargs-parser/18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
dev: true
- /yargs/16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
+ /yargs-parser/21.0.1:
+ resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /yargs/15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.0
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+
+ /yargs/17.5.1:
+ resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==}
+ engines: {node: '>=12'}
dependencies:
cliui: 7.0.4
escalade: 3.1.1
@@ -10548,7 +10611,7 @@ packages:
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
- yargs-parser: 20.2.9
+ yargs-parser: 21.0.1
dev: true
/zen-observable-ts/0.8.19:
@@ -10562,31 +10625,7 @@ packages:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
dev: false
- node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react@17.0.2:
- resolution: {integrity: sha1-ErN8Hkn1p/2XmutGVZXg1WZoJiE=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.img.logo-jp/-/wasedatime.core.assets.img.logo-jp-0.0.1.tgz}
- id: node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1
- name: wasedatime.core.assets.img.logo-jp
- version: 0.0.1
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
- dev: false
-
- node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1_react@17.0.2:
- resolution: {integrity: sha1-e0w8cLOvM8t9pildIQVoGODf1pA=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.img.logo/-/wasedatime.core.assets.img.logo-0.0.1.tgz}
- id: node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1
- name: wasedatime.core.assets.img.logo
- version: 0.0.1
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
- dev: false
-
- node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-a2MtBzbhje+oHJ4Tz+L5B/2n2Qs=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.locales.en/-/wasedatime.core.assets.locales.en-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1
name: wasedatime.core.assets.locales.en
@@ -10596,9 +10635,10 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-q3GVnjO0kmRflqwouUeS5dFCHHU=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.locales.ja/-/wasedatime.core.assets.locales.ja-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1
name: wasedatime.core.assets.locales.ja
@@ -10608,21 +10648,34 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.assets.text-logo/0.0.1_react@17.0.2:
- resolution: {integrity: sha1-9aboJrogohw+CJ1WfncuafecqYo=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.assets.text-logo/-/wasedatime.core.assets.text-logo-0.0.1.tgz}
- id: node.bit.dev/@bit/wasedatime.core.assets.text-logo/0.0.1
- name: wasedatime.core.assets.text-logo
- version: 0.0.1
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- react: 17.0.2
+ node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.2:
+ resolution: {integrity: sha1-O0I7As2DSqrSnqY7AX/O43j09GI=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.2.tgz}
+ name: wasedatime.core.theme.colors
+ version: 0.0.2
+ dev: false
+
+ node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.3:
+ resolution: {integrity: sha1-6Fj0r3lf0e0ogkF168OnyzlWmj0=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.3.tgz}
+ name: wasedatime.core.theme.colors
+ version: 0.0.3
+ dev: false
+
+ node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.4:
+ resolution: {integrity: sha1-YBl9+ScBcYb7Kohku9cb5zAfhDs=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.4.tgz}
+ name: wasedatime.core.theme.colors
+ version: 0.0.4
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5:
+ resolution: {integrity: sha1-K7sD8kjDztzqeg0jgeHErLF4mYE=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.theme.colors/-/wasedatime.core.theme.colors-0.0.5.tgz}
+ name: wasedatime.core.theme.colors
+ version: 0.0.5
+ dev: false
+
+ node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-Bp87IFStXHsG1iyN/PONMyD5IyM=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.constants.langs/-/wasedatime.core.ts.constants.langs-0.0.5.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5
name: wasedatime.core.ts.constants.langs
@@ -10632,9 +10685,10 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-eXYMnbkdhymg3EBNS9RBSuz1Wbk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.styles.overlay/-/wasedatime.core.ts.styles.overlay-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1
name: wasedatime.core.ts.styles.overlay
@@ -10644,12 +10698,13 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
- styled-components: 5.3.3_react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-cszBxS3eDqwoxe9Tl162+7hc9Og=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.styles.wrapper/-/wasedatime.core.ts.styles.wrapper-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1
name: wasedatime.core.ts.styles.wrapper
@@ -10659,35 +10714,37 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
- styled-components: 5.3.3_react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17_f5a915282880b6195cdb1046e80c5e3a:
- resolution: {integrity: sha1-N513f00u4H5uGJGt8r66gTuEmUY=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.17.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.17
+ node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21_a6a614d057c08015d57b9942d6d0f07b:
+ resolution: {integrity: sha1-G11o7+B0VeSU/zNXhfpuxw2gG3A=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.21.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.header/0.2.21
name: wasedatime.core.ts.ui.header
- version: 0.2.17
+ version: 0.2.21
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.4
- '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5_a0c521d4794c7ad97f5f4c1c4a7d5818
- '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react@17.0.2
- '@bit/wasedatime.core.ts.ui.theme-toggle': node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_4bd8f766d7cd56ce339ee1b51a510026
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5
+ '@bit/wasedatime.core.ts.ui.language-menu': node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6_c0aea0a160bb4fb0c5f59d54bc1aba2c
+ '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.ui.theme-toggle': node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_352eb6157a1f58478b9bf80697aee5a8
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-responsive: 8.2.0_react@17.0.2
- react-router-dom: 6.3.0_react@17.0.2
+ react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
- '@types/react'
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.2_f5a915282880b6195cdb1046e80c5e3a:
+ node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.2_a6a614d057c08015d57b9942d6d0f07b:
resolution: {integrity: sha1-MUvE8RKQdx5JD3r7R/OPTdMgZes=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.2.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.2
name: wasedatime.core.ts.ui.language-menu
@@ -10696,11 +10753,12 @@ packages:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
'@fortawesome/free-solid-svg-icons': 5.15.4
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
- '@material-ui/core': 4.12.4_a0c521d4794c7ad97f5f4c1c4a7d5818
+ '@fortawesome/react-fontawesome': 0.1.18_6909f5698ccb6b468185370814560628
+ '@material-ui/core': 4.12.4_c89428357385a28c4f386227766bd512
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-responsive: 8.2.0_react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
@@ -10708,62 +10766,64 @@ packages:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5_a0c521d4794c7ad97f5f4c1c4a7d5818:
- resolution: {integrity: sha1-YpUkWulbAYIiEI0GiFiP+J7SfNk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.5.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.5
+ node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6_c0aea0a160bb4fb0c5f59d54bc1aba2c:
+ resolution: {integrity: sha1-2DVMCUn47JdgJXHQBIXv5GI6iUk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.6.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.language-menu/0.1.6
name: wasedatime.core.ts.ui.language-menu
- version: 0.1.5
+ version: 0.1.6
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.4
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.5
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
'@fortawesome/fontawesome-svg-core': 1.3.0
'@fortawesome/free-solid-svg-icons': 5.15.4
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
- '@material-ui/core': 4.12.4_a0c521d4794c7ad97f5f4c1c4a7d5818
+ '@fortawesome/react-fontawesome': 0.1.18_4bd8f766d7cd56ce339ee1b51a510026
+ '@material-ui/core': 4.12.4_c89428357385a28c4f386227766bd512
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
react-responsive: 8.2.0_react@17.0.2
transitivePeerDependencies:
- '@types/react'
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react@17.0.2:
- resolution: {integrity: sha1-WqxofSQAwEMlFy7NVlh0RXm+0N0=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.2.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2
+ node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3:
+ resolution: {integrity: sha1-44SvUvzJtH0xwoEOvbiIFMpiSfU=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.5.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5
name: wasedatime.core.ts.ui.loading-spinner
- version: 0.1.2
+ version: 0.1.5
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.3
- '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react@17.0.2
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.3
+ '@bit/wasedatime.core.ts.styles.overlay': node.bit.dev/@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.styles.wrapper': node.bit.dev/@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.ui.logo': node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9_react@17.0.2:
- resolution: {integrity: sha1-3KGefQPP8se1Blx051dpau3Cmp0=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.0.9.tgz}
- id: node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.0.9
+ node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2:
+ resolution: {integrity: sha1-74P2D7rW83R16bst5QxwLAh4PKI=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.1.2.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.logo/0.1.2
name: wasedatime.core.ts.ui.logo
- version: 0.0.9
+ version: 0.1.2
peerDependencies:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.assets.img.logo': node.bit.dev/@bit/wasedatime.core.assets.img.logo/0.0.1_react@17.0.2
- '@bit/wasedatime.core.assets.img.logo-jp': node.bit.dev/@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react@17.0.2
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8:
+ node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8_react-dom@17.0.2:
resolution: {integrity: sha1-xkKmBXxGPJmAXzBQAeIqi71+V1E=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.modal/-/wasedatime.core.ts.ui.modal-0.0.8.tgz}
+ id: node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8
name: wasedatime.core.ts.ui.modal
version: 0.0.8
peerDependencies:
@@ -10771,10 +10831,11 @@ packages:
dependencies:
no-scroll: 2.1.1
react: 17.0.2
- react-modal: 3.14.4_react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-modal: 3.15.1_react-dom@17.0.2+react@17.0.2
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6_e46095638471543ba34100765238dc47:
+ node.bit.dev/@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6_44372ad526450f77d720d3fe51751afb:
resolution: {integrity: sha1-2AsM/+8z11HHHjRVHuMy8YjmyVk=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.sign-in-modal/-/wasedatime.core.ts.ui.sign-in-modal-0.1.6.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6
name: wasedatime.core.ts.ui.sign-in-modal
@@ -10783,13 +10844,14 @@ packages:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.ts.ui.modal': node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8
- '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.utils.user': node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_react@17.0.2
+ '@bit/wasedatime.core.ts.ui.modal': node.bit.dev/@bit/wasedatime.core.ts.ui.modal/0.0.8_react-dom@17.0.2
+ '@bit/wasedatime.core.ts.utils.responsive-utils': node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@bit/wasedatime.core.ts.utils.user': node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_6e7d8002d9aed4660df23491d430a582
'@fortawesome/free-brands-svg-icons': 6.1.1
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
+ '@fortawesome/react-fontawesome': 0.1.18_6909f5698ccb6b468185370814560628
react: 17.0.2
- react-i18next: 11.15.6_i18next@19.9.2+react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-i18next: 11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0
react-responsive: 8.2.0_react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
@@ -10799,7 +10861,7 @@ packages:
- react-native
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_4bd8f766d7cd56ce339ee1b51a510026:
+ node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_352eb6157a1f58478b9bf80697aee5a8:
resolution: {integrity: sha1-YTDn/Cp/YgdPYdeR4APo2mVmyXo=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.ui.theme-toggle/-/wasedatime.core.ts.ui.theme-toggle-0.1.3.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3
name: wasedatime.core.ts.ui.theme-toggle
@@ -10808,15 +10870,16 @@ packages:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.2
- '@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
+ '@bit/wasedatime.core.theme.colors': node.bit.dev/@bit/wasedatime.core.theme.colors/0.0.2
+ '@fortawesome/free-solid-svg-icons': 6.1.1
+ '@fortawesome/react-fontawesome': 0.1.18_6909f5698ccb6b468185370814560628
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- '@fortawesome/fontawesome-svg-core'
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_i18next@19.9.2+react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4_9724892b3df2999a6ee0ebb64e8fe4b0:
resolution: {integrity: sha1-Mi/S9B83NRoFmQTS6EgSF8Ymqlo=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.i18n/-/wasedatime.core.ts.utils.i18n-0.0.4.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.utils.i18n/0.0.4
name: wasedatime.core.ts.utils.i18n
@@ -10825,20 +10888,21 @@ packages:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@bit/wasedatime.core.assets.locales.en': node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1_react@17.0.2
- '@bit/wasedatime.core.assets.locales.ja': node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1_react@17.0.2
- '@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react@17.0.2
+ '@bit/wasedatime.core.assets.locales.en': node.bit.dev/@bit/wasedatime.core.assets.locales.en/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.assets.locales.ja': node.bit.dev/@bit/wasedatime.core.assets.locales.ja/0.0.1_react-dom@17.0.2+react@17.0.2
+ '@bit/wasedatime.core.ts.constants.langs': node.bit.dev/@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2
i18next-browser-languagedetector: 6.1.4
- i18next-http-backend: 1.4.0
+ i18next-http-backend: 1.4.1
react: 17.0.2
- react-i18next: 11.15.6_i18next@19.9.2+react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-i18next: 11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0
transitivePeerDependencies:
- encoding
- i18next
- react-native
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
resolution: {integrity: sha1-5/QLjuULwrwyclYP8m96BV+Mnq8=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.responsive-utils/-/wasedatime.core.ts.utils.responsive-utils-0.0.1.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1
name: wasedatime.core.ts.utils.responsive-utils
@@ -10848,12 +10912,13 @@ packages:
react-dom: ^17.0.1
dependencies:
react: 17.0.2
- styled-components: 5.3.3_react@17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
transitivePeerDependencies:
- react-is
dev: false
- node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_react@17.0.2:
+ node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4_6e7d8002d9aed4660df23491d430a582:
resolution: {integrity: sha1-oXb9G56lFH2zi1fg1GCWAJpy1xU=, registry: https://node.bit.dev/, tarball: https://node.bit.dev/wasedatime.core.ts.utils.user/-/wasedatime.core.ts.utils.user-0.0.4.tgz}
id: node.bit.dev/@bit/wasedatime.core.ts.utils.user/0.0.4
name: wasedatime.core.ts.utils.user
@@ -10862,8 +10927,9 @@ packages:
react: ^17.0.1
react-dom: ^17.0.1
dependencies:
- '@aws-amplify/auth': 4.5.0
+ '@aws-amplify/auth': 4.5.6_react-native@0.68.2
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- encoding
- react-native
diff --git a/root/service-worker.js b/root/service-worker.js
deleted file mode 100644
index e9886dc6c..000000000
--- a/root/service-worker.js
+++ /dev/null
@@ -1,47 +0,0 @@
-importScripts(
- "https://storage.googleapis.com/workbox-cdn/releases/5.0.0/workbox-sw.js"
-);
-
-workbox.core.skipWaiting();
-workbox.core.clientsClaim();
-workbox.precaching.precacheAndRoute(self.__WB_MANIFEST);
-
-workbox.core.setCacheNameDetails({
- prefix: "wasedatime-cache",
- precache: "precache",
- runtime: "runtime",
-});
-
-workbox.routing.registerRoute(
- ({ event }) => event.request.mode === "navigate",
- new workbox.strategies.NetworkFirst({
- fetchOptions: {
- credentials: "same-origin",
- },
- })
-);
-
-workbox.routing.registerRoute(
- /.*\.(?:js|css)/,
- new workbox.strategies.NetworkFirst({
- fetchOptions: {
- credentials: "same-origin",
- },
- })
-);
-
-workbox.routing.registerRoute(
- /.*\.(?:png|jpg|jpeg|svg|gif|woff|woff2|eot|ttf|otf)/,
- new workbox.strategies.StaleWhileRevalidate({
- fetchOptions: {
- credentials: "same-origin",
- },
- })
-);
-
-self.addEventListener("message", function (event) {
- if (event.data && event.data.type === "SKIP_WAITING") {
- self.skipWaiting();
- self.clients.claim();
- }
-});
diff --git a/root/src/App.tsx b/root/src/App.tsx
index e5999e9f8..10afba034 100644
--- a/root/src/App.tsx
+++ b/root/src/App.tsx
@@ -7,7 +7,7 @@ import { Helmet } from "react-helmet";
import { useTranslation } from "react-i18next";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import { navigateToUrl } from "single-spa";
-import { ErrorBoundary } from 'react-error-boundary'
+import { ErrorBoundary } from "react-error-boundary";
import CommonStyle from "@app/common-style";
import ErrorFallback from "@app/components/ErrorFallback";
@@ -82,6 +82,8 @@ const AppRoutes = () => {
} path="/" />
} path="/timetable" />
} path="/syllabus" />
+ >} path="/campus" />
+ >} path="/career" />
} path="*" />
);
diff --git a/root/src/styles/fonts/Lato-Regular.ttf b/root/src/assets/fonts/Lato-Regular.ttf
similarity index 100%
rename from root/src/styles/fonts/Lato-Regular.ttf
rename to root/src/assets/fonts/Lato-Regular.ttf
diff --git a/root/src/styles/fonts/segoe-ui.ttf b/root/src/assets/fonts/segoe-ui.ttf
similarity index 100%
rename from root/src/styles/fonts/segoe-ui.ttf
rename to root/src/assets/fonts/segoe-ui.ttf
diff --git a/root/src/styles/fonts/yugothic-medium.otf b/root/src/assets/fonts/yugothic-medium.otf
similarity index 100%
rename from root/src/styles/fonts/yugothic-medium.otf
rename to root/src/assets/fonts/yugothic-medium.otf
diff --git a/root/src/assets/img/apple-touch-icon.png b/root/src/assets/img/apple-touch-icon.png
new file mode 100644
index 000000000..672a77200
Binary files /dev/null and b/root/src/assets/img/apple-touch-icon.png differ
diff --git a/root/src/assets/img/contributors/mona.jpg b/root/src/assets/img/contributors/mona.jpg
new file mode 100644
index 000000000..e0d27bdd4
Binary files /dev/null and b/root/src/assets/img/contributors/mona.jpg differ
diff --git a/root/src/assets/img/contributors/xinyue.jpg b/root/src/assets/img/contributors/xinyue.jpg
index 8c4d09c70..faabb6722 100644
Binary files a/root/src/assets/img/contributors/xinyue.jpg and b/root/src/assets/img/contributors/xinyue.jpg differ
diff --git a/root/src/assets/img/home/logo.svg b/root/src/assets/img/home/logo.svg
new file mode 100644
index 000000000..2735479cc
--- /dev/null
+++ b/root/src/assets/img/home/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/root/src/assets/img/pwa-192x192.png b/root/src/assets/img/pwa-192x192.png
new file mode 100644
index 000000000..d86562428
Binary files /dev/null and b/root/src/assets/img/pwa-192x192.png differ
diff --git a/root/src/assets/img/pwa-512x512.png b/root/src/assets/img/pwa-512x512.png
new file mode 100644
index 000000000..4e1b7aac7
Binary files /dev/null and b/root/src/assets/img/pwa-512x512.png differ
diff --git a/root/src/assets/img/splash_image.png b/root/src/assets/img/splash_image.png
new file mode 100644
index 000000000..1ed47501c
Binary files /dev/null and b/root/src/assets/img/splash_image.png differ
diff --git a/root/robots.txt b/root/src/assets/robots.txt
similarity index 100%
rename from root/robots.txt
rename to root/src/assets/robots.txt
diff --git a/root/src/components/Feeds.tsx b/root/src/components/Feeds.tsx
index d4898e1c7..664fc27aa 100644
--- a/root/src/components/Feeds.tsx
+++ b/root/src/components/Feeds.tsx
@@ -25,12 +25,7 @@ const Feeds = () => {
const { t, i18n } = useTranslation();
const { theme, setTheme } = React.useContext(ThemeContext);
- const feedsDomain =
- process.env.NODE_ENV === "development"
- ? "http://localhost:8083"
- : process.env.NODE_ENV === "staging"
- ? `https://${process.env.PREFIX}.${process.env.MF_FEEDS_DOMAIN}`
- : "/feeds";
+ const feedsBasePath = import.meta.env.VITE_MF_FEEDS_BASE_PATH;
return (
@@ -50,7 +45,7 @@ const Feeds = () => {
diff --git a/syllabus/src/components/SyllabusTabs.tsx b/syllabus/src/components/SyllabusTabs.tsx
index b73cca711..35719b010 100644
--- a/syllabus/src/components/SyllabusTabs.tsx
+++ b/syllabus/src/components/SyllabusTabs.tsx
@@ -32,7 +32,7 @@ const SyllabusTabs = ({ t }: WithTranslation) => {
return (
{tabItems.map((item) => (
-
+
props.isDark && "color: #fff !important;"}
+ ${(props) => props.$isDark && "color: #fff !important;"}
`;
class AddReviewForm extends React.Component {
@@ -208,7 +208,7 @@ class AddReviewForm extends React.Component {
e.preventDefault();
}}
>
-
+
{t("courseInfo.Scales")}
@@ -257,7 +257,7 @@ class AddReviewForm extends React.Component {
-
+
{t("courseInfo.Review")}
`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
border: 1px solid ${colors.dark.text3} !important;
border-radius: 5px;
@@ -183,7 +183,7 @@ const CourseDetails = ({ course, t, i18n }: Props) => {
diff --git a/syllabus/src/components/courseInfo/CourseDetailsEvaluation.tsx b/syllabus/src/components/courseInfo/CourseDetailsEvaluation.tsx
index 7b095bbcd..2312d91cf 100644
--- a/syllabus/src/components/courseInfo/CourseDetailsEvaluation.tsx
+++ b/syllabus/src/components/courseInfo/CourseDetailsEvaluation.tsx
@@ -16,11 +16,11 @@ const evalTypeMap = ["Exam", "Papers", "Class Participation", "Others"];
const evalColorMap = ["#c2402c", "#c87f3d", "#a2ae67", "#6c92b4", "#28b4a9"];
type StyledTableProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const StyledTable = styled(Table)`
- ${(props) => props.isDark && "border: none !important;"}
+ ${(props) => props.$isDark && "border: none !important;"}
`;
const ChartWrapper = styled(Grid.Column)`
@@ -51,7 +51,7 @@ const CourseDetailsEvaluation = ({ course, t }: Props) => {
}));
const evalsTable = (
-
+
{(course[SyllabusKey.EVAL] as any[]).map((e, i) => (
@@ -119,7 +119,7 @@ const CourseDetailsEvaluation = ({ course, t }: Props) => {
{(course[SyllabusKey.EVAL] as string)
.split("\n")
- .map((e) => e &&
{e}
)}
+ .map((e, i) => e &&
{e}
)}
);
};
diff --git a/syllabus/src/components/courseInfo/CourseInfo.tsx b/syllabus/src/components/courseInfo/CourseInfo.tsx
index bec767dd1..c21c18494 100644
--- a/syllabus/src/components/courseInfo/CourseInfo.tsx
+++ b/syllabus/src/components/courseInfo/CourseInfo.tsx
@@ -6,7 +6,7 @@ import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
import { getUserAttr } from "@bit/wasedatime.core.ts.utils.user";
import { faExternalLinkSquareAlt } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import levenshtein from "levenshtein-edit-distance";
+import { levenshteinEditDistance as levenshtein } from "levenshtein-edit-distance";
import ReactGA from "react-ga";
import { WithTranslation, withTranslation } from "react-i18next";
import { connect } from "react-redux";
@@ -35,7 +35,7 @@ import { courseSchemaFullToShort } from "@app/utils/map-single-course-schema";
import { ThemeContext } from "@app/utils/theme-context";
type CourseInfoWrapperProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const CourseInfoWrapper = styled(Segment)`
@@ -44,7 +44,7 @@ const CourseInfoWrapper = styled(Segment)`
cursor: auto;
margin-top: 0px !important;
border: none !important;
- ${(props) => props.isDark && `background: ${colors.dark.bgMain} !important;`}
+ ${(props) => props.$isDark && `background: ${colors.dark.bgMain} !important;`}
`;
const RelatedCourses = styled.div`
@@ -258,7 +258,7 @@ class CourseInfo extends React.Component {
return areDetailsLoaded ? (
@@ -301,7 +301,7 @@ class CourseInfo extends React.Component {
searchLang={searchLang}
/>
) : (
-
+
)}
{t("courseInfo.Related courses")}
@@ -331,12 +331,12 @@ class CourseInfo extends React.Component {
))
) : (
-
+
)}
) : (
-
+
);
}
}
diff --git a/syllabus/src/components/courseInfo/CourseMoreDetails.tsx b/syllabus/src/components/courseInfo/CourseMoreDetails.tsx
index 03a1715c4..0fc7f491d 100644
--- a/syllabus/src/components/courseInfo/CourseMoreDetails.tsx
+++ b/syllabus/src/components/courseInfo/CourseMoreDetails.tsx
@@ -39,7 +39,7 @@ const Schedule = ({ content }: ScheduleProps) => {
return (
{items.map((item, i) => (
-
+
@@ -83,7 +83,7 @@ const Textbooks = ({ content }: TextbooksProps) => {
return (
- {content.split("\n").map((c) => c &&
{c}
)}
+ {content.split("\n").map((c, i) => c &&
{c}
)}
{/*
{isBookLoaded ? (
books.map((book, i) => (
@@ -121,13 +121,17 @@ const CourseMoreDetails = ({ course, t }: Props) => {
title: t("courseMoreDetails.Outline"),
content:
course[SyllabusKey.OUTLINE] &&
- course[SyllabusKey.OUTLINE].split("\n").map((c) => c &&
{c}
),
+ course[SyllabusKey.OUTLINE]
+ .split("\n")
+ .map((c, i) => c &&
{c}
),
},
{
title: t("courseMoreDetails.Objective"),
content:
course[SyllabusKey.OBJECTIVE] &&
- course[SyllabusKey.OBJECTIVE].split("\n").map((c) => c &&
{c}
),
+ course[SyllabusKey.OBJECTIVE]
+ .split("\n")
+ .map((c, i) => c &&
{c}
),
},
{
title: t("courseMoreDetails.Schedule"),
@@ -139,7 +143,9 @@ const CourseMoreDetails = ({ course, t }: Props) => {
title: t("courseMoreDetails.Self Study"),
content:
course[SyllabusKey.SELF_STUDY] &&
- course[SyllabusKey.SELF_STUDY].split("\n").map((c) => c &&
{c}
),
+ course[SyllabusKey.SELF_STUDY]
+ .split("\n")
+ .map((c, i) => c &&
{c}
),
},
{
title: t("courseMoreDetails.Textbook"),
@@ -157,7 +163,9 @@ const CourseMoreDetails = ({ course, t }: Props) => {
title: t("courseMoreDetails.Note"),
content:
course[SyllabusKey.NOTE] &&
- course[SyllabusKey.NOTE].split("\n").map((c) => c &&
{c}
),
+ course[SyllabusKey.NOTE]
+ .split("\n")
+ .map((c, i) => c &&
{c}
),
},
];
diff --git a/syllabus/src/components/courseInfo/CourseReviews.tsx b/syllabus/src/components/courseInfo/CourseReviews.tsx
index 4b2cfb9c2..addf4dd33 100644
--- a/syllabus/src/components/courseInfo/CourseReviews.tsx
+++ b/syllabus/src/components/courseInfo/CourseReviews.tsx
@@ -9,7 +9,7 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import ReactGA from "react-ga";
import { WithTranslation, withTranslation } from "react-i18next";
import MediaQuery from "react-responsive";
-import Alert from "react-s-alert";
+import { toast } from "react-toastify";
import styled from "styled-components";
import AddReviewForm from "@app/components/courseInfo/AddReviewForm";
@@ -178,10 +178,7 @@ class CourseReviews extends React.Component
{
const { course, courseKey, t } = this.props;
if (Object.values(formScales).indexOf(0) > -1 || formText.length === 0) {
- Alert.warning(t("courseInfo.Fill in all fields before sending"), {
- position: "bottom",
- effect: "jelly",
- });
+ toast.warning(t("courseInfo.Fill in all fields before sending"));
} else {
const editReview = { ...formScales, comment: formText };
const newReview = {
@@ -232,10 +229,7 @@ class CourseReviews extends React.Component {
).then(async () => this.cleanFormAndUpdateReviews(newReview));
}
} catch (error) {
- Alert.error(this.props.t("courseInfo.Review failed to send"), {
- position: "bottom",
- effect: "jelly",
- });
+ toast.error(this.props.t("courseInfo.Review failed to send"));
}
}
};
@@ -244,10 +238,7 @@ class CourseReviews extends React.Component {
const { courseKey, t } = this.props;
const { userToken, userId } = this.state;
- Alert.success(t("courseInfo.Review sent"), {
- position: "bottom",
- effect: "jelly",
- });
+ toast.success(t("courseInfo.Review sent"));
const res = await API.get(
"wasedatime-dev",
@@ -291,10 +282,7 @@ class CourseReviews extends React.Component {
}
)
.then(() => {
- Alert.success(t("courseInfo.Review deleted"), {
- position: "bottom",
- effect: "jelly",
- });
+ toast.success(t("courseInfo.Review deleted"));
ReactGA.event({
category: gaCourseReviews,
action: gaDeleteCourseReview,
diff --git a/syllabus/src/components/courseInfo/ReviewLangSwitches.tsx b/syllabus/src/components/courseInfo/ReviewLangSwitches.tsx
index 978f693e1..f1bb0c558 100644
--- a/syllabus/src/components/courseInfo/ReviewLangSwitches.tsx
+++ b/syllabus/src/components/courseInfo/ReviewLangSwitches.tsx
@@ -19,7 +19,7 @@ type ReviewLangSwitchItem = {
type ReviewLangSwitchProps = {
active: boolean;
isInHeading: boolean;
- isDark: boolean;
+ $isDark: boolean;
};
const ReviewLangSwitch = styled.button`
@@ -27,21 +27,21 @@ const ReviewLangSwitch = styled.button`
border: none;
padding: 2px 10px;
background-color: ${(props) =>
- props.isDark ? colors.dark.text3 : colors.light.text3};
- color: ${(props) => (props.isDark ? colors.dark.text1 : "#fff")};
+ props.$isDark ? colors.dark.text3 : colors.light.text3};
+ color: ${(props) => (props.$isDark ? colors.dark.text1 : "#fff")};
${(props) =>
props.active &&
`
- background-color: ${props.isDark ? colors.dark.main : colors.light.main};
- color: ${props.isDark ? colors.dark.text1 : "#fff"};
+ background-color: ${props.$isDark ? colors.dark.main : colors.light.main};
+ color: ${props.$isDark ? colors.dark.text1 : "#fff"};
`};
${(props) => props.isInHeading && "line-height: 20px;"};
&:hover {
outline: none;
background-color: ${(props) =>
- props.isDark ? colors.dark.main : colors.light.main};
- color: ${(props) => (props.isDark ? colors.dark.text1 : "#fff")};
+ props.$isDark ? colors.dark.main : colors.light.main};
+ color: ${(props) => (props.$isDark ? colors.dark.text1 : "#fff")};
}
&:focus {
@@ -86,7 +86,8 @@ const ReviewLangSwitches = ({
active={reviewLang === item.label}
onClick={() => switchReviewLang(item.label)}
isInHeading={isInHeading}
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
+ key={item.name}
>
{item.name}
diff --git a/syllabus/src/components/courseInfo/ReviewsList.tsx b/syllabus/src/components/courseInfo/ReviewsList.tsx
index e5772786d..d380add06 100644
--- a/syllabus/src/components/courseInfo/ReviewsList.tsx
+++ b/syllabus/src/components/courseInfo/ReviewsList.tsx
@@ -112,7 +112,7 @@ const Editbutton = styled(Button)`
color: orange !important;
padding: 0px !important;
background-color: ${(props) =>
- props.isDark ? colors.dark.bgMain : colors.light.bgMain} !important;
+ props.$isDark ? colors.dark.bgMain : colors.light.bgMain} !important;
`;
const Deletebutton = styled(Editbutton)`
@@ -253,7 +253,7 @@ class ReviewsList extends React.Component {
index,
})
}
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
>
@@ -261,7 +261,7 @@ class ReviewsList extends React.Component {
icon
size="massive"
onClick={() => this.openDeleteModal(review, index)}
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
>
diff --git a/syllabus/src/components/labs/Lab.tsx b/syllabus/src/components/labs/Lab.tsx
index 04d6da00c..1661a1a25 100644
--- a/syllabus/src/components/labs/Lab.tsx
+++ b/syllabus/src/components/labs/Lab.tsx
@@ -10,13 +10,19 @@ import styled from "styled-components";
import "rc-slider/assets/index.css";
-import ASEcover from "@app/assets/img/school-covers/ase.png";
-import CSEcover from "@app/assets/img/school-covers/cse.png";
-import FSEcover from "@app/assets/img/school-covers/fse.png";
import ReviewStars from "@app/components/courseInfo/ReviewStars";
import Review from "@app/components/labs/Review";
import { ThemeContext } from "@app/utils/theme-context";
+import FSEcover from "/img/school-covers/fse.png";
+import CSEcover from "/img/school-covers/cse.png";
+import ASEcover from "/img/school-covers/ase.png";
+
+const bgImgUrl = (schoolCoverPath: string): string => {
+ const bgImg = new URL(schoolCoverPath, import.meta.url);
+ return bgImg.href;
+};
+
type LabWrapperProps = {
isOpen: boolean;
};
@@ -26,10 +32,10 @@ type LabTrigger = {
};
type ThemedComponentProps = {
- isDark: boolean;
+ $isDark: boolean;
};
-const schoolCoverMap = {
+const schoolCoverMap: { [name: string]: string } = {
FSE: FSEcover,
CSE: CSEcover,
ASE: ASEcover,
@@ -62,7 +68,7 @@ const LabTrigger = styled.div`
width: 100%;
height: 100%;
opacity: ${(props) => (props.school === "CSE" ? 0.2 : 0.3)};
- background-image: url(${(props) => schoolCoverMap[props.school]});
+ background-image: url(${(props) => bgImgUrl(schoolCoverMap[props.school])});
background-size: 100%;
border-radius: 10px;
}
@@ -125,8 +131,13 @@ const ReviewsModal = styled.div`
`}
`;
+const LabHeader = styled.div`
+ height: 15%;
+ padding: 1em;
+`;
+
const ReviewsWrapper = styled(SimpleBar)`
- height: 100%;
+ height: 85%;
padding: 1em;
.simplebar-scrollbar::before {
background-color: #999;
@@ -172,7 +183,7 @@ const SectionHeader = styled.h5`
const StyledTable = styled(Table)`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
border-color: ${colors.dark.text3} !important;
`}
@@ -180,7 +191,7 @@ const StyledTable = styled(Table)`
const StyledTableHeaderCell = styled(Table.HeaderCell)`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
background-color: ${colors.dark.bgSide} !important;
color: ${colors.dark.text2} !important;
@@ -189,7 +200,7 @@ const StyledTableHeaderCell = styled(Table.HeaderCell)`
const StyledTableCell = styled(Table.Cell)`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
background-color: ${colors.dark.bgMain} !important;
color: ${colors.dark.text2} !important;
@@ -213,24 +224,25 @@ const Lab = ({ name, reviews, school }) => {
const [open, setOpen] = useState(false);
const itemTable = (itemLabel) => (
-
+
-
+
{t(`labs.review.${itemLabel}`)}
- {Array.from(new Set(reviews.map((r) => r[itemLabel]))).map(
- (item) =>
- item && (
-
-
- {item}
-
-
- )
+ {Array.from(new Set(reviews.map((r) => r[itemLabel]))).map((item, i) =>
+ item ? (
+
+
+ {item}
+
+
+ ) : (
+
+ )
)}
@@ -253,11 +265,12 @@ const Lab = ({ name, reviews, school }) => {
{open && (
-
+
setOpen(false)}>×
-
{name}
+
+
{t("labs.review.Basics")}
{itemTable("theme")}
{itemTable("coreTime")}
@@ -265,10 +278,10 @@ const Lab = ({ name, reviews, school }) => {
{t("labs.review.Research Topic")}
{topicSatisficationAverage > 0 && (
-
+
-
+
{t("labs.review.topicSatisfication")}{" "}
@@ -286,10 +299,10 @@ const Lab = ({ name, reviews, school }) => {
{guidanceAverage > 0 && (
-
+
-
+
{
)}
{happinessAverage > 0 && (
-
+
-
+
{t("labs.review.happiness")}{" "}
diff --git a/syllabus/src/components/labs/Labs.tsx b/syllabus/src/components/labs/Labs.tsx
index 76ce9499b..adb3cb47e 100644
--- a/syllabus/src/components/labs/Labs.tsx
+++ b/syllabus/src/components/labs/Labs.tsx
@@ -10,7 +10,7 @@ import MediaQuery from "react-responsive";
import Message from "semantic-ui-react/dist/commonjs/collections/Message";
import styled from "styled-components";
-import reviews from "@app/assets/lab_reviews_by_school_major.json";
+import reviews from "@app/constants/lab_reviews_by_school_major.json";
import Lab from "@app/components/labs/Lab";
import SchoolMajorSelector from "@app/components/labs/SchoolMajorSelector";
import FilterButton from "@app/components/syllabus/FilterButton";
@@ -310,11 +310,15 @@ class Labs extends React.Component {
reviews[school][major].length > 0 ? (
reviews[school][major].map(
(lab) =>
- (!searchTerm || lab.lab.includes(searchTerm)) && (
+ (!searchTerm ||
+ lab.lab
+ .toLowerCase()
+ .includes(searchTerm.toLowerCase())) && (
)
)
diff --git a/syllabus/src/components/labs/SchoolMajorSelector.tsx b/syllabus/src/components/labs/SchoolMajorSelector.tsx
index aef85aeb9..3ea32ef8f 100644
--- a/syllabus/src/components/labs/SchoolMajorSelector.tsx
+++ b/syllabus/src/components/labs/SchoolMajorSelector.tsx
@@ -6,12 +6,15 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useTranslation } from "react-i18next";
import styled from "styled-components";
-import majorBg from "@app/assets/img/major_bg.jpg";
-import aseIcon from "@app/assets/img/syllabus-icons/ase.png";
-import cseIcon from "@app/assets/img/syllabus-icons/cse.png";
-import fseIcon from "@app/assets/img/syllabus-icons/fse.png";
+import majorBg from "/img/major_bg.jpg";
import { Badge } from "@app/components/styles/Badge";
import majorsBySchool from "@app/constants/majors-by-school";
+import getSchoolIconPath from "@app/utils/get-school-icon-path";
+
+const bgImgUrl = () => {
+ const bgImg = new URL(majorBg, import.meta.url);
+ return bgImg.href;
+};
type SchoolButtonProps = {
active: boolean;
@@ -69,7 +72,9 @@ const MajorWrapper = styled.div`
width: 100%;
height: 100%;
opacity: 0.2;
- background-image: url(${majorBg});
+ background-image: url(${import.meta.env.MODE === "development"
+ ? bgImgUrl
+ : majorBg});
background-size: 15em;
}
`;
@@ -139,20 +144,27 @@ const SchoolMajorSelector = ({
{t("syllabus.Filter by")}
- {[fseIcon, cseIcon, aseIcon].map((icon, i) => (
+ {["FSE", "CSE", "ASE"].map((school, i) => (
switchSchool(i)}
active={selectedSchool === schools[i]}
>
-
+
))}
- {majorsBySchool[selectedSchool]?.map((major) => (
- switchMajorAndCloseModal(major)}>
+ {majorsBySchool[selectedSchool]?.map((major, i) => (
+ switchMajorAndCloseModal(major)}
+ key={`major_button_${i}`}
+ >
{t(`labs.major.${major}`)}
diff --git a/syllabus/src/components/styles/LoadingTextPlaceHolder.tsx b/syllabus/src/components/styles/LoadingTextPlaceHolder.tsx
index d23b8d811..6df255b18 100644
--- a/syllabus/src/components/styles/LoadingTextPlaceHolder.tsx
+++ b/syllabus/src/components/styles/LoadingTextPlaceHolder.tsx
@@ -4,35 +4,35 @@ import colors from "@bit/wasedatime.core.theme.colors";
import Placeholder from "semantic-ui-react/dist/commonjs/elements/Placeholder";
type Props = {
- isDark: boolean;
+ $isDark: boolean;
};
-const LoadingTextPlaceHolder = ({ isDark }: Props) => (
+const LoadingTextPlaceHolder = ({ $isDark }: Props) => (
diff --git a/syllabus/src/components/syllabus/CourseChunk.tsx b/syllabus/src/components/syllabus/CourseChunk.tsx
index a237406f0..2e8450ad8 100644
--- a/syllabus/src/components/syllabus/CourseChunk.tsx
+++ b/syllabus/src/components/syllabus/CourseChunk.tsx
@@ -1,8 +1,10 @@
-import React from "react";
+import React, { lazy } from "react";
import { UnstyledUList } from "@app/components/styles/List";
import { SyllabusKey } from "@app/constants/syllabus-data";
-import CourseItemContainer from "@app/containers/CourseItemContainer";
+const CourseItemContainer = lazy(
+ () => import("@app/containers/CourseItemContainer")
+);
import Course from "@app/types/course";
interface Props {
diff --git a/syllabus/src/components/syllabus/Filter.tsx b/syllabus/src/components/syllabus/Filter.tsx
index df7328abe..6d8e67830 100644
--- a/syllabus/src/components/syllabus/Filter.tsx
+++ b/syllabus/src/components/syllabus/Filter.tsx
@@ -15,25 +15,25 @@ import FilterGroups from "@app/types/filter";
import { ThemeContext } from "@app/utils/theme-context";
type FilterWrapperProps = {
- isSideBar: boolean;
+ $isSideBar: boolean;
};
type FilterScrollAreaProps = {
- isSideBar: boolean;
+ $isSideBar: boolean;
};
const FilterWrapper = styled.div`
- ${(props) => !props.isSideBar && "width: 100vw;"}
+ ${(props) => !props.$isSideBar && "width: 100vw;"}
height: ${(props) =>
- props.isSideBar ? "calc(100vh - 96px)" : "calc(100vh - 50px)"};
+ props.$isSideBar ? "calc(100vh - 96px)" : "calc(100vh - 50px)"};
`;
const FilterScrollArea = styled(SimpleBar)`
// flex: none;
width: 100%;
- height: ${(props) => (props.isSideBar ? "100%" : "calc(100% - 50px)")};
+ height: ${(props) => (props.$isSideBar ? "100%" : "calc(100% - 50px)")};
padding: ${(props) =>
- props.isSideBar ? "0.5em 1em 1em 1em" : "0.7em 1.2em 1.2em"};
+ props.$isSideBar ? "0.5em 1em 1em 1em" : "0.7em 1.2em 1.2em"};
.simplebar-scrollbar::before {
background-color: #999;
@@ -75,14 +75,14 @@ interface Props extends WithTranslation {
filterGroups: FilterGroups;
handleToggleFilter: (name: string, value: any) => void;
clearFilter: () => void;
- isSideBar: boolean;
+ $isSideBar: boolean;
}
const Filter = ({
filterGroups,
handleToggleFilter,
clearFilter,
- isSideBar,
+ $isSideBar,
t,
}: Props) => {
const { theme, setTheme } = React.useContext(ThemeContext);
@@ -472,8 +472,8 @@ const Filter = ({
}));
return (
-
-
+
+
diff --git a/syllabus/src/components/syllabus/FilterEvalGroup.tsx b/syllabus/src/components/syllabus/FilterEvalGroup.tsx
index 84b03d5c4..059e6f3e7 100644
--- a/syllabus/src/components/syllabus/FilterEvalGroup.tsx
+++ b/syllabus/src/components/syllabus/FilterEvalGroup.tsx
@@ -13,14 +13,14 @@ import FilterGroup from "@app/components/syllabus/FilterGroup";
import { ThemeContext } from "@app/utils/theme-context";
type ThemedComponentProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const Range = Slider.createSliderWithTooltip(Slider.Range);
const StyledRange = styled(Range)`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
.rc-slider-rail {
background-color: ${colors.dark.text3};
@@ -66,7 +66,7 @@ const StyledDropdown = styled(Dropdown)`
padding: 0px !important;
padding-top: 0.3rem !important;
background-color: ${(props) =>
- props.isDark ? colors.dark.card1 : "white"} !important;
+ props.$isDark ? colors.dark.card1 : "white"} !important;
label {
font-family: Lato, Yu Gothic Medium, Segoe UI !important;
@@ -78,12 +78,12 @@ const StyledDropdown = styled(Dropdown)`
font-size: 1.3em !important;
margin: 2px 1rem !important;
color: ${(props) =>
- props.isDark ? colors.dark.text2 : "black"} !important;
+ props.$isDark ? colors.dark.text2 : "black"} !important;
}
.menu {
background-color: ${(props) =>
- props.isDark ? colors.dark.card1 : "white"} !important;
+ props.$isDark ? colors.dark.card1 : "white"} !important;
::-webkit-scrollbar {
width: 0;
background: transparent;
@@ -94,7 +94,7 @@ const StyledDropdown = styled(Dropdown)`
.text {
font-size: 16px !important;
line-height: 1.2 !important;
- color: ${(props) => (props.isDark ? colors.dark.text2 : "black")};
+ color: ${(props) => (props.$isDark ? colors.dark.text2 : "black")};
}
}
}
@@ -103,7 +103,7 @@ const StyledDropdown = styled(Dropdown)`
padding: 0.5rem 0.2rem 0.5rem 0px !important;
font-size: 14px !important;
font-weight: 100;
- color: ${(props) => (props.isDark ? colors.dark.text2 : "black")};
+ color: ${(props) => (props.$isDark ? colors.dark.text2 : "black")};
}
`;
@@ -162,7 +162,7 @@ const FilterEvalGroup = ({
handleToggleFilter(typeInputName, data.value);
}}
aria-label={typeInputName}
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
/>
`
@@ -23,28 +23,28 @@ const StyledDropdown = styled(Dropdown)`
min-height: 32px !important;
padding: 0.2rem 0.5rem 0.1rem 0.5rem !important;
background-color: ${(props) =>
- props.isDark ? colors.dark.card1 : "white"} !important;
+ props.$isDark ? colors.dark.card1 : "white"} !important;
a.ui.label {
border-width: 0px;
border-radius: 5px;
background-color: ${(props) =>
- props.isDark ? colors.dark.text2 : colors.dark.text2} !important;
- color: ${(props) => (props.isDark ? "#333" : "white")};
+ props.$isDark ? colors.dark.text2 : colors.dark.text2} !important;
+ color: ${(props) => (props.$isDark ? "#333" : "white")};
.delete.icon {
padding: 0px !important;
&:before {
content: "×";
margin-left: 5px;
font-size: 16px;
- color: ${(props) => (props.isDark ? "#333" : "white")};
+ color: ${(props) => (props.$isDark ? "#333" : "white")};
}
}
}
.menu {
background-color: ${(props) =>
- props.isDark ? colors.dark.card1 : "white"} !important;
+ props.$isDark ? colors.dark.card1 : "white"} !important;
::-webkit-scrollbar {
width: 0;
background: transparent;
@@ -61,13 +61,13 @@ const StyledDropdown = styled(Dropdown)`
.text {
margin: 0.4rem 1em !important;
- color: ${(props) => (props.isDark ? colors.dark.text2 : "black")};
+ color: ${(props) => (props.$isDark ? colors.dark.text2 : "black")};
}
i {
padding: 0.5rem 1em !important;
font-size: 14px !important;
- color: ${(props) => (props.isDark ? colors.dark.text2 : "black")};
+ color: ${(props) => (props.$isDark ? colors.dark.text2 : "black")};
}
`;
@@ -177,7 +177,7 @@ const FilterGroup = ({
handleToggleFilter(inputName, data.value);
}}
aria-label={inputName}
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
/>
);
}
diff --git a/syllabus/src/components/syllabus/SchoolFilterForm.tsx b/syllabus/src/components/syllabus/SchoolFilterForm.tsx
index 585feed4d..4a3864c12 100644
--- a/syllabus/src/components/syllabus/SchoolFilterForm.tsx
+++ b/syllabus/src/components/syllabus/SchoolFilterForm.tsx
@@ -1,7 +1,6 @@
import React from "react";
import colors from "@bit/wasedatime.core.theme.colors";
-import Lang from "@bit/wasedatime.core.ts.constants.langs";
import { media, sizes } from "@bit/wasedatime.core.ts.utils.responsive-utils";
import { WithTranslation, withTranslation } from "react-i18next";
import MediaQuery from "react-responsive";
@@ -12,13 +11,17 @@ import Card from "semantic-ui-react/dist/commonjs/views/Card";
import styled from "styled-components";
import SchoolImportCard from "@app/components/syllabus/SchoolImportCard";
-import * as schoolIconEnMap from "@app/constants/school-name-icon-map-en";
-import * as schoolIconJaMap from "@app/constants/school-name-icon-map-ja";
import "semantic-ui-css/components/popup.min.css";
import { ThemeContext } from "@app/utils/theme-context";
+import {
+ gradSchools,
+ otherSchools,
+ undergradSchools,
+} from "@app/constants/schools-by-type";
+import getSchoolIconPath from "@app/utils/get-school-icon-path";
type ThemeComponentProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const Cards = styled(Card.Group)`
@@ -38,7 +41,7 @@ const Cards = styled(Card.Group)`
const WiderPopup = styled(Popup)`
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
background-color: ${colors.dark.bgMain} !important;
box-shadow: 0 2px 4px 0 ${colors.dark.text3} !important;
@@ -59,8 +62,16 @@ const WiderPopup = styled(Popup)`
`;
const StyledTab = styled(Tab)`
+ .tabular.menu {
+ display: flex;
+ flex-direction: row;
+ .item {
+ flex: 1;
+ }
+ }
+
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
.tabular.menu {
border-bottom-color: ${colors.dark.text3} !important;
@@ -80,7 +91,7 @@ const StyledTab = styled(Tab)`
const StyledMenuItem = styled(Menu.Item)`
font-size: 1.2em;
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
background-color: ${colors.dark.bgMain} !important;
border-color: ${colors.dark.text3} !important;
@@ -159,20 +170,28 @@ class SchoolFilterForm extends React.Component {
schoolImportPanes = (theme) => {
const { loadedSchools, loadingSchool } = this.state;
const { t, i18n, selectedSchools, handleToggleFilter } = this.props;
- const schoolGroupNames = ["Undergraduate", "Graduate", "Special"];
+ const schoolTypeNames = ["Undergraduate", "Graduate", "Special"];
+ const schoolsByType = [undergradSchools, gradSchools, otherSchools];
- const ImportCardGroup = ({ schoolNameIconMap, itemsPerRow }) => (
+ const ImportCardGroup = ({
+ schools,
+ itemsPerRow,
+ }: {
+ schools: string[];
+ itemsPerRow: any;
+ }) => (
- {Object.keys(schoolNameIconMap).map((schoolName) => (
+ {schools.map((schoolName: string) => (
this.handleSchoolloading(schoolName)}
isBannedToLoad={
!loadedSchools.includes(schoolName) &&
- loadingSchool &&
+ loadingSchool !== undefined &&
+ loadingSchool !== null &&
loadingSchool !== schoolName
}
checked={selectedSchools.includes(schoolName)}
@@ -182,41 +201,19 @@ class SchoolFilterForm extends React.Component {
);
- const lng = i18n.language;
- const schoolIconMap =
- i18n.language === Lang.EN
- ? [
- schoolIconEnMap.undergradSchoolNameIconMap,
- schoolIconEnMap.gradSchoolNameIconMap,
- schoolIconEnMap.otherSchoolNameIconMap,
- ]
- : [
- schoolIconJaMap.undergradSchoolNameIconMap,
- schoolIconJaMap.gradSchoolNameIconMap,
- schoolIconJaMap.otherSchoolNameIconMap,
- ];
-
- return schoolIconMap.map((schoolNameIconMap, i) => ({
+ return schoolsByType.map((schools, i) => ({
menuItem: (
-
- {t(`syllabus.School Filter.${schoolGroupNames[i]}`)}
+
+ {t(`syllabus.School Filter.${schoolTypeNames[i]}`)}
),
render: () => (
{(matches) => {
return matches ? (
-
+
) : (
-
+
);
}}
@@ -263,19 +260,19 @@ class SchoolFilterForm extends React.Component {
content={
}
on="click"
position="bottom left"
size="huge"
wide="very"
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
/>
) : (
);
}
diff --git a/syllabus/src/components/syllabus/SchoolImportCard.tsx b/syllabus/src/components/syllabus/SchoolImportCard.tsx
index f94bd63e9..4f51eecbd 100644
--- a/syllabus/src/components/syllabus/SchoolImportCard.tsx
+++ b/syllabus/src/components/syllabus/SchoolImportCard.tsx
@@ -11,7 +11,7 @@ import styled from "styled-components";
import { ThemeContext } from "@app/utils/theme-context";
type ThemedComponentProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const SchoolCardWrapper = styled(Dimmer.Dimmable)`
@@ -20,7 +20,7 @@ const SchoolCardWrapper = styled(Dimmer.Dimmable)`
border: 0px !important;
position: relative;
${(props) =>
- props.isDark &&
+ props.$isDark &&
`
background-color: ${colors.dark.text3} !important;
box-shadow: 0 1px 3px 0 ${colors.dark.text3},0 0 0 1px ${colors.dark.text3} !important;
@@ -37,7 +37,7 @@ const SchoolImage = styled(Image)`
transform: translate(-6px, 3px);
}
${(props) =>
- props.isDark && `background-color: ${colors.dark.text3} !important;`}
+ props.$isDark && `background-color: ${colors.dark.text3} !important;`}
`;
const CheckLabel = styled.div`
@@ -50,6 +50,17 @@ const CheckLabel = styled.div`
height: 60px;
`;
+const schoolCardDimmerColor = (
+ isDimmerActive: boolean,
+ theme: string
+): string => {
+ if (theme === "light") {
+ return isDimmerActive ? "rgba(0,0,0,0.5)" : "rgba(255,255,255,0.8)";
+ } else {
+ return isDimmerActive ? "rgba(0,0,0,0.7)" : "rgba(0,0,0,0.5)";
+ }
+};
+
interface Props {
loaded: boolean;
loading: boolean;
@@ -78,18 +89,13 @@ const SchoolImportCard = ({
return (
{!loaded && loading && (
@@ -106,7 +112,7 @@ const SchoolImportCard = ({
src={schoolIcon}
width="70"
height="70"
- isDark={theme === "dark"}
+ $isDark={theme === "dark"}
/>
);
diff --git a/syllabus/src/components/timetable/ColorSelector.tsx b/syllabus/src/components/timetable/ColorSelector.tsx
index 3471db621..32213bea3 100644
--- a/syllabus/src/components/timetable/ColorSelector.tsx
+++ b/syllabus/src/components/timetable/ColorSelector.tsx
@@ -23,9 +23,12 @@ const InvisibleButton = styled("button")`
const ColorButton = styled(InvisibleButton)`
width: 1.5em;
height: 1.5em;
+ border: 1px solid
+ ${(props) => timetableColors[props.theme][`color${props.colorCode}`]};
border-radius: 0.3em;
margin: 0 0.1em;
- background-color: ${(props) => timetableColors[props.theme][`bgColor${props.colorCode}`]};
+ background-color: ${(props) =>
+ timetableColors[props.theme][`bgColor${props.colorCode}`]};
`;
interface Props {
diff --git a/syllabus/src/components/timetable/CourseAndPrefItem.tsx b/syllabus/src/components/timetable/CourseAndPrefItem.tsx
index c54a6163c..564286e82 100644
--- a/syllabus/src/components/timetable/CourseAndPrefItem.tsx
+++ b/syllabus/src/components/timetable/CourseAndPrefItem.tsx
@@ -22,15 +22,17 @@ import timetableColors from "@app/constants/timetable-colors";
type StyledPopupProps = {
isDark: boolean;
-}
+};
const StyledPopup = styled(Popup)`
padding: 5px;
padding-bottom: 0px;
border-width: 1px;
border-radius: 5px;
- border-color: ${props => props.isDark ? colors.dark.text2 : colors.light.text3};
- background-color: ${props => props.isDark ? colors.dark.bgSide : colors.light.bgSide};
+ border-color: ${(props) =>
+ props.isDark ? colors.dark.text2 : colors.light.text3};
+ background-color: ${(props) =>
+ props.isDark ? colors.dark.bgSide : colors.light.bgSide};
`;
const RowWrapper = styled("li")`
@@ -124,10 +126,13 @@ const CourseAndPrefItem = ({
+
}
on="click"
pinned
diff --git a/syllabus/src/components/timetable/CourseColumn.tsx b/syllabus/src/components/timetable/CourseColumn.tsx
index 3b6c9d988..3275e2d98 100644
--- a/syllabus/src/components/timetable/CourseColumn.tsx
+++ b/syllabus/src/components/timetable/CourseColumn.tsx
@@ -14,7 +14,7 @@ import timetableColors from "@app/constants/timetable-colors";
type StyledCourseColumnProps = {
displayPeriods: number;
- isDark: boolean;
+ $isDark: boolean;
};
type CourseItemProps = {
@@ -27,13 +27,13 @@ const StyledCourseColumn = styled.div`
display: flex;
flex: 1 0 calc(30rem / 7 * ${(props) => props.displayPeriods});
border-right: 1px solid
- ${(props) => (props.isDark ? colors.dark.text3 : "#f7f7f7")};
+ ${(props) => (props.$isDark ? colors.dark.text3 : "#f7f7f7")};
border-bottom: solid 1px
- ${(props) => (props.isDark ? colors.dark.text3 : "#f7f7f7")};
+ ${(props) => (props.$isDark ? colors.dark.text3 : "#f7f7f7")};
background: linear-gradient(
180deg,
- ${(props) => (props.isDark ? colors.dark.bgMain : "white")} 50%,
- ${(props) => (props.isDark ? "#333" : "#eee")} 50%
+ ${(props) => (props.$isDark ? colors.dark.bgMain : "white")} 50%,
+ ${(props) => (props.$isDark ? "#333" : "#eee")} 50%
);
background-size: 100% calc(100% / ${(props) => props.displayPeriods} * 2);
position: relative;
@@ -231,7 +231,7 @@ const CourseColumn = ({ largestPeriod, coursesAndProperties, t }: Props) => {
return (
{distinctCourseListsComponent}
diff --git a/syllabus/src/components/timetable/QuarterSwitch.tsx b/syllabus/src/components/timetable/QuarterSwitch.tsx
index 30d2ab133..86bbc5b8a 100644
--- a/syllabus/src/components/timetable/QuarterSwitch.tsx
+++ b/syllabus/src/components/timetable/QuarterSwitch.tsx
@@ -24,16 +24,16 @@ interface Props extends WithTranslation {
}
type ButtonProps = {
- isDark: boolean;
+ $isDark: boolean;
};
const OrButton = styled(Button.Or)`
height: 24px;
&:before {
background-color: ${(props) =>
- props.isDark ? colors.dark.bgSide : colors.light.bgSide} !important;
+ props.$isDark ? colors.dark.bgSide : colors.light.bgSide} !important;
color: ${(props) =>
- props.isDark ? colors.dark.text2 : colors.light.text2} !important;
+ props.$isDark ? colors.dark.text2 : colors.light.text2} !important;
}
`;
@@ -65,7 +65,7 @@ const QuarterSwitch = ({
)}{" "}
-
+
-
+