diff --git a/apps/campus/.eslintrc.js b/apps/campus/.eslintrc.js
new file mode 100644
index 000000000..93f071807
--- /dev/null
+++ b/apps/campus/.eslintrc.js
@@ -0,0 +1,8 @@
+module.exports = {
+ env: {
+ browser: true,
+ es2021: true,
+ es6: true,
+ },
+ extends: ["custom"],
+};
diff --git a/apps/campus/.eslintrc.json b/apps/campus/.eslintrc.json
deleted file mode 100644
index 4347967c3..000000000
--- a/apps/campus/.eslintrc.json
+++ /dev/null
@@ -1,163 +0,0 @@
-{
- "env": {
- "browser": true,
- "es2021": true,
- "es6": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:jsx-a11y/recommended",
- "airbnb",
- "plugin:import/errors",
- "plugin:import/warnings",
- "plugin:import/typescript",
- "plugin:prettier/recommended",
- "prettier"
- ],
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module",
- "project": ["./tsconfig.json"],
- "ecmaFeatures": {
- "arrowFunctions": true,
- "jsx": true
- }
- },
- "plugins": [
- "import",
- "jsx-a11y",
- "prefer-arrow",
- "react",
- "react-hooks"
- ],
- // "ignorePatterns": [".eslintrc.js"],
- "rules": {
- "react/function-component-definition": [
- 2,
- { "namedComponents": "arrow-function" }
- ],
- "no-use-before-define": "off",
- "@typescript-eslint/no-use-before-define": ["error"],
- "react/jsx-uses-react": "error",
- "react/jsx-uses-vars": "error",
- // "@typescript-eslint/rule-name": "error",
- "operator-linebreak": [
- "error",
- "after",
- { "overrides": { "?": "ignore", ":": "ignore" } }
- ],
- "quotes": ["error", "double"],
- "newline-before-return": "error",
- "no-console": "warn",
- "no-continue": "warn",
- "require-yield": "warn",
- "spaced-comment": ["error", "always", { "markers": ["/"] }],
- "prefer-arrow/prefer-arrow-functions": [
- "error",
- {
- "disallowPrototype": true,
- "singleReturnOnly": true,
- "classPropertiesAllowed": false
- }
- ],
- "react/jsx-filename-extension": [
- "error",
- {
- "extensions": ["jsx", "tsx"]
- }
- ],
- "react/jsx-props-no-spreading": "off",
- "react/jsx-fragments": ["off", "element"],
- "react/prop-types": "off",
- "react/prefer-stateless-function": "off",
-
- "react-hooks/exhaustive-deps": "error",
-
- "import/extensions": "off",
- "import/prefer-default-export": "off",
- "import/no-extraneous-dependencies": [
- "error",
- { "devDependencies": [], "peerDependencies": true }
- ]
- },
- "overrides": [
- {
- "files": ["**\\*.{ts,tsx}"],
- "extends": [
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "sourceType": "module",
- "project": "**/tsconfig.json"
- },
- "plugins": ["@typescript-eslint"],
- "rules": {
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/explicit-member-accessibility": "off",
- "indent": "off",
- "@typescript-eslint/indent": "off",
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
- "react-hooks/exhaustive-deps": "off",
- "import/no-unresolved": "off",
- "comma-dangle": ["error", "only-multiline"],
- "@typescript-eslint/no-unsafe-assignment": "off",
- "@typescript-eslint/no-unsafe-member-access": 1,
- "@typescript-eslint/no-unsafe-return": 1,
- "@typescript-eslint/no-unused-vars": "off",
- "no-unused-vars": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-namespace": "off",
- "react/require-default-props": "off",
- "import/order": [
- "error",
- {
- "pathGroups": [
- {
- "pattern": "react",
- "group": "builtin",
- "position": "before"
- },
- {
- "pattern": "@app/**",
- "group": "type",
- "position": "after"
- }
- ],
- "alphabetize": {
- "order": "asc",
- "caseInsensitive": true
- },
- "pathGroupsExcludedImportTypes": ["builtin", "react"],
- "newlines-between": "always"
- }
- ]
- }
- },
- {
- "files": ["**\\*.js"],
- "rules": {
- "camelcase": ["error", { "allow": ["sc_pageName", "sc_c2", "sc_c27"] }],
- "func-names": ["error", "never"]
- }
- }
- ],
- "settings": {
- "import/extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "import/parsers": {
- "@typescript-eslint/parser": [".ts", ".d.ts", ".tsx"]
- },
- "import/resolver": {
- "node": {
- "extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "paths": ["src", "node_modules"]
- }
- },
- "react": {
- "version": "detect"
- }
- }
-}
diff --git a/apps/campus/.prettierrc.js b/apps/campus/.prettierrc.js
index 54058aad8..8c55273ee 100644
--- a/apps/campus/.prettierrc.js
+++ b/apps/campus/.prettierrc.js
@@ -1,17 +1,7 @@
module.exports = {
- printWidth: 80,
+ plugins: [require("prettier-plugin-tailwindcss")],
+ trailingComma: "es5",
tabWidth: 2,
- useTabs: false,
- semi: true,
- htmlWhitespaceSensitivity: "css",
- endOfLine: "lf",
-
- overrides: [
- {
- files: ["*.html", "*ejs"],
- options: {
- printWidth: 200,
- },
- },
- ],
+ semi: false,
+ singleQuote: false,
};
diff --git a/apps/campus/package.json b/apps/campus/package.json
index 0fbba0d32..94d44957c 100644
--- a/apps/campus/package.json
+++ b/apps/campus/package.json
@@ -9,7 +9,8 @@
"preview-dev": "vite preview --port 8081",
"tsc": "tsc",
"local": "concurrently --kill-others \"pnpm start\" \"cd ../root && pnpm start\"",
- "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" && prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
+ "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"devDependencies": {
"@babel/core": "7.17.5",
@@ -24,48 +25,33 @@
"@fortawesome/fontawesome-svg-core": "1.3.0",
"@popperjs/core": "^2.11.6",
"@types/node": "17.0.21",
- "@typescript-eslint/eslint-plugin": "5.14.0",
- "@typescript-eslint/parser": "5.14.0",
+ "@vitejs/plugin-react": "1.3.2",
"autoprefixer": "10.4.2",
"babel-plugin-styled-components": "2.0.6",
"concurrently": "7.0.0",
"cssnano": "5.1.0",
"dotenv": "^16.0.3",
"eslint": "8.10.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-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",
- "eslint-plugin-react-hooks": "4.3.0",
+ "eslint-config-custom": "workspace:*",
"postcss": "8.4.8",
"prettier": "2.5.1",
- "prettier-eslint": "13.0.0",
+ "prettier-plugin-tailwindcss": "^0.2.8",
"prop-types": "^15.8.1",
"react-is": "^18.2.0",
"react-native": "^0.68.5",
"sass": "1.49.9",
"tailwindcss": "3.0.23",
"ts-config-single-spa": "2.0.1",
- "typescript": "4.6.2"
+ "typescript": "4.6.2",
+ "vite": "^4.3.5"
},
"dependencies": {
"@aws-amplify/auth": "4.4.4",
- "@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.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",
"@fortawesome/react-fontawesome": "0.1.17",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.13",
"@types/styled-components": "5.1.24",
- "@vitejs/plugin-react-refresh": "^1.3.6",
"bootstrap": "5.1.3",
"i18next": "19.9.2",
"react": "17.0.2",
@@ -76,13 +62,10 @@
"react-helmet": "6.1.0",
"react-i18next": "11.15.6",
"react-router-dom": "^6.7.0",
- "single-spa-react": "3.2.0",
+ "single-spa-react": "4.6.1",
"styled-components": "5.3.3",
- "vite": "^2.9.15",
- "vite-plugin-dynamic-import": "^0.7.1"
- },
- "resolutions": {
- "esbuild": "0.14.43"
+ "vite-plugin-dynamic-import": "^0.7.1",
+ "wasedatime-ui": "*"
},
"peerDependencies": {
"@babel/plugin-syntax-flow": "^7.16.7",
diff --git a/apps/campus/pnpm-lock.yaml b/apps/campus/pnpm-lock.yaml
index 8b89f2f03..f2965f5cc 100644
--- a/apps/campus/pnpm-lock.yaml
+++ b/apps/campus/pnpm-lock.yaml
@@ -1,160 +1,179 @@
-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.18.6
- '@babel/plugin-transform-react-jsx': ^7.20.7
- '@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.theme.colors': 0.0.4
- '@bit/wasedatime.core.ts.constants.langs': 0.0.5
- '@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.6
- '@types/node': 17.0.21
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
- '@types/styled-components': 5.1.24
- '@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
- cssnano: 5.1.0
- dotenv: ^16.0.3
- eslint: 8.10.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-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
- eslint-plugin-react-hooks: 4.3.0
- i18next: 19.9.2
- postcss: 8.4.8
- 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
- react-dom: 17.0.2
- react-ga: 3.3.0
- react-helmet: 6.1.0
- react-i18next: 11.15.6
- react-is: ^18.2.0
- react-native: ^0.68.5
- react-router-dom: ^6.7.0
- sass: 1.49.9
- single-spa-react: 3.2.0
- styled-components: 5.3.3
- tailwindcss: 3.0.23
- ts-config-single-spa: 2.0.1
- typescript: 4.6.2
- vite: ^2.9.15
- vite-plugin-dynamic-import: ^0.7.1
+lockfileVersion: '6.0'
dependencies:
- '@aws-amplify/auth': 4.4.4_react-native@0.68.7
- '@bit/wasedatime.core.theme.colors': 0.0.4
- '@bit/wasedatime.core.ts.constants.langs': 0.0.5_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.header': 0.2.21_85437955bddca72fa9ee81a991b14a9d
- '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.5_af520ff3c650e6a6d05e9a79e9549b09
- '@bit/wasedatime.core.ts.utils.i18n': 0.0.4_ec84e0e897a5e285e9ddba67b24ffe21
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_af520ff3c650e6a6d05e9a79e9549b09
- '@fortawesome/free-solid-svg-icons': 6.0.0
- '@fortawesome/react-fontawesome': 0.1.17_4bd8f766d7cd56ce339ee1b51a510026
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
- '@types/styled-components': 5.1.24
- '@vitejs/plugin-react-refresh': 1.3.6
- bootstrap: 5.1.3_@popperjs+core@2.11.7
- 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_prop-types@15.8.1+react@17.0.2
- react-helmet: 6.1.0_react@17.0.2
- react-i18next: 11.15.6_ec84e0e897a5e285e9ddba67b24ffe21
- react-router-dom: 6.11.1_react-dom@17.0.2+react@17.0.2
- single-spa-react: 3.2.0_react@17.0.2
- styled-components: 5.3.3_af520ff3c650e6a6d05e9a79e9549b09
- vite: 2.9.15_sass@1.49.9
- vite-plugin-dynamic-import: 0.7.1
+ '@aws-amplify/auth':
+ specifier: 4.4.4
+ version: 4.4.4(react-native@0.68.5)
+ '@fortawesome/free-solid-svg-icons':
+ specifier: 6.0.0
+ version: 6.0.0
+ '@fortawesome/react-fontawesome':
+ specifier: 0.1.17
+ version: 0.1.17(@fortawesome/fontawesome-svg-core@1.3.0)(react@17.0.2)
+ '@types/react':
+ specifier: 17.0.39
+ version: 17.0.39
+ '@types/react-dom':
+ specifier: 17.0.13
+ version: 17.0.13
+ '@types/styled-components':
+ specifier: 5.1.24
+ version: 5.1.24
+ bootstrap:
+ specifier: 5.1.3
+ version: 5.1.3(@popperjs/core@2.11.6)
+ eslint-plugin-react-hooks:
+ specifier: 4.3.0
+ version: 4.3.0(eslint@8.10.0)
+ i18next:
+ specifier: 19.9.2
+ version: 19.9.2
+ react:
+ specifier: 17.0.2
+ version: 17.0.2
+ react-bootstrap:
+ specifier: 1.6.4
+ version: 1.6.4(react-dom@17.0.2)(react@17.0.2)
+ react-datepicker:
+ specifier: 3.8.0
+ version: 3.8.0(react-dom@17.0.2)(react@17.0.2)
+ react-dom:
+ specifier: 17.0.2
+ version: 17.0.2(react@17.0.2)
+ react-ga:
+ specifier: 3.3.0
+ version: 3.3.0(prop-types@15.8.1)(react@17.0.2)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@17.0.2)
+ react-i18next:
+ specifier: 11.15.6
+ version: 11.15.6(i18next@19.9.2)(react-dom@17.0.2)(react-native@0.68.5)(react@17.0.2)
+ react-router-dom:
+ specifier: ^6.7.0
+ version: 6.7.0(react-dom@17.0.2)(react@17.0.2)
+ single-spa-react:
+ specifier: 4.6.1
+ version: 4.6.1(@types/react-dom@17.0.13)(@types/react@17.0.39)(react@17.0.2)
+ styled-components:
+ specifier: 5.3.3
+ version: 5.3.3(react-dom@17.0.2)(react-is@18.2.0)(react@17.0.2)
+ vite-plugin-dynamic-import:
+ specifier: ^0.7.1
+ version: 0.7.1
+ wasedatime-ui:
+ specifier: '*'
+ version: link:../../packages/ui
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.21.4_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@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.7
- '@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
- cssnano: 5.1.0_postcss@8.4.8
- dotenv: 16.0.3
- eslint: 8.10.0
- eslint-config-airbnb: 19.0.4_1a200a0ef4d49ba6b286d48d7621cc60
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- eslint-config-react-app: 7.0.0_cb4cbb6d607c9c099f062cfe721ceb3c
- 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
- prettier: 2.5.1
- prettier-eslint: 13.0.0
- prop-types: 15.8.1
- react-is: 18.2.0
- react-native: 0.68.7_24353ddb04343aa31089be039ffbe27f
- sass: 1.49.9
- tailwindcss: 3.0.23_autoprefixer@10.4.2
- ts-config-single-spa: 2.0.1
- typescript: 4.6.2
+ '@babel/core':
+ specifier: 7.17.5
+ version: 7.17.5
+ '@babel/eslint-parser':
+ specifier: 7.17.0
+ version: 7.17.0(@babel/core@7.17.5)(eslint@8.10.0)
+ '@babel/plugin-syntax-flow':
+ specifier: ^7.18.6
+ version: 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx':
+ specifier: ^7.20.7
+ version: 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-runtime':
+ specifier: 7.17.0
+ version: 7.17.0(@babel/core@7.17.5)
+ '@babel/preset-env':
+ specifier: 7.16.11
+ version: 7.16.11(@babel/core@7.17.5)
+ '@babel/preset-react':
+ specifier: 7.16.7
+ version: 7.16.7(@babel/core@7.17.5)
+ '@babel/preset-typescript':
+ specifier: 7.16.7
+ version: 7.16.7(@babel/core@7.17.5)
+ '@babel/runtime':
+ specifier: 7.17.2
+ version: 7.17.2
+ '@fortawesome/fontawesome-svg-core':
+ specifier: 1.3.0
+ version: 1.3.0
+ '@popperjs/core':
+ specifier: ^2.11.6
+ version: 2.11.6
+ '@types/node':
+ specifier: 17.0.21
+ version: 17.0.21
+ '@vitejs/plugin-react':
+ specifier: 1.3.2
+ version: 1.3.2
+ autoprefixer:
+ specifier: 10.4.2
+ version: 10.4.2(postcss@8.4.8)
+ babel-plugin-styled-components:
+ specifier: 2.0.6
+ version: 2.0.6(styled-components@5.3.3)
+ concurrently:
+ specifier: 7.0.0
+ version: 7.0.0
+ cssnano:
+ specifier: 5.1.0
+ version: 5.1.0(postcss@8.4.8)
+ dotenv:
+ specifier: ^16.0.3
+ version: 16.0.3
+ eslint:
+ specifier: 8.10.0
+ version: 8.10.0
+ eslint-config-custom:
+ specifier: workspace:*
+ version: link:../../packages/eslint-config-custom
+ postcss:
+ specifier: 8.4.8
+ version: 8.4.8
+ prettier:
+ specifier: 2.5.1
+ version: 2.5.1
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.8
+ version: 0.2.8(prettier@2.5.1)
+ prop-types:
+ specifier: ^15.8.1
+ version: 15.8.1
+ react-is:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-native:
+ specifier: ^0.68.5
+ version: 0.68.5(@babel/core@7.17.5)(@babel/preset-env@7.16.11)(react@17.0.2)
+ sass:
+ specifier: 1.49.9
+ version: 1.49.9
+ tailwindcss:
+ specifier: 3.0.23
+ version: 3.0.23(autoprefixer@10.4.2)(postcss@8.4.8)
+ ts-config-single-spa:
+ specifier: 2.0.1
+ version: 2.0.1
+ typescript:
+ specifier: 4.6.2
+ version: 4.6.2
+ vite:
+ specifier: ^4.3.5
+ version: 4.3.5(@types/node@17.0.21)(sass@1.49.9)
packages:
- /@ampproject/remapping/2.2.1:
+ /@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
- /@aws-amplify/auth/4.4.4_react-native@0.68.7:
+ /@aws-amplify/auth@4.4.4(react-native@0.68.5):
resolution: {integrity: sha512-/iQB8teOXxb6XkOK2nPBxldU5YZjMLy6vTpihWMOPP96TWqldgnKSZykYtsrTb6uYK8iF1VWr7DI9OE7UpKONQ==}
dependencies:
- '@aws-amplify/cache': 4.0.37_react-native@0.68.7
- '@aws-amplify/core': 4.4.2_react-native@0.68.7
+ '@aws-amplify/cache': 4.0.37(react-native@0.68.5)
+ '@aws-amplify/core': 4.4.2(react-native@0.68.5)
amazon-cognito-identity-js: 5.2.8
crypto-js: 4.1.1
transitivePeerDependencies:
@@ -162,21 +181,21 @@ packages:
- react-native
dev: false
- /@aws-amplify/cache/4.0.37_react-native@0.68.7:
+ /@aws-amplify/cache@4.0.37(react-native@0.68.5):
resolution: {integrity: sha512-SlUYGVTCv848TAOVW+8PhMQKUaC6fAiflEqvW6LkXN0Etj1tetsUhXoSDFVevxkKQEXXouFrj9dSWnYE6SOIhA==}
dependencies:
- '@aws-amplify/core': 4.4.2_react-native@0.68.7
+ '@aws-amplify/core': 4.4.2(react-native@0.68.5)
transitivePeerDependencies:
- react-native
dev: false
- /@aws-amplify/core/4.4.2_react-native@0.68.7:
+ /@aws-amplify/core@4.4.2(react-native@0.68.5):
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_react-native@0.68.7
- '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.7
- '@aws-sdk/credential-provider-cognito-identity': 3.6.1_react-native@0.68.7
+ '@aws-sdk/client-cloudwatch-logs': 3.6.1(react-native@0.68.5)
+ '@aws-sdk/client-cognito-identity': 3.6.1(react-native@0.68.5)
+ '@aws-sdk/credential-provider-cognito-identity': 3.6.1(react-native@0.68.5)
'@aws-sdk/types': 3.6.1
'@aws-sdk/util-hex-encoding': 3.6.1
universal-cookie: 4.0.4
@@ -185,13 +204,13 @@ packages:
- react-native
dev: false
- /@aws-crypto/ie11-detection/1.0.0:
+ /@aws-crypto/ie11-detection@1.0.0:
resolution: {integrity: sha512-kCKVhCF1oDxFYgQrxXmIrS5oaWulkvRcPz+QBDMsUr2crbF4VGgGT6+uQhSwJFdUAQ2A//Vq+uT83eJrkzFgXA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-browser/1.2.2:
+ /@aws-crypto/sha256-browser@1.2.2:
resolution: {integrity: sha512-0tNR4kBtJp+9S0kis4+JLab3eg6QWuIeuPhzaYoYwNUXGBgsWIkktA2mnilet+EGWzf3n1zknJXC4X4DVyyXbg==}
dependencies:
'@aws-crypto/ie11-detection': 1.0.0
@@ -203,7 +222,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-js/1.0.0-alpha.0:
+ /@aws-crypto/sha256-js@1.0.0-alpha.0:
resolution: {integrity: sha512-GidX2lccEtHZw8mXDKJQj6tea7qh3pAnsNSp1eZNxsN4MMu2OvSraPSqiB1EihsQkZBMg0IiZPpZHoACUX/QMQ==}
dependencies:
'@aws-sdk/types': 1.0.0-rc.10
@@ -211,7 +230,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-js/1.2.2:
+ /@aws-crypto/sha256-js@1.2.2:
resolution: {integrity: sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g==}
dependencies:
'@aws-crypto/util': 1.2.2
@@ -219,13 +238,13 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/supports-web-crypto/1.0.0:
+ /@aws-crypto/supports-web-crypto@1.0.0:
resolution: {integrity: sha512-IHLfv+WmVH89EW4n6a5eE8/hUlz6qkWGMn/v4r5ZgzcXdTC5nolii2z3k46y01hWRiC2PPhOdeSLzMUCUMco7g==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-crypto/util/1.2.2:
+ /@aws-crypto/util@1.2.2:
resolution: {integrity: sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg==}
dependencies:
'@aws-sdk/types': 3.6.1
@@ -233,7 +252,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/abort-controller/3.6.1:
+ /@aws-sdk/abort-controller@3.6.1:
resolution: {integrity: sha512-X81XkxX/2Tvv9YNcEto/rcQzPIdKJHFSnl9hBl/qkSdCFV/GaQ2XNWfKm5qFXMLlZNFS0Fn5CnBJ83qnBm47vg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -241,7 +260,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/client-cloudwatch-logs/3.6.1_react-native@0.68.7:
+ /@aws-sdk/client-cloudwatch-logs@3.6.1(react-native@0.68.5):
resolution: {integrity: sha512-QOxIDnlVTpnwJ26Gap6RGz61cDLH6TKrIp30VqwdMeT1pCGy8mn9rWln6XA+ymkofHy/08RfpGp+VN4axwd4Lw==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -255,7 +274,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_react-native@0.68.7
+ '@aws-sdk/middleware-retry': 3.6.1(react-native@0.68.5)
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -280,7 +299,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/client-cognito-identity/3.6.1_react-native@0.68.7:
+ /@aws-sdk/client-cognito-identity@3.6.1(react-native@0.68.5):
resolution: {integrity: sha512-FMj2GR9R5oCKb3/NI16GIvWeHcE4uX42fBAaQKPbjg2gALFDx9CcJYsdOtDP37V89GtPyZilLv6GJxrwJKzYGg==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -294,7 +313,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_react-native@0.68.7
+ '@aws-sdk/middleware-retry': 3.6.1(react-native@0.68.5)
'@aws-sdk/middleware-serde': 3.6.1
'@aws-sdk/middleware-signing': 3.6.1
'@aws-sdk/middleware-stack': 3.6.1
@@ -319,7 +338,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/config-resolver/3.6.1:
+ /@aws-sdk/config-resolver@3.6.1:
resolution: {integrity: sha512-qjP1g3jLIm+XvOIJ4J7VmZRi87vsDmTRzIFePVeG+EFWwYQLxQjTGMdIj3yKTh1WuZ0HByf47mGcpiS4HZLm1Q==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -328,11 +347,11 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-cognito-identity/3.6.1_react-native@0.68.7:
+ /@aws-sdk/credential-provider-cognito-identity@3.6.1(react-native@0.68.5):
resolution: {integrity: sha512-uJ9q+yq+Dhdo32gcv0p/AT7sKSAUH0y4ts9XRK/vx0dW9Q3XJy99mOJlq/6fkh4LfWeavJJlaCo9lSHNMWXx4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@aws-sdk/client-cognito-identity': 3.6.1_react-native@0.68.7
+ '@aws-sdk/client-cognito-identity': 3.6.1(react-native@0.68.5)
'@aws-sdk/property-provider': 3.6.1
'@aws-sdk/types': 3.6.1
tslib: 1.14.1
@@ -340,7 +359,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/credential-provider-env/3.6.1:
+ /@aws-sdk/credential-provider-env@3.6.1:
resolution: {integrity: sha512-coeFf/HnhpGidcAN1i1NuFgyFB2M6DeN1zNVy4f6s4mAh96ftr9DgWM1CcE3C+cLHEdpNqleVgC/2VQpyzOBLQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -349,7 +368,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-imds/3.6.1:
+ /@aws-sdk/credential-provider-imds@3.6.1:
resolution: {integrity: sha512-bf4LMI418OYcQbyLZRAW8Q5AYM2IKrNqOnIcfrFn2f17ulG7TzoWW3WN/kMOw4TC9+y+vIlCWOv87GxU1yP0Bg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -358,7 +377,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-ini/3.6.1:
+ /@aws-sdk/credential-provider-ini@3.6.1:
resolution: {integrity: sha512-3jguW6+ttRNddRZvbrs1yb3F1jrUbqyv0UfRoHuOGthjTt+L9sDpJaJGugYnT3bS9WBu1NydLVE2kDV++mJGVw==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -368,7 +387,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-node/3.6.1:
+ /@aws-sdk/credential-provider-node@3.6.1:
resolution: {integrity: sha512-VAHOcsqkPrF1k/fA62pv9c75lUWe5bHpcbFX83C3EUPd2FXV10Lfkv6bdWhyZPQy0k8T+9/yikHH3c7ZQeFE5A==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -382,7 +401,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-process/3.6.1:
+ /@aws-sdk/credential-provider-process@3.6.1:
resolution: {integrity: sha512-d0/TpMoEV4qMYkdpyyjU2Otse9X2jC1DuxWajHOWZYEw8oejMvXYTZ10hNaXZvAcNM9q214rp+k4mkt6gIcI6g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -393,7 +412,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/fetch-http-handler/3.6.1:
+ /@aws-sdk/fetch-http-handler@3.6.1:
resolution: {integrity: sha512-N8l6ZbwhINuWG5hsl625lmIQmVjzsqRPmlgh061jm5D90IhsM5/3A3wUxpB/k0av1dmuMRw/m0YtBU5w4LOwvw==}
dependencies:
'@aws-sdk/protocol-http': 3.6.1
@@ -403,7 +422,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/hash-node/3.6.1:
+ /@aws-sdk/hash-node@3.6.1:
resolution: {integrity: sha512-iKEpzpyaG9PYCnaOGwTIf0lffsF/TpsXrzAfnBlfeOU/3FbgniW2z/yq5xBbtMDtLobtOYC09kUFwDnDvuveSA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -412,21 +431,21 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/invalid-dependency/3.6.1:
+ /@aws-sdk/invalid-dependency@3.6.1:
resolution: {integrity: sha512-d0RLqK7yeDCZJKopnGmGXo2rYkQNE7sGKVmBHQD1j1kKZ9lWwRoJeWqo834JNPZzY5XRvZG5SuIjJ1kFy8LpyQ==}
dependencies:
'@aws-sdk/types': 3.6.1
tslib: 1.14.1
dev: false
- /@aws-sdk/is-array-buffer/3.6.1:
+ /@aws-sdk/is-array-buffer@3.6.1:
resolution: {integrity: sha512-qm2iDJmCrxlQE2dsFG+TujPe7jw4DF+4RTrsFMhk/e3lOl3MAzQ6Fc2kXtgeUcVrZVFTL8fQvXE1ByYyI6WbCw==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-content-length/3.6.1:
+ /@aws-sdk/middleware-content-length@3.6.1:
resolution: {integrity: sha512-QRcocG9f5YjYzbjs2HjKla6ZIjvx8Y8tm1ZSFOPey81m18CLif1O7M3AtJXvxn+0zeSck9StFdhz5gfjVNYtDg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -435,7 +454,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-host-header/3.6.1:
+ /@aws-sdk/middleware-host-header@3.6.1:
resolution: {integrity: sha512-nwq8R2fGBRZQE0Fr/jiOgqfppfiTQCUoD8hyX3qSS7Qc2uqpsDOt2TnnoZl56mpQYkF/344IvMAkp+ew6wR73w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -444,7 +463,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-logger/3.6.1:
+ /@aws-sdk/middleware-logger@3.6.1:
resolution: {integrity: sha512-zxaSLpwKlja7JvK20UsDTxPqBZUo3rbDA1uv3VWwpxzOrEWSlVZYx/KLuyGWGkx9V71ZEkf6oOWWJIstS0wyQQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -452,21 +471,21 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-retry/3.6.1_react-native@0.68.7:
+ /@aws-sdk/middleware-retry@3.6.1(react-native@0.68.5):
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.8.0_react-native@0.68.7
+ react-native-get-random-values: 1.8.0(react-native@0.68.5)
tslib: 1.14.1
uuid: 3.4.0
transitivePeerDependencies:
- react-native
dev: false
- /@aws-sdk/middleware-serde/3.6.1:
+ /@aws-sdk/middleware-serde@3.6.1:
resolution: {integrity: sha512-EdQCFZRERfP3uDuWcPNuaa2WUR3qL1WFDXafhcx+7ywQxagdYqBUWKFJlLYi6njbkOKXFM+eHBzoXGF0OV3MJA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -474,7 +493,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-signing/3.6.1:
+ /@aws-sdk/middleware-signing@3.6.1:
resolution: {integrity: sha512-1woKq+1sU3eausdl8BNdAMRZMkSYuy4mxhLsF0/qAUuLwo1eJLLUCOQp477tICawgu4O4q2OAyUHk7wMqYnQCg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -484,14 +503,14 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-stack/3.6.1:
+ /@aws-sdk/middleware-stack@3.6.1:
resolution: {integrity: sha512-EPsIxMi8LtCt7YwTFpWGlVGYJc0q4kwFbOssY02qfqdCnyqi2y5wo089dH7OdxUooQ0D7CPsXM1zTTuzvm+9Fw==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-user-agent/3.6.1:
+ /@aws-sdk/middleware-user-agent@3.6.1:
resolution: {integrity: sha512-YvXvwllNDVvxQ30vIqLsx+P6jjnfFEQUmhlv64n98gOme6h2BqoyQDcC3yHRGctuxRZEsR7W/H1ASTKC+iabbQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -500,7 +519,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/node-config-provider/3.6.1:
+ /@aws-sdk/node-config-provider@3.6.1:
resolution: {integrity: sha512-x2Z7lm0ZhHYqMybvkaI5hDKfBkaLaXhTDfgrLl9TmBZ3QHO4fIHgeL82VZ90Paol+OS+jdq2AheLmzbSxv3HrA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -510,7 +529,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/node-http-handler/3.6.1:
+ /@aws-sdk/node-http-handler@3.6.1:
resolution: {integrity: sha512-6XSaoqbm9ZF6T4UdBCcs/Gn2XclwBotkdjj46AxO+9vRAgZDP+lH/8WwZsvfqJhhRhS0qxWrks98WGJwmaTG8g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -521,7 +540,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/property-provider/3.6.1:
+ /@aws-sdk/property-provider@3.6.1:
resolution: {integrity: sha512-2gR2DzDySXKFoj9iXLm1TZBVSvFIikEPJsbRmAZx5RBY+tp1IXWqZM6PESjaLdLg/ZtR0QhW2ZcRn0fyq2JfnQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -529,7 +548,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/protocol-http/3.6.1:
+ /@aws-sdk/protocol-http@3.6.1:
resolution: {integrity: sha512-WkQz7ncVYTLvCidDfXWouDzqxgSNPZDz3Bql+7VhZeITnzAEcr4hNMyEqMAVYBVugGmkG2W6YiUqNNs1goOcDA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -537,7 +556,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/querystring-builder/3.6.1:
+ /@aws-sdk/querystring-builder@3.6.1:
resolution: {integrity: sha512-ESe255Yl6vB1AMNqaGSQow3TBYYnpw0AFjE40q2VyiNrkbaqKmW2EzjeCy3wEmB1IfJDHy3O12ZOMUMOnjFT8g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -546,7 +565,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/querystring-parser/3.6.1:
+ /@aws-sdk/querystring-parser@3.6.1:
resolution: {integrity: sha512-hh6dhqamKrWWaDSuO2YULci0RGwJWygoy8hpCRxs/FpzzHIcbm6Cl6Jhrn5eKBzOBv+PhCcYwbfad0kIZZovcQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -554,19 +573,19 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/service-error-classification/3.6.1:
+ /@aws-sdk/service-error-classification@3.6.1:
resolution: {integrity: sha512-kZ7ZhbrN1f+vrSRkTJvXsu7BlOyZgym058nPA745+1RZ1Rtv4Ax8oknf2RvJyj/1qRUi8LBaAREjzQ3C8tmLBA==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/shared-ini-file-loader/3.6.1:
+ /@aws-sdk/shared-ini-file-loader@3.6.1:
resolution: {integrity: sha512-BnLHtsNLOoow6rPV+QVi6jnovU5g1m0YzoUG0BQYZ1ALyVlWVr0VvlUX30gMDfdYoPMp+DHvF8GXdMuGINq6kQ==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/signature-v4/3.6.1:
+ /@aws-sdk/signature-v4@3.6.1:
resolution: {integrity: sha512-EAR0qGVL4AgzodZv4t+BSuBfyOXhTNxDxom50IFI1MqidR9vI6avNZKcPHhgXbm7XVcsDGThZKbzQ2q7MZ2NTA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -577,7 +596,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/smithy-client/3.6.1:
+ /@aws-sdk/smithy-client@3.6.1:
resolution: {integrity: sha512-AVpRK4/iUxNeDdAm8UqP0ZgtgJMQeWcagTylijwelhWXyXzHUReY1sgILsWcdWnoy6gq845W7K2VBhBleni8+w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -586,17 +605,17 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/types/1.0.0-rc.10:
+ /@aws-sdk/types@1.0.0-rc.10:
resolution: {integrity: sha512-9gwhYnkTNuYZ+etCtM4T8gjpZ0SWSXbzQxY34UjSS+dt3C/UnbX0J22tMahp/9Z1yCa9pihtXrkD+nO2xn7nVQ==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/types/3.6.1:
+ /@aws-sdk/types@3.6.1:
resolution: {integrity: sha512-4Dx3eRTrUHLxhFdLJL8zdNGzVsJfAxtxPYYGmIddUkO2Gj3WA1TGjdfG4XN/ClI6e1XonCHafQX3UYO/mgnH3g==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/url-parser-native/3.6.1:
+ /@aws-sdk/url-parser-native@3.6.1:
resolution: {integrity: sha512-3O+ktsrJoE8YQCho9L41YXO8EWILXrSeES7amUaV3mgIV5w4S3SB/r4RkmylpqRpQF7Ry8LFiAnMqH1wa4WBPA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -606,7 +625,7 @@ packages:
url: 0.11.0
dev: false
- /@aws-sdk/url-parser/3.6.1:
+ /@aws-sdk/url-parser@3.6.1:
resolution: {integrity: sha512-pWFIePDx0PMCleQRsQDWoDl17YiijOLj0ZobN39rQt+wv5PhLSZDz9PgJsqS48nZ6hqsKgipRcjiBMhn5NtFcQ==}
dependencies:
'@aws-sdk/querystring-parser': 3.6.1
@@ -614,13 +633,13 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-base64-browser/3.6.1:
+ /@aws-sdk/util-base64-browser@3.6.1:
resolution: {integrity: sha512-+DHAIgt0AFARDVC7J0Z9FkSmJhBMlkYdOPeAAgO0WaQoKj7rtsLQJ7P3v3aS1paKN5/sk5xNY7ziVB6uHtOvHA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-base64-node/3.6.1:
+ /@aws-sdk/util-base64-node@3.6.1:
resolution: {integrity: sha512-oiqzpsvtTSS92+cL3ykhGd7t3qBJKeHvrgOwUyEf1wFWHQ2DPJR+dIMy5rMFRXWLKCl3w7IddY2rJCkLYMjaqQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -628,20 +647,20 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-body-length-browser/3.6.1:
+ /@aws-sdk/util-body-length-browser@3.6.1:
resolution: {integrity: sha512-IdWwE3rm/CFDk2F+IwTZOFTnnNW5SB8y1lWiQ54cfc7y03hO6jmXNnpZGZ5goHhT+vf1oheNQt1J47m0pM/Irw==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-body-length-node/3.6.1:
+ /@aws-sdk/util-body-length-node@3.6.1:
resolution: {integrity: sha512-CUG3gc18bSOsqViQhB3M4AlLpAWV47RE6yWJ6rLD0J6/rSuzbwbjzxM39q0YTAVuSo/ivdbij+G9c3QCirC+QQ==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-buffer-from/3.6.1:
+ /@aws-sdk/util-buffer-from@3.6.1:
resolution: {integrity: sha512-OGUh2B5NY4h7iRabqeZ+EgsrzE1LUmNFzMyhoZv0tO4NExyfQjxIYXLQQvydeOq9DJUbCw+yrRZrj8vXNDQG+g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -649,28 +668,28 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-hex-encoding/3.6.1:
+ /@aws-sdk/util-hex-encoding@3.6.1:
resolution: {integrity: sha512-pzsGOHtU2eGca4NJgFg94lLaeXDOg8pcS9sVt4f9LmtUGbrqRveeyBv0XlkHeZW2n0IZBssPHipVYQFlk7iaRA==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-locate-window/3.310.0:
+ /@aws-sdk/util-locate-window@3.310.0:
resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.5.0
dev: false
- /@aws-sdk/util-uri-escape/3.6.1:
+ /@aws-sdk/util-uri-escape@3.6.1:
resolution: {integrity: sha512-tgABiT71r0ScRJZ1pMX0xO0QPMMiISCtumph50IU5VDyZWYgeIxqkMhIcrL1lX0QbNCMgX0n6rZxGrrbjDNavA==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-user-agent-browser/3.6.1:
+ /@aws-sdk/util-user-agent-browser@3.6.1:
resolution: {integrity: sha512-KhJ4VED4QpuBVPXoTjb5LqspX1xHWJTuL8hbPrKfxj+cAaRRW2CNEe7PPy2CfuHtPzP3dU3urtGTachbwNb0jg==}
dependencies:
'@aws-sdk/types': 3.6.1
@@ -678,7 +697,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-user-agent-node/3.6.1:
+ /@aws-sdk/util-user-agent-node@3.6.1:
resolution: {integrity: sha512-PWwL5EDRwhkXX40m5jjgttlBmLA7vDhHBen1Jcle0RPIDFRVPSE7GgvLF3y4r3SNH0WD6hxqadT50bHQynXW6w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -687,19 +706,19 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-browser/1.0.0-rc.8:
+ /@aws-sdk/util-utf8-browser@1.0.0-rc.8:
resolution: {integrity: sha512-clncPMJ23rxCIkZ9LoUC8SowwZGxWyN2TwRb0XvW/Cv9EavkRgRCOrCpneGyC326lqtMKx36onnpaSRHxErUYw==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-browser/3.6.1:
+ /@aws-sdk/util-utf8-browser@3.6.1:
resolution: {integrity: sha512-gZPySY6JU5gswnw3nGOEHl3tYE7vPKvtXGYoS2NRabfDKRejFvu+4/nNW6SSpoOxk6LSXsrWB39NO51k+G4PVA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-node/3.6.1:
+ /@aws-sdk/util-utf8-node@3.6.1:
resolution: {integrity: sha512-4s0vYfMUn74XLn13rUUhNsmuPMh0j1d4rF58wXtjlVUU78THxonnN8mbCLC48fI3fKDHTmDDkeEqy7+IWP9VyA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -707,45 +726,62 @@ packages:
tslib: 1.14.1
dev: false
- /@babel/code-frame/7.12.11:
- resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
- dependencies:
- '@babel/highlight': 7.18.6
- dev: true
-
- /@babel/code-frame/7.21.4:
+ /@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.21.7:
+ /@babel/compat-data@7.21.7:
resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.17.5:
+ /@babel/core@7.17.5:
resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.21.4
'@babel/generator': 7.21.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helpers': 7.21.5
+ '@babel/parser': 7.21.8
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
+ '@babel/types': 7.21.5
+ convert-source-map: 1.9.0
+ debug: 4.3.4(supports-color@5.5.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/core@7.21.8:
+ resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
'@babel/helper-module-transforms': 7.21.5
'@babel/helpers': 7.21.5
'@babel/parser': 7.21.8
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
convert-source-map: 1.9.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/eslint-parser/7.17.0_@babel+core@7.17.5+eslint@8.10.0:
+ /@babel/eslint-parser@7.17.0(@babel/core@7.17.5)(eslint@8.10.0):
resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
@@ -759,7 +795,7 @@ packages:
semver: 6.3.0
dev: true
- /@babel/generator/7.21.5:
+ /@babel/generator@7.21.5:
resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -768,20 +804,19 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-builder-binary-assignment-operator-visitor/7.21.5:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-compilation-targets/7.21.5_@babel+core@7.17.5:
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -794,7 +829,21 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.17.5:
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.7
+ '@babel/core': 7.21.8
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.17.5):
resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -812,9 +861,8 @@ packages:
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.17.5:
+ /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.17.5):
resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -824,55 +872,52 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.2
semver: 6.3.0
- dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.17.5:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.17.5):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.2
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-environment-visitor/7.21.5:
+ /@babel/helper-environment-visitor@7.21.5:
resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
'@babel/types': 7.21.5
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-member-expression-to-functions/7.21.5:
+ /@babel/helper-member-expression-to-functions@7.21.5:
resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-module-imports/7.21.4:
+ /@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-module-transforms/7.21.5:
+ /@babel/helper-module-transforms@7.21.5:
resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -882,23 +927,22 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-plugin-utils/7.21.5:
+ /@babel/helper-plugin-utils@7.21.5:
resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.17.5:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -911,9 +955,8 @@ packages:
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-replace-supers/7.21.5:
+ /@babel/helper-replace-supers@7.21.5:
resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -921,66 +964,63 @@ packages:
'@babel/helper-member-expression-to-functions': 7.21.5
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-simple-access/7.21.5:
+ /@babel/helper-simple-access@7.21.5:
resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-split-export-declaration/7.18.6:
+ /@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.21.5
- /@babel/helper-string-parser/7.21.5:
+ /@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helpers/7.21.5:
+ /@babel/helpers@7.21.5:
resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -988,12 +1028,14 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.21.8:
+ /@babel/parser@7.21.8:
resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.21.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1001,9 +1043,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1012,10 +1053,9 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.17.5)
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1024,56 +1064,37 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
- 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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-replace-supers': 7.21.5
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.17.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1081,10 +1102,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.17.5:
+ /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.17.5):
resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1092,10 +1112,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.17.5)
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1103,10 +1122,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1114,10 +1132,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1125,10 +1142,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.5)
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1136,10 +1152,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1147,10 +1162,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.5)
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1158,13 +1172,12 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1172,10 +1185,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1184,23 +1196,21 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.5)
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1208,43 +1218,39 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1252,28 +1258,16 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
-
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
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.21.5
- dev: true
- /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1281,37 +1275,33 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-flow/7.21.4_@babel+core@7.17.5:
- resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
+ /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.17.5):
+ resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.17.5):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1319,63 +1309,66 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
+
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.8):
+ resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
- /@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.17.5):
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.21.5
- 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.17.5):
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.21.5
- 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.17.5):
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.21.5
- 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.17.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
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.21.5
- 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.17.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1383,9 +1376,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1393,9 +1385,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.17.5):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1403,9 +1394,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1413,9 +1403,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1424,12 +1413,11 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1437,9 +1425,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1447,9 +1434,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1457,7 +1443,7 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -1467,9 +1453,8 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1478,9 +1463,8 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/template': 7.20.7
- dev: true
- /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1488,20 +1472,18 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1509,9 +1491,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1520,9 +1501,8 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1530,10 +1510,9 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.17.5)
- /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1541,21 +1520,19 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1563,9 +1540,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1573,9 +1549,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.17.5):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1586,9 +1561,8 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1600,9 +1574,8 @@ packages:
'@babel/helper-simple-access': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.17.5):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1615,9 +1588,8 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1628,20 +1600,18 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.17.5):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1649,9 +1619,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-object-assign/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-object-assign@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-mQisZ3JfqWh2gVXvfqYCAAyRs6+7oev+myBsTwW5RnPhYXOTuCEw2oe3YgxlXMViXUS53lG8koulI7mJ+8JE+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1659,9 +1628,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1672,9 +1640,8 @@ packages:
'@babel/helper-replace-supers': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1682,9 +1649,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1692,9 +1658,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1702,19 +1667,28 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.17.5)
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.8)
dev: true
- /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1723,7 +1697,17 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.8):
+ resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.17.5):
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1732,8 +1716,18 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- /@babel/plugin-transform-react-jsx/7.21.5_@babel+core@7.17.5:
- resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
+ /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx@7.20.7(@babel/core@7.17.5):
+ resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1742,11 +1736,24 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.17.5)
+ '@babel/types': 7.21.5
+
+ /@babel/plugin-transform-react-jsx@7.20.7(@babel/core@7.21.8):
+ resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
'@babel/types': 7.21.5
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1757,7 +1764,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1766,9 +1773,8 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
regenerator-transform: 0.15.1
- dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1776,9 +1782,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-runtime@7.17.0(@babel/core@7.17.5):
resolution: {integrity: sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1787,15 +1792,14 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.5)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1803,9 +1807,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1814,9 +1817,8 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1824,9 +1826,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1834,9 +1835,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1844,9 +1844,8 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1854,14 +1853,13 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1869,20 +1867,18 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/preset-env/7.16.11_@babel+core@7.17.5:
+ /@babel/preset-env@7.16.11(@babel/core@7.17.5):
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1890,84 +1886,83 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@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.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.17.5
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.17.5
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-escapes': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.17.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@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.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.17.5)
'@babel/types': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.5)
core-js-compat: 3.30.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/preset-flow/7.21.4_@babel+core@7.17.5:
+ /@babel/preset-flow@7.21.4(@babel/core@7.17.5):
resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1976,23 +1971,21 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.17.5
- dev: true
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.17.5)
- /@babel/preset-modules/0.1.5_@babel+core@7.17.5:
+ /@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.21.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.17.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.5)
'@babel/types': 7.21.5
esutils: 2.0.3
- dev: true
- /@babel/preset-react/7.16.7_@babel+core@7.17.5:
+ /@babel/preset-react@7.16.7(@babel/core@7.17.5):
resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2001,13 +1994,13 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.17.5
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.17.5)
dev: true
- /@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
+ /@babel/preset-typescript@7.16.7(@babel/core@7.17.5):
resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2016,12 +2009,11 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.17.5
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/register/7.21.0_@babel+core@7.17.5:
+ /@babel/register@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2033,33 +2025,23 @@ packages:
make-dir: 2.1.0
pirates: 4.0.5
source-map-support: 0.5.21
- dev: true
- /@babel/regjsgen/0.8.0:
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- dev: true
-
- /@babel/runtime-corejs3/7.21.5:
- resolution: {integrity: sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- core-js-pure: 3.30.1
- regenerator-runtime: 0.13.11
- dev: true
- /@babel/runtime/7.17.2:
+ /@babel/runtime@7.17.2:
resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/runtime/7.21.5:
+ /@babel/runtime@7.21.5:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2067,24 +2049,7 @@ packages:
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- /@babel/traverse/7.21.5:
- resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.21.5
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.21.8
- '@babel/types': 7.21.5
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/traverse/7.21.5_supports-color@5.5.0:
+ /@babel/traverse@7.21.5(supports-color@5.5.0):
resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2096,13 +2061,12 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- debug: 4.3.4_supports-color@5.5.0
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/types/7.21.5:
+ /@babel/types@7.21.5:
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2110,248 +2074,224 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@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=, tarball: wasedatime.core.assets.locales.en/-/wasedatime.core.assets.locales.en-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/is-prop-valid@0.8.8:
+ resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- dev: false
+ '@emotion/memoize': 0.7.4
- /@bit/wasedatime.core.assets.locales.ja/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-q3GVnjO0kmRflqwouUeS5dFCHHU=, tarball: wasedatime.core.assets.locales.ja/-/wasedatime.core.assets.locales.ja-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
- dev: false
+ /@emotion/memoize@0.7.4:
+ resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- /@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
+ /@emotion/stylis@0.8.5:
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
- /@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
+ /@emotion/unitless@0.7.5:
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
- /@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
+ /@esbuild/android-arm64@0.17.18:
+ resolution: {integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@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
+ /@esbuild/android-arm@0.17.18:
+ resolution: {integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-Bp87IFStXHsG1iyN/PONMyD5IyM=, tarball: wasedatime.core.ts.constants.langs/-/wasedatime.core.ts.constants.langs-0.0.5.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
- dev: false
+ /@esbuild/android-x64@0.17.18:
+ resolution: {integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.styles.overlay/0.0.1_af520ff3c650e6a6d05e9a79e9549b09:
- resolution: {integrity: sha1-eXYMnbkdhymg3EBNS9RBSuz1Wbk=, tarball: wasedatime.core.ts.styles.overlay/-/wasedatime.core.ts.styles.overlay-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_af520ff3c650e6a6d05e9a79e9549b09
- transitivePeerDependencies:
- - react-is
- dev: false
+ /@esbuild/darwin-arm64@0.17.18:
+ resolution: {integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.styles.wrapper/0.0.1_af520ff3c650e6a6d05e9a79e9549b09:
- resolution: {integrity: sha1-cszBxS3eDqwoxe9Tl162+7hc9Og=, tarball: wasedatime.core.ts.styles.wrapper/-/wasedatime.core.ts.styles.wrapper-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_af520ff3c650e6a6d05e9a79e9549b09
- transitivePeerDependencies:
- - react-is
- dev: false
+ /@esbuild/darwin-x64@0.17.18:
+ resolution: {integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.ui.header/0.2.21_85437955bddca72fa9ee81a991b14a9d:
- resolution: {integrity: sha1-G11o7+B0VeSU/zNXhfpuxw2gG3A=, tarball: wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.21.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@bit/wasedatime.core.ts.ui.language-menu': 0.1.6_d0856df9c36df34128afc1855d88d727
- '@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': 0.1.3_e772c680e5225e7694da1542f10ccf72
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_af520ff3c650e6a6d05e9a79e9549b09
- 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.11.1_react-dom@17.0.2+react@17.0.2
- transitivePeerDependencies:
- - '@fortawesome/fontawesome-svg-core'
- - '@types/react'
- - react-is
- dev: false
+ /@esbuild/freebsd-arm64@0.17.18:
+ resolution: {integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.ui.language-menu/0.1.6_d0856df9c36df34128afc1855d88d727:
- resolution: {integrity: sha1-2DVMCUn47JdgJXHQBIXv5GI6iUk=, tarball: wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.6.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_af520ff3c650e6a6d05e9a79e9549b09
- '@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_b8fdba992ce7d797017dc07106486496
- 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
+ /@esbuild/freebsd-x64@0.17.18:
+ resolution: {integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_af520ff3c650e6a6d05e9a79e9549b09:
- resolution: {integrity: sha1-44SvUvzJtH0xwoEOvbiIFMpiSfU=, tarball: wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.5.tgz}
- 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': 0.0.1_af520ff3c650e6a6d05e9a79e9549b09
- '@bit/wasedatime.core.ts.styles.wrapper': 0.0.1_af520ff3c650e6a6d05e9a79e9549b09
- '@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
+ /@esbuild/linux-arm64@0.17.18:
+ resolution: {integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-74P2D7rW83R16bst5QxwLAh4PKI=, tarball: wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.1.2.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
- dev: false
+ /@esbuild/linux-arm@0.17.18:
+ resolution: {integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_e772c680e5225e7694da1542f10ccf72:
- resolution: {integrity: sha1-YTDn/Cp/YgdPYdeR4APo2mVmyXo=, tarball: wasedatime.core.ts.ui.theme-toggle/-/wasedatime.core.ts.ui.theme-toggle-0.1.3.tgz}
- peerDependencies:
- 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
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- transitivePeerDependencies:
- - '@fortawesome/fontawesome-svg-core'
- dev: false
+ /@esbuild/linux-ia32@0.17.18:
+ resolution: {integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.utils.i18n/0.0.4_ec84e0e897a5e285e9ddba67b24ffe21:
- resolution: {integrity: sha1-Mi/S9B83NRoFmQTS6EgSF8Ymqlo=, tarball: wasedatime.core.ts.utils.i18n/-/wasedatime.core.ts.utils.i18n-0.0.4.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.assets.locales.en': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.assets.locales.ja': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.constants.langs': 0.0.5_react-dom@17.0.2+react@17.0.2
- i18next-browser-languagedetector: 6.1.8
- i18next-http-backend: 1.4.5
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-i18next: 11.15.6_ec84e0e897a5e285e9ddba67b24ffe21
- transitivePeerDependencies:
- - encoding
- - i18next
- - react-native
- dev: false
+ /@esbuild/linux-loong64@0.17.18:
+ resolution: {integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_af520ff3c650e6a6d05e9a79e9549b09:
- 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_af520ff3c650e6a6d05e9a79e9549b09
- transitivePeerDependencies:
- - react-is
- dev: false
+ /@esbuild/linux-mips64el@0.17.18:
+ resolution: {integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@emotion/hash/0.8.0:
- resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
- dev: false
+ /@esbuild/linux-ppc64@0.17.18:
+ resolution: {integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@emotion/is-prop-valid/0.8.8:
- resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
- dependencies:
- '@emotion/memoize': 0.7.4
- dev: false
+ /@esbuild/linux-riscv64@0.17.18:
+ resolution: {integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@emotion/memoize/0.7.4:
- resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- dev: false
+ /@esbuild/linux-s390x@0.17.18:
+ resolution: {integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@emotion/stylis/0.8.5:
- resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
- dev: false
+ /@esbuild/linux-x64@0.17.18:
+ resolution: {integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@emotion/unitless/0.7.5:
- resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
- dev: false
+ /@esbuild/netbsd-x64@0.17.18:
+ resolution: {integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.10.0:
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.10.0
- eslint-visitor-keys: 3.4.0
+ /@esbuild/openbsd-x64@0.17.18:
+ resolution: {integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@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.20.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
+ /@esbuild/sunos-x64@0.17.18:
+ resolution: {integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-arm64@0.17.18:
+ resolution: {integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-ia32@0.17.18:
+ resolution: {integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-x64@0.17.18:
+ resolution: {integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@eslint/eslintrc/1.4.1:
+ /@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
espree: 9.5.1
globals: 13.20.0
ignore: 5.2.4
@@ -2361,21 +2301,14 @@ packages:
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- dev: true
-
- /@fortawesome/fontawesome-common-types/0.2.36:
- resolution: {integrity: sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg==}
- engines: {node: '>=6'}
- requiresBuild: true
- dev: false
- /@fortawesome/fontawesome-common-types/0.3.0:
+ /@fortawesome/fontawesome-common-types@0.3.0:
resolution: {integrity: sha512-CA3MAZBTxVsF6SkfkHXDerkhcQs0QPofy43eFdbWJJkZiq3SfiaH1msOkac59rQaqto5EqWnASboY1dBuKen5w==}
engines: {node: '>=6'}
deprecated: Please upgrade to 6.1.0. https://fontawesome.com/docs/changelog/
requiresBuild: true
- /@fortawesome/fontawesome-svg-core/1.3.0:
+ /@fortawesome/fontawesome-svg-core@1.3.0:
resolution: {integrity: sha512-UIL6crBWhjTNQcONt96ExjUnKt1D68foe3xjEensLDclqQ6YagwCRYVQdrp/hW0ALRp/5Fv/VKw+MqTUWYYvPg==}
engines: {node: '>=6'}
deprecated: Please upgrade to 6.1.0. https://fontawesome.com/docs/changelog/
@@ -2383,15 +2316,7 @@ packages:
dependencies:
'@fortawesome/fontawesome-common-types': 0.3.0
- /@fortawesome/free-solid-svg-icons/5.15.4:
- resolution: {integrity: sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==}
- engines: {node: '>=6'}
- requiresBuild: true
- dependencies:
- '@fortawesome/fontawesome-common-types': 0.2.36
- dev: false
-
- /@fortawesome/free-solid-svg-icons/6.0.0:
+ /@fortawesome/free-solid-svg-icons@6.0.0:
resolution: {integrity: sha512-o4FZ1XbndcgeWNb8Wh0y+Hgf73CjmyOQowUSaqQCtgIIdS+XliSBSOwCl330wER+I6CGYE96hT27bHBPmzX2Gg==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2399,7 +2324,7 @@ packages:
'@fortawesome/fontawesome-common-types': 0.3.0
dev: false
- /@fortawesome/react-fontawesome/0.1.17_4bd8f766d7cd56ce339ee1b51a510026:
+ /@fortawesome/react-fontawesome@0.1.17(@fortawesome/fontawesome-svg-core@1.3.0)(react@17.0.2):
resolution: {integrity: sha512-dX43Z5IvMaW7fwzU8farosYjKNGfRb2HB/DgjVBHeJZ/NSnuuaujPPx0YOdcAq+n3mqn70tyCde2HM1mqbhiuw==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ~1 || >=1.3.0-beta1
@@ -2410,43 +2335,28 @@ packages:
react: 17.0.2
dev: false
- /@hapi/hoek/9.3.0:
+ /@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- dev: true
- /@hapi/topo/5.1.0:
+ /@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
- dev: true
-
- /@humanwhocodes/config-array/0.5.0:
- resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
- engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@humanwhocodes/config-array/0.9.5:
+ /@humanwhocodes/config-array@0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- dev: true
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- dev: true
- /@hypnosphi/create-react-context/0.3.1_prop-types@15.8.1+react@17.0.2:
+ /@hypnosphi/create-react-context@0.3.1(prop-types@15.8.1)(react@17.0.2):
resolution: {integrity: sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==}
peerDependencies:
prop-types: ^15.0.0
@@ -2458,14 +2368,13 @@ packages:
warning: 4.0.3
dev: false
- /@jest/create-cache-key-function/27.5.1:
+ /@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
- /@jest/types/26.6.2:
+ /@jest/types@26.6.2:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
dependencies:
@@ -2474,9 +2383,8 @@ packages:
'@types/node': 17.0.21
'@types/yargs': 15.0.15
chalk: 4.1.2
- dev: true
- /@jest/types/27.5.1:
+ /@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:
@@ -2485,9 +2393,8 @@ packages:
'@types/node': 17.0.21
'@types/yargs': 16.0.5
chalk: 4.1.2
- dev: true
- /@jridgewell/gen-mapping/0.3.3:
+ /@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2495,161 +2402,55 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.18
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- /@jridgewell/sourcemap-codec/1.4.15:
+ /@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping/0.3.18:
+ /@jridgewell/trace-mapping@0.3.18:
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@material-ui/core/4.12.4_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@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.3_react-dom@17.0.2+react@17.0.2
- '@types/react': 17.0.39
- '@types/react-transition-group': 4.4.6
- clsx: 1.2.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.5_react-dom@17.0.2+react@17.0.2
- dev: false
-
- /@material-ui/styles/4.11.5_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
- '@types/react': 17.0.39
- clsx: 1.2.1
- csstype: 2.6.21
- hoist-non-react-statics: 3.3.2
- jss: 10.10.0
- jss-plugin-camel-case: 10.10.0
- jss-plugin-default-unit: 10.10.0
- jss-plugin-global: 10.10.0
- jss-plugin-nested: 10.10.0
- jss-plugin-props-sort: 10.10.0
- jss-plugin-rule-value-function: 10.10.0
- jss-plugin-vendor-prefixer: 10.10.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_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
- engines: {node: '>=8.0.0'}
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
- '@types/react': 17.0.39
- csstype: 2.6.21
- 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:
- resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==}
- peerDependencies:
- '@types/react': '*'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@types/react': 17.0.39
- dev: false
-
- /@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.21.5
- 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
-
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@popperjs/core/2.11.7:
- resolution: {integrity: sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==}
+ /@popperjs/core@2.11.6:
+ resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==}
- /@react-native-community/cli-debugger-ui/7.0.3:
+ /@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
+ transitivePeerDependencies:
+ - supports-color
- /@react-native-community/cli-hermes/6.3.1:
+ /@react-native-community/cli-hermes@6.3.1:
resolution: {integrity: sha512-+tMJsEsVX0WyylnoFE7uPoMu1aTAChaA62Y32dwWgAa1Fx6YrpPkC9d6wvYSBe9md/4mTtRher+ooBcuov6JHw==}
dependencies:
'@react-native-community/cli-platform-android': 6.3.1
@@ -2659,9 +2460,8 @@ packages:
ip: 1.1.8
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-android/6.3.1:
+ /@react-native-community/cli-platform-android@6.3.1:
resolution: {integrity: sha512-n5A64RI1ty4ScZCel/3JYY9Anl857dPsUZ86Dwc1GxrbflSB5/+hcCMg5DCNcnJRa4Hdv95SAR5pMmtAjOXApA==}
dependencies:
'@react-native-community/cli-tools': 6.2.1
@@ -2676,9 +2476,8 @@ packages:
xmldoc: 1.3.0
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-android/7.0.1:
+ /@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
@@ -2693,9 +2492,8 @@ packages:
xmldoc: 1.3.0
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-ios/7.0.1:
+ /@react-native-community/cli-platform-ios@7.0.1:
resolution: {integrity: sha512-PLRIbzrCzSedmpjuFtQqcqUD45G8q7sEciI1lf5zUbVMXqjIBwJWS7iz8235PyWwj8J4MNHohLC+oyRueFtbGg==}
dependencies:
'@react-native-community/cli-tools': 7.0.1
@@ -2709,9 +2507,8 @@ packages:
xcode: 3.0.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-plugin-metro/7.0.4:
+ /@react-native-community/cli-plugin-metro@7.0.4(@babel/core@7.17.5):
resolution: {integrity: sha512-DEV9WwJ6mB8zWFvNe/Z/eGmtmQmsZcu9VIqjxT7e9xZr2csB9ZlOZiweAMFO5cuVWZZgfL+NYIaQiFi0E0DFXw==}
dependencies:
'@react-native-community/cli-server-api': 7.0.4
@@ -2720,18 +2517,18 @@ packages:
metro: 0.67.0
metro-config: 0.67.0
metro-core: 0.67.0
- metro-react-native-babel-transformer: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0(@babel/core@7.17.5)
metro-resolver: 0.67.0
metro-runtime: 0.67.0
readline: 1.3.0
transitivePeerDependencies:
+ - '@babel/core'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /@react-native-community/cli-server-api/7.0.4:
+ /@react-native-community/cli-server-api@7.0.4:
resolution: {integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==}
dependencies:
'@react-native-community/cli-debugger-ui': 7.0.3
@@ -2746,10 +2543,10 @@ packages:
transitivePeerDependencies:
- bufferutil
- encoding
+ - supports-color
- utf-8-validate
- dev: true
- /@react-native-community/cli-tools/6.2.1:
+ /@react-native-community/cli-tools@6.2.1:
resolution: {integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==}
dependencies:
appdirsjs: 1.2.7
@@ -2762,9 +2559,8 @@ packages:
shell-quote: 1.8.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-tools/7.0.1:
+ /@react-native-community/cli-tools@7.0.1:
resolution: {integrity: sha512-0xra4hKNA5PR2zYVXsDMNiXMGaDNoNRYMY6eTP2aVIxQbqIcVMDWSyCA8wMWX5iOpMWg0cZGaQ6a77f3Rlb34g==}
dependencies:
appdirsjs: 1.2.7
@@ -2778,15 +2574,13 @@ packages:
shell-quote: 1.8.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-types/6.0.0:
+ /@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.4_react-native@0.68.7:
+ /@react-native-community/cli@7.0.4(@babel/core@7.17.5)(react-native@0.68.5):
resolution: {integrity: sha512-W9nACtHWaLJZIP48cQmhQOnl5/7maoWE1Aji67MrLeIoB+ScNTJxaHfV4fMcklD6B6XEhaKokPACRZWm36zAog==}
engines: {node: '>=12'}
hasBin: true
@@ -2795,7 +2589,7 @@ packages:
dependencies:
'@react-native-community/cli-debugger-ui': 7.0.3
'@react-native-community/cli-hermes': 6.3.1
- '@react-native-community/cli-plugin-metro': 7.0.4
+ '@react-native-community/cli-plugin-metro': 7.0.4(@babel/core@7.17.5)
'@react-native-community/cli-server-api': 7.0.4
'@react-native-community/cli-tools': 6.2.1
'@react-native-community/cli-types': 6.0.0
@@ -2819,37 +2613,34 @@ packages:
ora: 3.4.0
pretty-format: 26.6.2
prompts: 2.4.2
- react-native: 0.68.7_24353ddb04343aa31089be039ffbe27f
+ react-native: 0.68.5(@babel/core@7.17.5)(@babel/preset-env@7.16.11)(react@17.0.2)
semver: 6.3.0
serve-static: 1.15.0
strip-ansi: 5.2.0
sudo-prompt: 9.2.1
wcwidth: 1.0.1
transitivePeerDependencies:
+ - '@babel/core'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /@react-native/assets/1.0.0:
+ /@react-native/assets@1.0.0:
resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
- dev: true
- /@react-native/normalize-color/2.0.0:
+ /@react-native/normalize-color@2.0.0:
resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==}
- dev: true
- /@react-native/polyfills/2.0.0:
+ /@react-native/polyfills@2.0.0:
resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==}
- dev: true
- /@remix-run/router/1.6.1:
- resolution: {integrity: sha512-YUkWj+xs0oOzBe74OgErsuR3wVn+efrFhXBWrit50kOiED+pvQe2r6MWY0iJMQU/mSVKxvNzL4ZaYvjdX+G7ZA==}
+ /@remix-run/router@1.3.0:
+ resolution: {integrity: sha512-nwQoYb3m4DDpHTeOwpJEuDt8lWVcujhYYSFGLluC+9es2PyLjm+jjq3IeRBQbwBtPLJE/lkuHuGHr8uQLgmJRA==}
engines: {node: '>=14'}
dev: false
- /@restart/context/2.1.4_react@17.0.2:
+ /@restart/context@2.1.4(react@17.0.2):
resolution: {integrity: sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==}
peerDependencies:
react: '>=16.3.2'
@@ -2857,7 +2648,7 @@ packages:
react: 17.0.2
dev: false
- /@restart/hooks/0.3.27_react@17.0.2:
+ /@restart/hooks@0.3.27(react@17.0.2):
resolution: {integrity: sha512-s984xV/EapUIfkjlf8wz9weP2O9TNKR96C68FfMEy2bE69+H4cNv3RD4Mf97lW7Htt7PjZrYTjSC8f3SB9VCXw==}
peerDependencies:
react: '>=16.8.0'
@@ -2866,7 +2657,7 @@ packages:
react: 17.0.2
dev: false
- /@restart/hooks/0.4.9_react@17.0.2:
+ /@restart/hooks@0.4.9(react@17.0.2):
resolution: {integrity: sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==}
peerDependencies:
react: '>=16.8.0'
@@ -2875,111 +2666,87 @@ packages:
react: 17.0.2
dev: false
- /@rollup/pluginutils/4.2.1:
+ /@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.2.0:
- resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
- /@sideway/address/4.1.4:
+ /@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
- dev: true
- /@sideway/formula/3.0.1:
+ /@sideway/formula@3.0.1:
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- dev: true
- /@sideway/pinpoint/2.0.0:
+ /@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: true
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: true
- /@types/cookie/0.3.3:
+ /@types/cookie@0.3.3:
resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
dev: false
- /@types/eslint-visitor-keys/1.0.0:
- resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
- dev: true
-
- /@types/graceful-fs/4.1.6:
+ /@types/graceful-fs@4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
'@types/node': 17.0.21
- dev: true
- /@types/hoist-non-react-statics/3.3.1:
+ /@types/hoist-non-react-statics@3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
dependencies:
'@types/react': 17.0.39
hoist-non-react-statics: 3.3.2
dev: false
- /@types/invariant/2.2.35:
+ /@types/invariant@2.2.35:
resolution: {integrity: sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==}
dev: false
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
- dev: true
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- dev: true
- /@types/istanbul-reports/3.0.1:
+ /@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: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
- /@types/node/17.0.21:
+ /@types/node@17.0.21:
resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==}
- dev: true
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/react-dom/17.0.13:
+ /@types/react-dom@17.0.13:
resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
dependencies:
'@types/react': 17.0.39
dev: false
- /@types/react-transition-group/4.4.6:
- resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==}
+ /@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
- /@types/react/17.0.39:
+ /@types/react@17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
dependencies:
'@types/prop-types': 15.7.5
@@ -2987,15 +2754,11 @@ packages:
csstype: 3.1.2
dev: false
- /@types/scheduler/0.16.3:
+ /@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
dev: false
- /@types/semver/7.3.13:
- resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
- dev: true
-
- /@types/styled-components/5.1.24:
+ /@types/styled-components@5.1.24:
resolution: {integrity: sha512-mz0fzq2nez+Lq5IuYammYwWgyLUE6OMAJTQL9D8hFLP4Pkh7gVYJii/VQWxq8/TK34g/OrkehXaFNdcEKcItug==}
dependencies:
'@types/hoist-non-react-statics': 3.3.1
@@ -3003,349 +2766,63 @@ packages:
csstype: 3.1.2
dev: false
- /@types/warning/3.0.0:
+ /@types/warning@3.0.0:
resolution: {integrity: sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==}
dev: false
- /@types/yargs-parser/21.0.0:
+ /@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
- dev: true
- /@types/yargs/15.0.15:
+ /@types/yargs@15.0.15:
resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
dependencies:
'@types/yargs-parser': 21.0.0
- dev: true
- /@types/yargs/16.0.5:
+ /@types/yargs@16.0.5:
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.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}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- 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
- debug: 4.3.4
- eslint: 8.10.0
- functional-red-black-tree: 1.0.1
- ignore: 5.2.4
- regexpp: 3.2.0
- semver: 7.5.0
- 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
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@typescript-eslint/experimental-utils/5.59.2_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-JLw2UImsjHDuVukpA8Nt+UK7JKE/LQAeV3tU5f7wJo2/NNYVwcakzkWjoYzu/2qzWY/Z9c7zojngNDfecNt92g==}
- 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.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.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==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- 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
- debug: 4.3.4
- eslint: 8.10.0
- typescript: 4.6.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/scope-manager/5.14.0:
- resolution: {integrity: sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==}
- 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
- dev: true
-
- /@typescript-eslint/scope-manager/5.59.2:
- resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- dev: true
-
- /@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/utils': 5.14.0_eslint@8.10.0+typescript@4.6.2
- debug: 4.3.4
- eslint: 8.10.0
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
- 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==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /@typescript-eslint/types/5.59.2:
- resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==}
- 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.3
- is-glob: 4.0.3
- lodash: 4.17.21
- semver: 7.5.0
- 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==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.14.0
- '@typescript-eslint/visitor-keys': 5.14.0
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/typescript-estree/5.59.2_typescript@4.6.2:
- resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
- 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==}
- 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
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@typescript-eslint/utils/5.59.2_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.10.0
- '@types/json-schema': 7.0.11
- '@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.59.2
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/typescript-estree': 5.59.2_typescript@4.6.2
- eslint: 8.10.0
- eslint-scope: 5.1.1
- semver: 7.5.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==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.14.0
- eslint-visitor-keys: 3.4.0
- dev: true
-
- /@typescript-eslint/visitor-keys/5.59.2:
- resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.2
- eslint-visitor-keys: 3.4.0
- dev: true
- /@vitejs/plugin-react-refresh/1.3.6:
- resolution: {integrity: sha512-iNR/UqhUOmFFxiezt0em9CgmiJBdWR+5jGxB2FihaoJfqGt76kiwaKoVOJVU5NYcDWMdN06LbyN2VIGIoYdsEA==}
+ /@vitejs/plugin-react@1.3.2:
+ resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
engines: {node: '>=12.0.0'}
- deprecated: This package has been deprecated in favor of @vitejs/plugin-react
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.17.5
+ '@babel/core': 7.21.8
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.8)
'@rollup/pluginutils': 4.2.1
- react-refresh: 0.10.0
+ react-refresh: 0.13.0
+ resolve: 1.22.2
transitivePeerDependencies:
- supports-color
- dev: false
+ dev: true
- /abort-controller/3.0.0:
+ /abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
- dev: true
- /absolute-path/0.0.0:
+ /absolute-path@0.0.0:
resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
- dev: true
- /accepts/1.3.8:
+ /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-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.8.2:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.2
- dev: true
- /acorn-node/1.8.2:
+ /acorn-node@1.8.2:
resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
dependencies:
acorn: 7.4.1
@@ -3353,47 +2830,36 @@ packages:
xtend: 4.0.2
dev: true
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: false
- /acorn/7.4.1:
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- dev: true
-
- /ajv/8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
- dev: true
- /amazon-cognito-identity-js/5.2.8:
+ /amazon-cognito-identity-js@5.2.8:
resolution: {integrity: sha512-ikHbIBtdJeXUeHIKFDF+qptRbTX81ZIe+ItvsgjcNXEKuW0ZgjnHw6tgPmOFOweQfUyzW+RpA+T3fG+YqOklbw==}
dependencies:
buffer: 4.9.2
@@ -3405,205 +2871,105 @@ packages:
- encoding
dev: false
- /anser/1.4.10:
+ /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-fragments/0.2.1:
+ /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: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
- dev: true
- /ansi-regex/3.0.1:
- resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
- engines: {node: '>=4'}
- dev: true
-
- /ansi-regex/4.1.1:
+ /ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
- dev: true
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- dev: true
-
- /ansi-styles/2.2.1:
- resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
- engines: {node: '>=0.10.0'}
- dev: true
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- dev: true
- /anymatch/3.1.3:
+ /anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- dev: true
- /appdirsjs/1.2.7:
+ /appdirsjs@1.2.7:
resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
- dev: true
- /arg/5.0.2:
+ /arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: true
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- dev: true
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
-
- /aria-query/4.2.2:
- resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
- engines: {node: '>=6.0'}
- dependencies:
- '@babel/runtime': 7.21.5
- '@babel/runtime-corejs3': 7.21.5
- dev: true
- /arr-diff/4.0.0:
+ /arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
- dev: true
- /arr-flatten/1.1.0:
+ /arr-flatten@1.1.0:
resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
engines: {node: '>=0.10.0'}
- dev: true
- /arr-union/3.1.0:
+ /arr-union@3.1.0:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
- dev: true
-
- /array-buffer-byte-length/1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
- dependencies:
- call-bind: 1.0.2
- is-array-buffer: 3.0.2
- dev: true
-
- /array-includes/3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- is-string: 1.0.7
- dev: true
- /array-union/2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
- dev: true
-
- /array-unique/0.3.2:
+ /array-unique@0.3.2:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /array.prototype.flat/1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /array.prototype.flatmap/1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /asap/2.0.6:
+ /asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: true
- /assign-symbols/1.0.0:
+ /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: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
- dev: true
- /ast-types/0.14.2:
+ /ast-types@0.14.2:
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
tslib: 2.5.0
- dev: true
- /astral-regex/1.0.0:
+ /astral-regex@1.0.0:
resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
engines: {node: '>=4'}
- dev: true
- /astral-regex/2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
- dev: true
-
- /async-limiter/1.0.1:
+ /async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- dev: true
- /async/2.6.4:
+ /async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
- dev: true
- /atob/2.1.2:
+ /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:
+ /autoprefixer@10.4.2(postcss@8.4.8):
resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -3619,74 +2985,47 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /available-typed-arrays/1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /axe-core/4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
- engines: {node: '>=4'}
- dev: true
-
- /axobject-query/2.2.0:
- resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
- dev: true
-
- /babel-core/7.0.0-bridge.0_@babel+core@7.17.5:
+ /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-0
dependencies:
'@babel/core': 7.17.5
- dev: true
-
- /babel-plugin-macros/3.1.0:
- resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
- engines: {node: '>=10', npm: '>=6'}
- dependencies:
- '@babel/runtime': 7.21.5
- cosmiconfig: 7.1.0
- resolve: 1.22.2
- dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.5):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.17.5):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
core-js-compat: 3.30.1
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.17.5):
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.3_@babel+core@7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-styled-components/2.0.6_styled-components@5.3.3:
+ /babel-plugin-styled-components@2.0.6(styled-components@5.3.3):
resolution: {integrity: sha512-Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg==}
peerDependencies:
styled-components: '>= 2'
@@ -3696,84 +3035,57 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.3_af520ff3c650e6a6d05e9a79e9549b09
+ styled-components: 5.3.3(react-dom@17.0.2)(react-is@18.2.0)(react@17.0.2)
- /babel-plugin-syntax-jsx/6.18.0:
+ /babel-plugin-syntax-jsx@6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
- /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0:
+ /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:
+ /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.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.17.5
- '@babel/plugin-syntax-jsx': 7.21.4_@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.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.17.5)
+ '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-syntax-jsx': 7.21.4(@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.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-template-literals': 7.18.9(@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.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.18.6_@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.21.5
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-react-remove-prop-types: 0.4.24
- transitivePeerDependencies:
- - supports-color
- dev: true
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- dev: true
- /base/0.11.2:
+ /base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ /base@0.11.2:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3784,66 +3096,57 @@ packages:
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==}
- /big-integer/1.6.51:
+ /big-integer@1.6.51:
resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
engines: {node: '>=0.6'}
- dev: true
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: true
- /bl/4.1.0:
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
- dev: true
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /bootstrap/5.1.3_@popperjs+core@2.11.7:
+ /bootstrap@5.1.3(@popperjs/core@2.11.6):
resolution: {integrity: sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==}
peerDependencies:
'@popperjs/core': ^2.10.2
dependencies:
- '@popperjs/core': 2.11.7
+ '@popperjs/core': 2.11.6
dev: false
- /bowser/2.11.0:
+ /bowser@2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
dev: false
- /bplist-creator/0.1.0:
+ /bplist-creator@0.1.0:
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
dependencies:
stream-buffers: 2.2.0
- dev: true
- /bplist-parser/0.3.1:
+ /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:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- dev: true
- /braces/2.3.2:
+ /braces@2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3857,35 +3160,38 @@ packages:
snapdragon-node: 2.1.1
split-string: 3.1.0
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /browserslist/4.21.5:
+ /browserslist-config-single-spa@1.0.1:
+ resolution: {integrity: sha512-nqOxTbatv6FcdgBvUTuH4MuojMZwvskspz5Y4dmpVcKd0uaQY8KEl3iALWus16+AwPVe3BIerBNEgELyaHZcQg==}
+ dev: false
+
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
caniuse-lite: 1.0.30001482
- electron-to-chromium: 1.4.384
+ electron-to-chromium: 1.4.380
node-releases: 2.0.10
- update-browserslist-db: 1.0.11_browserslist@4.21.5
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
- /bser/2.1.1:
+ /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:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- dev: true
- /buffer/4.9.2:
+ /buffer@4.9.2:
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
dependencies:
base64-js: 1.5.1
@@ -3893,19 +3199,17 @@ packages:
isarray: 1.0.0
dev: false
- /buffer/5.7.1:
+ /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: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
+ /bytes@3.0.0:
+ resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
engines: {node: '>= 0.8'}
- dev: true
- /cache-base/1.0.1:
+ /cache-base@1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3918,58 +3222,51 @@ packages:
to-object-path: 0.3.0
union-value: 1.0.1
unset-value: 1.0.0
- dev: true
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.2.0
+ dev: false
- /caller-callsite/2.0.0:
+ /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:
+ /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:
+ /callsites@2.0.0:
resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
engines: {node: '>=4'}
- dev: true
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- dev: true
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- dev: true
- /camelize/1.0.1:
+ /camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- dev: false
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -3978,21 +3275,10 @@ packages:
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001482:
+ /caniuse-lite@1.0.30001482:
resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==}
- /chalk/1.1.3:
- resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-styles: 2.2.1
- escape-string-regexp: 1.0.5
- has-ansi: 2.0.0
- strip-ansi: 3.0.1
- supports-color: 2.0.0
- dev: true
-
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -4000,15 +3286,14 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- dev: true
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -4023,16 +3308,14 @@ packages:
fsevents: 2.3.2
dev: true
- /ci-info/2.0.0:
+ /ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- dev: true
- /ci-info/3.8.0:
+ /ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
- dev: true
- /class-utils/0.3.6:
+ /class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4040,40 +3323,35 @@ packages:
define-property: 0.2.5
isobject: 3.0.1
static-extend: 0.1.2
- dev: true
- /classnames/2.3.2:
+ /classnames@2.3.2:
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
dev: false
- /cli-cursor/2.1.0:
+ /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:
+ /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.9.0:
+ /cli-spinners@2.9.0:
resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
engines: {node: '>=6'}
- dev: true
- /cliui/6.0.0:
+ /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:
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
@@ -4081,98 +3359,76 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-deep/4.0.1:
+ /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
- /clone/1.0.4:
+ /clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- dev: true
-
- /clsx/1.2.1:
- resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
- engines: {node: '>=6'}
- dev: false
- /collection-visit/1.0.0:
+ /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:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- dev: true
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- dev: true
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: true
- /colorette/1.4.0:
+ /colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- dev: true
- /command-exists/1.2.9:
+ /command-exists@1.2.9:
resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
- dev: true
- /commander/2.13.0:
+ /commander@2.13.0:
resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
- dev: true
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- dev: true
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
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:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- dev: true
- /component-emitter/1.3.0:
+ /component-emitter@1.3.0:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
- dev: true
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- dev: true
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -4183,13 +3439,13 @@ packages:
on-headers: 1.0.2
safe-buffer: 5.1.2
vary: 1.1.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /concat-map/0.0.1:
- resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- dev: true
+ /concat-map@0.0.1:
+ resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
- /concurrently/7.0.0:
+ /concurrently@7.0.0:
resolution: {integrity: sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
@@ -4204,11 +3460,7 @@ packages:
yargs: 16.2.0
dev: true
- /confusing-browser-globals/1.0.11:
- resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- dev: true
-
- /connect/3.7.0:
+ /connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -4216,37 +3468,30 @@ packages:
finalhandler: 1.1.2
parseurl: 1.3.3
utils-merge: 1.0.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- /cookie/0.4.2:
+ /cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
dev: false
- /copy-descriptor/0.1.1:
+ /copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- dev: true
- /core-js-compat/3.30.1:
+ /core-js-compat@3.30.1:
resolution: {integrity: sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==}
dependencies:
browserslist: 4.21.5
- dev: true
- /core-js-pure/3.30.1:
- resolution: {integrity: sha512-nXBEVpmUnNRhz83cHd9JRQC52cTMcuXAmR56+9dSMpRdpeA4I1PX6yjmhd71Eyc/wXNsdBdUDIj1QTIeZpU5Tg==}
- requiresBuild: true
- dev: true
-
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- dev: true
- /cosmiconfig/5.2.1:
+ /cosmiconfig@5.2.1:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
engines: {node: '>=4'}
dependencies:
@@ -4254,9 +3499,8 @@ packages:
is-directory: 0.3.1
js-yaml: 3.14.1
parse-json: 4.0.0
- dev: true
- /cosmiconfig/7.1.0:
+ /cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
@@ -4267,15 +3511,7 @@ packages:
yaml: 1.10.2
dev: true
- /cross-fetch/3.1.5:
- resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
- dependencies:
- node-fetch: 2.6.7
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /cross-spawn/6.0.5:
+ /cross-spawn@6.0.5:
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
engines: {node: '>=4.8'}
dependencies:
@@ -4284,27 +3520,24 @@ packages:
semver: 5.7.1
shebang-command: 1.2.0
which: 1.3.1
- dev: true
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
- /crypto-js/4.1.1:
+ /crypto-js@4.1.1:
resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
dev: false
- /css-color-keywords/1.0.0:
+ /css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- dev: false
- /css-declaration-sorter/6.4.0_postcss@8.4.8:
+ /css-declaration-sorter@6.4.0(postcss@8.4.8):
resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
@@ -4313,11 +3546,7 @@ packages:
postcss: 8.4.8
dev: true
- /css-mediaquery/0.1.2:
- resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==}
- dev: false
-
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -4327,15 +3556,14 @@ packages:
nth-check: 2.1.1
dev: true
- /css-to-react-native/3.2.0:
+ /css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
- dev: false
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -4343,63 +3571,56 @@ packages:
source-map: 0.6.1
dev: true
- /css-vendor/2.0.8:
- resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
- dependencies:
- '@babel/runtime': 7.21.5
- is-in-browser: 1.1.3
- dev: false
-
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /cssnano-preset-default/5.2.14_postcss@8.4.8:
+ /cssnano-preset-default@5.2.14(postcss@8.4.8):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.0_postcss@8.4.8
- cssnano-utils: 3.1.0_postcss@8.4.8
+ css-declaration-sorter: 6.4.0(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.1_postcss@8.4.8
- postcss-convert-values: 5.1.3_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.7_postcss@8.4.8
- postcss-merge-rules: 5.1.4_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.4_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.1_postcss@8.4.8
- postcss-normalize-repeat-style: 5.1.1_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.1_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.3_postcss@8.4.8
- postcss-reduce-initial: 5.1.2_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:
+ postcss-calc: 8.2.4(postcss@8.4.8)
+ postcss-colormin: 5.3.1(postcss@8.4.8)
+ postcss-convert-values: 5.1.3(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.7(postcss@8.4.8)
+ postcss-merge-rules: 5.1.4(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.4(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.1(postcss@8.4.8)
+ postcss-normalize-repeat-style: 5.1.1(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.1(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.3(postcss@8.4.8)
+ postcss-reduce-initial: 5.1.2(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):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -4408,71 +3629,49 @@ packages:
postcss: 8.4.8
dev: true
- /cssnano/5.1.0_postcss@8.4.8:
+ /cssnano@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-wWxave1wMlThGg4ueK98jFKaNqXnQd1nVZpSkQ9XvR+YymlzP1ofWqES1JkHtI250LksP9z5JH+oDcrKDJezAg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14_postcss@8.4.8
+ cssnano-preset-default: 5.2.14(postcss@8.4.8)
lilconfig: 2.1.0
postcss: 8.4.8
yaml: 1.10.2
dev: true
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
dev: true
- /csstype/2.6.21:
- resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
- dev: false
-
- /csstype/3.1.2:
+ /csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
dev: false
- /damerau-levenshtein/1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
-
- /date-fns/2.30.0:
+ /date-fns@2.30.0:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
'@babel/runtime': 7.21.5
- /dayjs/1.11.7:
+ /dayjs@1.11.7:
resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
- dev: true
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
- dependencies:
- ms: 2.0.0
- dev: true
-
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- dependencies:
- ms: 2.1.3
- dev: true
-
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
- ms: 2.1.2
+ ms: 2.0.0
- /debug/4.3.4_supports-color@5.5.0:
+ /debug@4.3.4(supports-color@5.5.0):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -4483,19 +3682,16 @@ packages:
dependencies:
ms: 2.1.2
supports-color: 5.5.0
- dev: false
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- dev: true
- /decode-uri-component/0.2.2:
+ /decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- dev: true
- /deep-equal/1.1.1:
+ /deep-equal@1.1.1:
resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
dependencies:
is-arguments: 1.1.1
@@ -4506,755 +3702,234 @@ packages:
regexp.prototype.flags: 1.5.0
dev: false
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
- /deepmerge/3.3.0:
+ /deepmerge@3.3.0:
resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
engines: {node: '>=0.10.0'}
- dev: true
- /defaults/1.0.4:
+ /defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
- dev: true
- /define-properties/1.2.0:
+ /define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
+ dev: false
- /define-property/0.2.5:
+ /define-property@0.2.5:
resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
- dev: true
- /define-property/1.0.0:
+ /define-property@1.0.0:
resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
- dev: true
- /define-property/2.0.2:
+ /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.1:
+ /defined@1.0.1:
resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
dev: true
- /denodeify/1.2.1:
+ /denodeify@1.2.1:
resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
- dev: true
- /depd/2.0.0:
+ /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:
+ /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.3:
+ /dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
dev: false
- /destroy/1.2.0:
+ /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.1:
- resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
- engines: {node: '>=0.8.0'}
- hasBin: true
- dependencies:
- acorn-node: 1.8.2
- defined: 1.0.1
- minimist: 1.2.8
- 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==}
- engines: {node: '>=8'}
- dependencies:
- path-type: 4.0.0
- dev: true
-
- /dlv/1.1.3:
- resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dev: true
-
- /doctrine/2.1.0:
- resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
-
- /doctrine/3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
-
- /dom-helpers/5.2.1:
- resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
- dependencies:
- '@babel/runtime': 7.21.5
- csstype: 3.1.2
- dev: false
-
- /dom-serializer/1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- entities: 2.2.0
- dev: true
-
- /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
- 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
-
- /dotenv/16.0.3:
- resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
- engines: {node: '>=12'}
- dev: true
-
- /ee-first/1.1.1:
- resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- dev: true
-
- /electron-to-chromium/1.4.384:
- resolution: {integrity: sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==}
-
- /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
-
- /enquirer/2.3.6:
- resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
- engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
- 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:
- is-arrayish: 0.2.1
- dev: true
-
- /error-stack-parser/2.1.4:
- resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- dependencies:
- stackframe: 1.3.4
- 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.21.2:
- resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.0
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.10
- is-weakref: 1.0.2
- object-inspect: 1.12.3
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.7
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
- dev: true
-
- /es-set-tostringtag/2.0.1:
- resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- has-tostringtag: 1.0.0
- 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.7
- is-date-object: 1.0.5
- 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'}
-
- /escape-html/1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- dev: true
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /escape-string-regexp/1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ /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.1
+ minimist: 1.2.8
+ dev: true
- /escape-string-regexp/4.0.0:
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
- engines: {node: '>=10'}
+ /didyoumean@1.2.2:
+ resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
dev: true
- /eslint-config-airbnb-base/15.0.0_8b406960a2a06af75ddac353adbd0cfd:
- resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: ^7.32.0 || ^8.2.0
- 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
- object.assign: 4.1.4
- object.entries: 1.1.6
- semver: 6.3.0
+ /dlv@1.1.3:
+ resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: true
- /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:
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.3
- eslint-plugin-jsx-a11y: ^6.5.1
- eslint-plugin-react: ^7.28.0
- eslint-plugin-react-hooks: ^4.3.0
+ /doctrine@3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.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-plugin-react-hooks: 4.3.0_eslint@8.10.0
- object.assign: 4.1.4
- object.entries: 1.1.6
- dev: true
+ esutils: 2.0.3
- /eslint-config-prettier/8.5.0_eslint@8.10.0:
- resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
+ /dom-helpers@5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- eslint: 8.10.0
- dev: true
+ '@babel/runtime': 7.17.2
+ csstype: 3.1.2
+ dev: false
- /eslint-config-react-app/7.0.0_cb4cbb6d607c9c099f062cfe721ceb3c:
- resolution: {integrity: sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- eslint: ^8.0.0
+ /dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
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.2.0
- '@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_c47974c115e6a303c75755318bd6e5f4
- 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.10.3_eslint@8.10.0+typescript@4.6.2
- transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - jest
- - supports-color
- - typescript
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ entities: 2.2.0
dev: true
- /eslint-import-resolver-node/0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.12.0
- resolve: 1.22.2
+ /domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
- /eslint-module-utils/2.8.0_eslint@8.10.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: '*'
- peerDependenciesMeta:
- eslint:
- optional: true
+ /domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
dependencies:
- debug: 3.2.7
- eslint: 8.10.0
+ domelementtype: 2.3.0
dev: true
- /eslint-plugin-flowtype/8.0.3_c47974c115e6a303c75755318bd6e5f4:
- resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@babel/plugin-syntax-flow': ^7.14.5
- '@babel/plugin-transform-react-jsx': ^7.14.9
- eslint: ^8.1.0
+ /domutils@2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
- eslint: 8.10.0
- lodash: 4.17.21
- string-natural-compare: 3.0.1
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
dev: true
- /eslint-plugin-import/2.25.4_eslint@8.10.0:
- resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- debug: 2.6.9
- doctrine: 2.1.0
- eslint: 8.10.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0_eslint@8.10.0
- has: 1.0.3
- is-core-module: 2.12.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.2
- tsconfig-paths: 3.14.2
+ /dotenv@16.0.3:
+ resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
+ engines: {node: '>=12'}
dev: true
- /eslint-plugin-jest/25.7.0_22191a90d902226c492032929b57715a:
- resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- jest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- jest:
- optional: true
+ /ee-first@1.1.1:
+ resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+
+ /electron-to-chromium@1.4.380:
+ resolution: {integrity: sha512-XKGdI4pWM78eLH2cbXJHiBnWUwFSzZM7XujsB6stDiGu9AeSqziedP6amNLpJzE3i0rLTcfAwdCTs5ecP5yeSg==}
+
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+ /encodeurl@1.0.2:
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
+
+ /end-of-stream@1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
- '@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/experimental-utils': 5.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
+ once: 1.4.0
+
+ /entities@2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.10.0:
- resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
- engines: {node: '>=4.0'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ /envinfo@7.8.1:
+ resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
- '@babel/runtime': 7.17.2
- aria-query: 4.2.2
- array-includes: 3.1.6
- ast-types-flow: 0.0.7
- axe-core: 4.7.0
- 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.3.3
- language-tags: 1.0.8
- minimatch: 3.1.2
- dev: true
+ is-arrayish: 0.2.1
- /eslint-plugin-prefer-arrow/1.2.3_eslint@8.10.0:
- resolution: {integrity: sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==}
- peerDependencies:
- eslint: '>=2.0.0'
+ /error-stack-parser@2.1.4:
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
dependencies:
- eslint: 8.10.0
- dev: true
+ stackframe: 1.3.4
- /eslint-plugin-prettier/4.0.0_f3d13a703a9c1079e3d1af6044603beb:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- eslint: '>=7.28.0'
- eslint-config-prettier: '*'
- prettier: '>=2.0.0'
- peerDependenciesMeta:
- eslint-config-prettier:
- optional: true
+ /errorhandler@1.5.1:
+ resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
+ engines: {node: '>= 0.8'}
dependencies:
- eslint: 8.10.0
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- prettier: 2.5.1
- prettier-linter-helpers: 1.0.0
- dev: true
+ accepts: 1.3.8
+ escape-html: 1.0.3
+
+ /esbuild@0.17.18:
+ resolution: {integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.18
+ '@esbuild/android-arm64': 0.17.18
+ '@esbuild/android-x64': 0.17.18
+ '@esbuild/darwin-arm64': 0.17.18
+ '@esbuild/darwin-x64': 0.17.18
+ '@esbuild/freebsd-arm64': 0.17.18
+ '@esbuild/freebsd-x64': 0.17.18
+ '@esbuild/linux-arm': 0.17.18
+ '@esbuild/linux-arm64': 0.17.18
+ '@esbuild/linux-ia32': 0.17.18
+ '@esbuild/linux-loong64': 0.17.18
+ '@esbuild/linux-mips64el': 0.17.18
+ '@esbuild/linux-ppc64': 0.17.18
+ '@esbuild/linux-riscv64': 0.17.18
+ '@esbuild/linux-s390x': 0.17.18
+ '@esbuild/linux-x64': 0.17.18
+ '@esbuild/netbsd-x64': 0.17.18
+ '@esbuild/openbsd-x64': 0.17.18
+ '@esbuild/sunos-x64': 0.17.18
+ '@esbuild/win32-arm64': 0.17.18
+ '@esbuild/win32-ia32': 0.17.18
+ '@esbuild/win32-x64': 0.17.18
+ dev: true
+
+ /escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
- /eslint-plugin-react-hooks/4.3.0_eslint@8.10.0:
+ /escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ /eslint-plugin-react-hooks@4.3.0(eslint@8.10.0):
resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==}
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
- dev: true
-
- /eslint-plugin-react/7.29.4_eslint@8.10.0:
- resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- doctrine: 2.1.0
- eslint: 8.10.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
- minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
- prop-types: 15.8.1
- resolve: 2.0.0-next.4
- semver: 6.3.0
- string.prototype.matchall: 4.0.8
- dev: true
-
- /eslint-plugin-testing-library/5.10.3_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==}
- 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.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ dev: false
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -5262,22 +3937,14 @@ packages:
estraverse: 4.3.0
dev: true
- /eslint-scope/7.2.0:
+ /eslint-scope@7.2.0:
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
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.10.0):
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
@@ -5285,73 +3952,16 @@ packages:
dependencies:
eslint: 8.10.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:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- dev: true
- /eslint-visitor-keys/3.4.0:
+ /eslint-visitor-keys@3.4.0:
resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
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.5.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.20.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.5.0
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 6.8.1
- text-table: 0.2.0
- v8-compile-cache: 2.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /eslint/8.10.0:
+ /eslint@8.10.0:
resolution: {integrity: sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
@@ -5361,11 +3971,11 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.0
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0(eslint@8.10.0)
eslint-visitor-keys: 3.4.0
espree: 9.5.1
esquery: 1.5.0
@@ -5393,85 +4003,58 @@ packages:
v8-compile-cache: 2.3.0
transitivePeerDependencies:
- 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.5.1:
+ /espree@9.5.1:
resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.0
- dev: true
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- dev: true
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- dev: true
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
dev: true
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- dev: true
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- dev: false
+ dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- dev: true
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- dev: true
- /event-target-shim/5.0.1:
+ /event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- dev: true
- /execa/1.0.0:
+ /execa@1.0.0:
resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
engines: {node: '>=6'}
dependencies:
@@ -5482,9 +4065,8 @@ packages:
p-finally: 1.0.0
signal-exit: 3.0.7
strip-eof: 1.0.0
- dev: true
- /expand-brackets/2.1.4:
+ /expand-brackets@2.1.4:
resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -5495,24 +4077,23 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /extend-shallow/2.0.1:
+ /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:
+ /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:
+ /extglob@2.0.4:
resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -5524,21 +4105,17 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /fast-base64-decode/1.0.0:
+ /fast-base64-decode@1.0.0:
resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==}
dev: false
- /fast-deep-equal/3.1.3:
+ /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.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -5548,33 +4125,29 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: true
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
- /fb-watchman/2.0.2:
+ /fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
- dev: true
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- dev: true
- /fill-range/4.0.0:
+ /fill-range@4.0.0:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -5582,15 +4155,14 @@ packages:
is-number: 3.0.0
repeat-string: 1.6.1
to-regex-range: 2.1.1
- dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /finalhandler/1.1.2:
+ /finalhandler@1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
dependencies:
@@ -5601,174 +4173,136 @@ packages:
parseurl: 1.3.3
statuses: 1.5.0
unpipe: 1.0.0
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /find-cache-dir/2.1.0:
+ /find-cache-dir@2.1.0:
resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
engines: {node: '>=6'}
dependencies:
commondir: 1.0.1
make-dir: 2.1.0
pkg-dir: 3.0.0
- dev: true
- /find-up/3.0.0:
+ /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:
+ /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:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
- dev: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- dev: true
-
- /flow-parser/0.121.0:
- resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
- engines: {node: '>=0.4.0'}
- dev: true
-
- /for-each/0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
- dependencies:
- is-callable: 1.2.7
- dev: true
- /for-in/1.0.2:
+ /flow-parser@0.121.0:
+ resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
+ engines: {node: '>=0.4.0'}
+
+ /for-in@1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
- /fragment-cache/0.2.1:
+ /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: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+ /fresh@0.5.2:
+ resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
engines: {node: '>= 0.6'}
- dev: true
- /fs-extra/1.0.0:
+ /fs-extra@1.0.0:
resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==}
dependencies:
graceful-fs: 4.2.11
jsonfile: 2.4.0
klaw: 1.3.1
- dev: true
- /fs-extra/8.1.0:
+ /fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
- dev: true
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- dev: true
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /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.2.0
- es-abstract: 1.21.2
- functions-have-names: 1.2.3
- dev: true
-
- /functional-red-black-tree/1.0.1:
+ /functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- dev: true
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: false
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-caller-file/2.0.5:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- dev: true
- /get-intrinsic/1.2.0:
+ /get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
+ dev: false
- /get-stream/4.1.0:
+ /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:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- dev: true
- /get-value/2.0.6:
+ /get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
- dev: true
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
+ /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/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -5777,167 +4311,116 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: true
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- dev: true
-
- /globalthis/1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.0
- dev: true
-
- /globby/11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.2.12
- ignore: 5.2.4
- merge2: 1.4.1
- slash: 3.0.0
- dev: true
-
- /gopd/1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- dependencies:
- get-intrinsic: 1.2.0
- dev: true
- /graceful-fs/4.2.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- dev: true
- /gud/1.0.0:
+ /gud@1.0.0:
resolution: {integrity: sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==}
dev: false
- /has-ansi/2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
-
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- dev: true
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.2.0
+ dev: false
- /has-proto/1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ dev: false
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
+ dev: false
- /has-value/0.3.1:
+ /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:
+ /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:
+ /has-values@0.1.4:
resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /has-values/1.0.0:
+ /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:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /hermes-engine/0.11.0:
+ /hermes-engine@0.11.0:
resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==}
- dev: true
- /hermes-estree/0.5.0:
+ /hermes-estree@0.5.0:
resolution: {integrity: sha512-1h8rvG23HhIR5K6Kt0e5C7BC72J1Ath/8MmSta49vxXp/j6wl7IMHvIRFYBQr35tWnQY97dSGR2uoAJ5pHUQkg==}
- dev: true
- /hermes-parser/0.5.0:
+ /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:
+ /hermes-profile-transformer@0.0.6:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
engines: {node: '>=8'}
dependencies:
source-map: 0.7.4
- dev: true
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
- dev: false
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: false
- /html-parse-stringify/3.0.1:
+ /html-parse-stringify@3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
dependencies:
void-elements: 3.1.0
dev: false
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -5946,125 +4429,77 @@ packages:
setprototypeof: 1.2.0
statuses: 2.0.1
toidentifier: 1.0.1
- dev: true
-
- /hyphenate-style-name/1.0.4:
- resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
- dev: false
-
- /i18next-browser-languagedetector/6.1.8:
- resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==}
- dependencies:
- '@babel/runtime': 7.21.5
- dev: false
-
- /i18next-http-backend/1.4.5:
- resolution: {integrity: sha512-tLuHWuLWl6CmS07o+UB6EcQCaUjrZ1yhdseIN7sfq0u7phsMePJ8pqlGhIAdRDPF/q7ooyo5MID5DRFBCH+x5w==}
- dependencies:
- cross-fetch: 3.1.5
- transitivePeerDependencies:
- - encoding
- dev: false
- /i18next/19.9.2:
+ /i18next@19.9.2:
resolution: {integrity: sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==}
dependencies:
'@babel/runtime': 7.17.2
dev: false
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore/4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
- engines: {node: '>= 4'}
- dev: true
-
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- dev: true
- /image-size/0.6.3:
+ /image-size@0.6.3:
resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
engines: {node: '>=4.0'}
hasBin: true
- dev: true
- /immutable/4.3.0:
+ /immutable@4.3.0:
resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
dev: true
- /import-fresh/2.0.0:
+ /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:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- dev: true
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
-
- /indent-string/4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
- dev: true
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- dev: true
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- dev: true
- /internal-slot/1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- side-channel: 1.0.4
- dev: true
-
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- /ip/1.1.8:
+ /ip@1.1.8:
resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
- dev: true
- /is-accessor-descriptor/0.1.6:
+ /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
- /is-accessor-descriptor/1.0.0:
+ /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:
+ /is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6072,251 +4507,152 @@ packages:
has-tostringtag: 1.0.0
dev: false
- /is-array-buffer/3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-typed-array: 1.1.10
- dev: true
-
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- dev: true
-
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- dependencies:
- has-bigints: 1.0.2
- dev: true
- /is-binary-path/2.1.0:
+ /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'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: true
-
- /is-callable/1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
- engines: {node: '>= 0.4'}
- dev: true
- /is-core-module/2.12.0:
+ /is-core-module@2.12.0:
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
dependencies:
has: 1.0.3
- /is-data-descriptor/0.1.4:
+ /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:
+ /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:
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
+ dev: false
- /is-descriptor/0.1.6:
+ /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:
+ /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:
+ /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:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-extendable/1.0.1:
+ /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:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point/2.0.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:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- dev: true
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-in-browser/1.1.3:
- resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
- dev: false
-
- /is-interactive/1.0.0:
+ /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.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
- /is-number/3.0.0:
+ /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:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-plain-object/2.0.4:
+ /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:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
+ dev: false
- /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:
+ /is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
- dev: true
-
- /is-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /is-typed-array/1.1.10:
- resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- dev: true
- /is-unicode-supported/0.1.0:
+ /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-windows/1.0.2:
+ /is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-wsl/1.1.0:
+ /is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
engines: {node: '>=4'}
- dev: true
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
- /isobject/2.1.0:
+ /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:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: true
- /isomorphic-unfetch/3.1.0:
+ /isomorphic-unfetch@3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
node-fetch: 2.6.9
@@ -6325,12 +4661,11 @@ packages:
- encoding
dev: false
- /jest-get-type/26.3.0:
+ /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:
+ /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:
@@ -6348,22 +4683,19 @@ packages:
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.2
- dev: true
- /jest-regex-util/27.5.1:
+ /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:
+ /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.11
- dev: true
- /jest-util/27.5.1:
+ /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:
@@ -6373,9 +4705,8 @@ packages:
ci-info: 3.8.0
graceful-fs: 4.2.11
picomatch: 2.3.1
- dev: true
- /jest-validate/26.6.2:
+ /jest-validate@26.6.2:
resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
engines: {node: '>= 10.14.2'}
dependencies:
@@ -6385,32 +4716,28 @@ packages:
jest-get-type: 26.3.0
leven: 3.1.0
pretty-format: 26.6.2
- dev: true
- /jest-worker/26.6.2:
+ /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:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/node': 17.0.21
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: true
- /jetifier/1.6.8:
+ /jetifier@1.6.8:
resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==}
hasBin: true
- dev: true
- /joi/17.9.2:
+ /joi@17.9.2:
resolution: {integrity: sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -6418,35 +4745,31 @@ packages:
'@sideway/address': 4.1.4
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- dev: true
- /js-cookie/2.2.1:
+ /js-cookie@2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
dev: false
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- dev: true
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- dev: true
- /jsc-android/250230.2.1:
+ /jsc-android@250230.2.1:
resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
- dev: true
- /jscodeshift/0.13.1_@babel+preset-env@7.16.11:
+ /jscodeshift@0.13.1(@babel/preset-env@7.16.11):
resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
hasBin: true
peerDependencies:
@@ -6454,15 +4777,15 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/parser': 7.21.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/preset-flow': 7.21.4_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/register': 7.21.0_@babel+core@7.17.5
- babel-core: 7.0.0-bridge.0_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.17.5)
+ '@babel/preset-env': 7.16.11(@babel/core@7.17.5)
+ '@babel/preset-flow': 7.21.4(@babel/core@7.17.5)
+ '@babel/preset-typescript': 7.16.7(@babel/core@7.17.5)
+ '@babel/register': 7.21.0(@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.11
@@ -6474,340 +4797,192 @@ packages:
write-file-atomic: 2.4.3
transitivePeerDependencies:
- supports-color
- dev: true
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- dev: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-parse-better-errors/1.0.2:
+ /json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: true
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
dev: true
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- dev: true
- /json-schema-traverse/1.0.0:
- resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- dev: true
-
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
-
- /json5/1.0.2:
- resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
- hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- /jsonfile/2.4.0:
+ /jsonfile@2.4.0:
resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
optionalDependencies:
graceful-fs: 4.2.11
- dev: true
- /jsonfile/4.0.0:
+ /jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.11
- dev: true
-
- /jss-plugin-camel-case/10.10.0:
- resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
- dependencies:
- '@babel/runtime': 7.21.5
- hyphenate-style-name: 1.0.4
- jss: 10.10.0
- dev: false
-
- /jss-plugin-default-unit/10.10.0:
- resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
-
- /jss-plugin-global/10.10.0:
- resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
-
- /jss-plugin-nested/10.10.0:
- resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- tiny-warning: 1.0.3
- dev: false
-
- /jss-plugin-props-sort/10.10.0:
- resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
-
- /jss-plugin-rule-value-function/10.10.0:
- resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- tiny-warning: 1.0.3
- dev: false
-
- /jss-plugin-vendor-prefixer/10.10.0:
- resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==}
- dependencies:
- '@babel/runtime': 7.21.5
- css-vendor: 2.0.8
- jss: 10.10.0
- dev: false
-
- /jss/10.10.0:
- resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==}
- dependencies:
- '@babel/runtime': 7.21.5
- csstype: 3.1.2
- is-in-browser: 1.1.3
- tiny-warning: 1.0.3
- dev: false
-
- /jsx-ast-utils/3.3.3:
- resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
- engines: {node: '>=4.0'}
- dependencies:
- array-includes: 3.1.6
- object.assign: 4.1.4
- dev: true
- /kind-of/3.2.2:
+ /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:
+ /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:
+ /kind-of@5.1.0:
resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
engines: {node: '>=0.10.0'}
- dev: true
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: true
- /klaw/1.3.1:
+ /klaw@1.3.1:
resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
optionalDependencies:
graceful-fs: 4.2.11
- dev: true
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- dev: true
-
- /language-subtag-registry/0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
- dev: true
-
- /language-tags/1.0.8:
- resolution: {integrity: sha512-aWAZwgPLS8hJ20lNPm9HNVs4inexz6S2sQa3wx/+ycuutMNE5/IfYxiWYBbi+9UWCQVaXYCOPUl6gFrPR7+jGg==}
- dependencies:
- language-subtag-registry: 0.3.22
- dev: true
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- dev: true
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
dev: true
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /locate-path/3.0.0:
+ /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:
+ /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:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- dev: true
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
- /lodash.throttle/4.1.1:
+ /lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
- dev: true
-
- /lodash.truncate/4.4.2:
- resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols/2.2.0:
+ /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:
+ /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:
+ /logkitty@0.7.1:
resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
hasBin: true
dependencies:
ansi-fragments: 0.2.1
dayjs: 1.11.7
yargs: 15.4.1
- dev: true
-
- /loglevel-colored-level-prefix/1.0.0:
- resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
- dependencies:
- chalk: 1.1.3
- loglevel: 1.8.1
- dev: true
-
- /loglevel/1.8.1:
- resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
- engines: {node: '>= 0.6.0'}
- dev: true
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
- /lru-cache/6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
- dependencies:
- yallist: 4.0.0
- dev: true
-
- /make-dir/2.1.0:
+ /make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
dependencies:
pify: 4.0.1
semver: 5.7.1
- dev: true
- /makeerror/1.0.12:
+ /makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
tmpl: 1.0.5
- dev: true
- /map-cache/0.2.2:
+ /map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
- dev: true
- /map-visit/1.0.0:
+ /map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
dependencies:
object-visit: 1.0.1
- dev: true
-
- /matchmediaquery/0.3.1:
- resolution: {integrity: sha512-Hlk20WQHRIm9EE9luN1kjRjYXAQToHOIAHPJn9buxBwuhfTHoKUcX+lXBbxc85DVQfXYbEQ4HcwQdd128E3qHQ==}
- dependencies:
- css-mediaquery: 0.1.2
- dev: false
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: true
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /metro-babel-transformer/0.67.0:
+ /metro-babel-transformer@0.67.0:
resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==}
dependencies:
'@babel/core': 7.17.5
@@ -6816,21 +4991,18 @@ packages:
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-cache-key/0.67.0:
+ /metro-cache-key@0.67.0:
resolution: {integrity: sha512-FNJe5Rcb2uzY6G6tsqCf0RV4t2rCeX6vSHBxmP7k+4aI4NqX4evtPI0K82r221nBzm5DqNWCURZ0RYUT6jZMGA==}
- dev: true
- /metro-cache/0.67.0:
+ /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
- /metro-config/0.67.0:
+ /metro-config@0.67.0:
resolution: {integrity: sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g==}
dependencies:
cosmiconfig: 5.2.1
@@ -6844,21 +5016,18 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /metro-core/0.67.0:
+ /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:
+ /metro-hermes-compiler@0.67.0:
resolution: {integrity: sha512-X5Pr1jC8/kO6d1EBDJ6yhtuc5euHX89UDNv8qdPJHAET03xfFnlojRPwOw6il2udAH20WLBv+F5M9VY+58zspQ==}
- dev: true
- /metro-inspector-proxy/0.67.0:
+ /metro-inspector-proxy@0.67.0:
resolution: {integrity: sha512-5Ubjk94qpNaU3OT2IZa4/dec09bauic1hzWms4czorBzDenkp4kYXG9/aWTmgQLtCk92H3Q8jKl1PQRxUSkrOQ==}
hasBin: true
dependencies:
@@ -6868,90 +5037,89 @@ packages:
yargs: 15.4.1
transitivePeerDependencies:
- bufferutil
+ - supports-color
- utf-8-validate
- dev: true
- /metro-minify-uglify/0.67.0:
+ /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:
+ /metro-react-native-babel-preset@0.67.0(@babel/core@7.17.5):
resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==}
+ peerDependencies:
+ '@babel/core': '*'
dependencies:
'@babel/core': 7.17.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@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.18.6_@babel+core@7.17.5
- '@babel/plugin-syntax-flow': 7.21.4_@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.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-object-assign': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.17.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.17.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@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.18.6(@babel/core@7.17.5)
+ '@babel/plugin-syntax-flow': 7.18.6(@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.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-object-assign': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-runtime': 7.17.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.5)
'@babel/template': 7.20.7
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-react-native-babel-transformer/0.67.0:
+ /metro-react-native-babel-transformer@0.67.0(@babel/core@7.17.5):
resolution: {integrity: sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ==}
+ peerDependencies:
+ '@babel/core': '*'
dependencies:
'@babel/core': 7.17.5
- babel-preset-fbjs: 3.4.0_@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-react-native-babel-preset: 0.67.0(@babel/core@7.17.5)
metro-source-map: 0.67.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-resolver/0.67.0:
+ /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:
+ /metro-runtime@0.67.0:
resolution: {integrity: sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g==}
- dev: true
- /metro-source-map/0.67.0:
+ /metro-source-map@0.67.0:
resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==}
dependencies:
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
invariant: 2.2.4
metro-symbolicate: 0.67.0
@@ -6961,9 +5129,8 @@ packages:
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-symbolicate/0.67.0:
+ /metro-symbolicate@0.67.0:
resolution: {integrity: sha512-ZqVVcfa0xSz40eFzA5P8pCF3V6Tna9RU1prFzAJTa3j9dCGqwh0HTXC8AIkMtgX7hNdZrCJI1YipzUBlwkT0/A==}
engines: {node: '>=8.3'}
hasBin: true
@@ -6976,28 +5143,26 @@ packages:
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-transform-plugins/0.67.0:
+ /metro-transform-plugins@0.67.0:
resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==}
dependencies:
'@babel/core': 7.17.5
'@babel/generator': 7.21.5
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-transform-worker/0.67.0:
+ /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.21.5
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- babel-preset-fbjs: 3.4.0_@babel+core@7.17.5
+ 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
@@ -7011,9 +5176,8 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /metro/0.67.0:
+ /metro@0.67.0:
resolution: {integrity: sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ==}
hasBin: true
dependencies:
@@ -7022,7 +5186,7 @@ packages:
'@babel/generator': 7.21.5
'@babel/parser': 7.21.8
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
absolute-path: 0.0.0
accepts: 1.3.8
@@ -7049,7 +5213,7 @@ packages:
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-react-native-babel-preset: 0.67.0(@babel/core@7.17.5)
metro-resolver: 0.67.0
metro-runtime: 0.67.0
metro-source-map: 0.67.0
@@ -7073,9 +5237,8 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /micromatch/3.1.10:
+ /micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -7092,91 +5255,81 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- dev: true
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- dev: true
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /mime/2.6.0:
+ /mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
- dev: true
- /mimic-fn/1.2.0:
+ /mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
- dev: true
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- dev: true
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- dev: true
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: true
- /mixin-deep/1.3.2:
+ /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:
+ /mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
minimist: 1.2.8
- dev: true
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: true
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: true
- /nanoid/3.3.6:
+ /nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ dev: true
- /nanomatch/1.2.13:
+ /nanomatch@1.2.13:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -7191,50 +5344,33 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- dev: true
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: true
- /nice-try/1.0.5:
+ /nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
- /nocache/2.1.0:
+ /nocache@2.1.0:
resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==}
engines: {node: '>=4.0.0'}
- dev: true
- /node-dir/0.1.17:
+ /node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
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}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- dev: false
- /node-fetch/2.6.9:
+ /node-fetch@2.6.9:
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -7245,77 +5381,66 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-int64/0.4.0:
+ /node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- dev: true
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- /node-stream-zip/1.15.0:
+ /node-stream-zip@1.15.0:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
- dev: true
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- dev: true
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: true
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
dev: true
- /npm-run-path/2.0.2:
+ /npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
- dev: true
- /nth-check/2.1.1:
+ /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:
+ /nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- dev: true
- /ob1/0.67.0:
+ /ob1@0.67.0:
resolution: {integrity: sha512-YvZtX8HKYackQ5PwdFIuuNFVsMChRPHvnARRRT0Vk59xsBvL5t9U1Ock3M1sYrKj+Gp73+0q9xcHLAxI+xLi5g==}
- dev: true
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-copy/0.1.0:
+ /object-copy@0.1.0:
resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
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:
+ /object-hash@2.2.0:
resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
engines: {node: '>= 6'}
dev: true
- /object-inspect/1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- dev: true
-
- /object-is/1.1.5:
+ /object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7323,115 +5448,63 @@ packages:
define-properties: 1.2.0
dev: false
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
+ dev: false
- /object-visit/1.0.1:
+ /object-visit@1.0.1:
resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: true
-
- /object.assign/4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: true
-
- /object.entries/1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.fromentries/2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.hasown/1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
- dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /object.pick/1.3.0:
+ /object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: true
-
- /object.values/1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /on-finished/2.3.0:
+ /on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- dev: true
- /on-finished/2.4.1:
+ /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:
+ /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:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- dev: true
- /onetime/2.0.1:
+ /onetime@2.0.1:
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
engines: {node: '>=4'}
dependencies:
mimic-fn: 1.2.0
- dev: true
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- dev: true
- /open/6.4.0:
+ /open@6.4.0:
resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
engines: {node: '>=8'}
dependencies:
is-wsl: 1.1.0
- dev: true
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -7441,9 +5514,8 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
word-wrap: 1.2.3
- dev: true
- /ora/3.4.0:
+ /ora@3.4.0:
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
engines: {node: '>=6'}
dependencies:
@@ -7453,9 +5525,8 @@ packages:
log-symbols: 2.2.0
strip-ansi: 5.2.0
wcwidth: 1.0.1
- dev: true
- /ora/5.4.1:
+ /ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
dependencies:
@@ -7468,60 +5539,51 @@ packages:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- dev: true
- /os-tmpdir/1.0.2:
+ /os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- dev: true
- /p-finally/1.0.0:
+ /p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
- dev: true
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- dev: true
- /p-locate/3.0.0:
+ /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-locate/4.1.0:
+ /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-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- dev: true
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- dev: true
- /parse-json/4.0.0:
+ /parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
dependencies:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
- dev: true
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -7531,96 +5593,80 @@ packages:
lines-and-columns: 1.2.4
dev: true
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- dev: true
- /pascalcase/0.1.1:
+ /pascalcase@0.1.1:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
- dev: true
- /path-exists/3.0.0:
+ /path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
- dev: true
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- dev: true
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- dev: true
- /path-key/2.0.1:
+ /path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
- dev: true
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
dev: true
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- dev: true
- /pirates/4.0.5:
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- dev: true
- /pkg-dir/3.0.0:
+ /pkg-dir@3.0.0:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
dependencies:
find-up: 3.0.0
- dev: true
- /plist/3.0.6:
+ /plist@3.0.6:
resolution: {integrity: sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==}
engines: {node: '>=6'}
dependencies:
base64-js: 1.5.1
xmlbuilder: 15.1.1
- dev: true
- /popper.js/1.16.1:
+ /popper.js@1.16.1:
resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==}
deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
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:
+ /posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
- dev: true
- /postcss-calc/8.2.4_postcss@8.4.8:
+ /postcss-calc@8.2.4(postcss@8.4.8):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
@@ -7630,7 +5676,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.1_postcss@8.4.8:
+ /postcss-colormin@5.3.1(postcss@8.4.8):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7643,7 +5689,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.3_postcss@8.4.8:
+ /postcss-convert-values@5.1.3(postcss@8.4.8):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7654,7 +5700,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.2_postcss@8.4.8:
+ /postcss-discard-comments@5.1.2(postcss@8.4.8):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7663,7 +5709,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-discard-duplicates/5.1.0_postcss@8.4.8:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7672,7 +5718,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-discard-empty/5.1.1_postcss@8.4.8:
+ /postcss-discard-empty@5.1.1(postcss@8.4.8):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7681,7 +5727,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-discard-overridden/5.1.0_postcss@8.4.8:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7690,7 +5736,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-js/4.0.1_postcss@8.4.8:
+ /postcss-js@4.0.1(postcss@8.4.8):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
@@ -7700,7 +5746,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-load-config/3.1.4_postcss@8.4.8:
+ /postcss-load-config@3.1.4(postcss@8.4.8):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -7717,7 +5763,7 @@ packages:
yaml: 1.10.2
dev: true
- /postcss-merge-longhand/5.1.7_postcss@8.4.8:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.8):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7725,10 +5771,10 @@ packages:
dependencies:
postcss: 8.4.8
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.8
+ stylehacks: 5.1.1(postcss@8.4.8)
dev: true
- /postcss-merge-rules/5.1.4_postcss@8.4.8:
+ /postcss-merge-rules@5.1.4(postcss@8.4.8):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7736,12 +5782,12 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.8
+ cssnano-utils: 3.1.0(postcss@8.4.8)
postcss: 8.4.8
postcss-selector-parser: 6.0.12
dev: true
- /postcss-minify-font-values/5.1.0_postcss@8.4.8:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7751,31 +5797,31 @@ packages:
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.8):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.8
+ cssnano-utils: 3.1.0(postcss@8.4.8)
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.1.4_postcss@8.4.8:
+ /postcss-minify-params@5.1.4(postcss@8.4.8):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.8
+ 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.1_postcss@8.4.8:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.8):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7785,7 +5831,7 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /postcss-nested/5.0.6_postcss@8.4.8:
+ /postcss-nested@5.0.6(postcss@8.4.8):
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -7795,7 +5841,7 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /postcss-normalize-charset/5.1.0_postcss@8.4.8:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7804,7 +5850,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-normalize-display-values/5.1.0_postcss@8.4.8:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7814,7 +5860,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.1.1_postcss@8.4.8:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.8):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7824,7 +5870,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.8:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.8):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7834,7 +5880,7 @@ packages:
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.8):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7844,7 +5890,7 @@ packages:
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.8):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7854,7 +5900,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.1.1_postcss@8.4.8:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.8):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7865,7 +5911,7 @@ packages:
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.8):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7876,7 +5922,7 @@ packages:
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.8):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7886,18 +5932,18 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.1.3_postcss@8.4.8:
+ /postcss-ordered-values@5.1.3(postcss@8.4.8):
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.8
+ cssnano-utils: 3.1.0(postcss@8.4.8)
postcss: 8.4.8
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.1.2_postcss@8.4.8:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.8):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7908,7 +5954,7 @@ packages:
postcss: 8.4.8
dev: true
- /postcss-reduce-transforms/5.1.0_postcss@8.4.8:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7918,7 +5964,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-selector-parser/6.0.12:
+ /postcss-selector-parser@6.0.12:
resolution: {integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==}
engines: {node: '>=4'}
dependencies:
@@ -7926,7 +5972,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /postcss-svgo/5.1.0_postcss@8.4.8:
+ /postcss-svgo@5.1.0(postcss@8.4.8):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7937,7 +5983,7 @@ packages:
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.8):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -7947,19 +5993,19 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.23:
+ /postcss@8.4.23:
resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: false
+ dev: true
- /postcss/8.4.8:
+ /postcss@8.4.8:
resolution: {integrity: sha512-2tXEqGxrjvAO6U+CJzDL2Fk2kPHTv1jQsYkSoMeOis2SsYaXRO2COxTdQp99cYvif9JTXaAk9lYGc3VhJt7JPQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -7968,52 +6014,69 @@ packages:
source-map-js: 1.0.2
dev: true
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- dev: true
- /prettier-eslint/13.0.0:
- resolution: {integrity: sha512-P5K31qWgUOQCtJL/3tpvEe28KfP49qbr6MTVEXC7I2k7ci55bP3YDr+glhyCdhIzxGCVp2f8eobfQ5so52RIIA==}
- engines: {node: '>=10.0.0'}
+ /prettier-plugin-tailwindcss@0.2.8(prettier@2.5.1):
+ resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
+ engines: {node: '>=12.17.0'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@shufo/prettier-plugin-blade': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: '>=2.2.0'
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@shufo/prettier-plugin-blade':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
dependencies:
- '@typescript-eslint/parser': 3.10.1_eslint@7.32.0+typescript@3.9.10
- common-tags: 1.8.2
- dlv: 1.1.3
- eslint: 7.32.0
- indent-string: 4.0.0
- lodash.merge: 4.6.2
- loglevel-colored-level-prefix: 1.0.0
prettier: 2.5.1
- pretty-format: 23.6.0
- require-relative: 0.8.7
- typescript: 3.9.10
- vue-eslint-parser: 7.1.1_eslint@7.32.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /prettier-linter-helpers/1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- fast-diff: 1.2.0
dev: true
- /prettier/2.5.1:
+ /prettier@2.5.1:
resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-format/23.6.0:
- resolution: {integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==}
- dependencies:
- ansi-regex: 3.0.1
- ansi-styles: 3.2.1
- dev: true
-
- /pretty-format/26.6.2:
+ /pretty-format@26.6.2:
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
engines: {node: '>= 10'}
dependencies:
@@ -8021,32 +6084,23 @@ packages:
ansi-regex: 5.0.1
ansi-styles: 4.3.0
react-is: 17.0.2
- dev: true
- /process-nextick-args/2.0.1:
+ /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'}
- dev: true
- /promise/8.3.0:
+ /promise@8.3.0:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
- dev: true
- /prompts/2.4.2:
+ /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:
+ /prop-types-extra@1.1.1(react@17.0.2):
resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==}
peerDependencies:
react: '>=0.14.0'
@@ -8056,76 +6110,73 @@ packages:
warning: 4.0.3
dev: false
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- /pump/3.0.0:
+ /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:
+ /punycode@1.3.2:
resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
dev: false
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- dev: true
- /querystring/0.2.0:
- resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
+ /querystring@0.2.0:
+ resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
engines: {node: '>=0.4.x'}
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
dev: false
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-lru/5.1.1:
+ /quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
dev: true
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- dev: true
- /react-bootstrap/1.6.4_react-dom@17.0.2+react@17.0.2:
+ /react-bootstrap@1.6.4(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-z3BhBD4bEZuLP8VrYqAD7OT7axdcSkkyvWBWnS2U/4MhyabUihrUyucPWkan7aMI1XIHbmH4LCpEtzWGfx/yfA==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@babel/runtime': 7.17.2
- '@restart/context': 2.1.4_react@17.0.2
- '@restart/hooks': 0.3.27_react@17.0.2
+ '@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.5
'@types/react': 17.0.39
- '@types/react-transition-group': 4.4.6
+ '@types/react-transition-group': 4.4.5
'@types/warning': 3.0.0
classnames: 2.3.2
dom-helpers: 5.2.1
invariant: 2.2.4
prop-types: 15.8.1
- prop-types-extra: 1.1.1_react@17.0.2
+ 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.2.1_react-dom@17.0.2+react@17.0.2
- react-transition-group: 4.4.5_react-dom@17.0.2+react@17.0.2
- uncontrollable: 7.2.1_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-overlays: 5.2.1(react-dom@17.0.2)(react@17.0.2)
+ react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2)
+ uncontrollable: 7.2.1(react@17.0.2)
warning: 4.0.3
dev: false
- /react-datepicker/3.8.0_react-dom@17.0.2+react@17.0.2:
+ /react-datepicker@3.8.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-iFVNEp8DJoX5yEvEiciM7sJKmLGrvE70U38KhpG13XrulNSijeHw1RZkhd/0UmuXR71dcZB/kdfjiidifstZjw==}
peerDependencies:
react: ^16.9.0 || ^17
@@ -8135,12 +6186,12 @@ packages:
date-fns: 2.30.0
prop-types: 15.8.1
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-onclickoutside: 6.13.0_react-dom@17.0.2+react@17.0.2
- react-popper: 1.3.11_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-onclickoutside: 6.13.0(react-dom@17.0.2)(react@17.0.2)
+ react-popper: 1.3.11(react@17.0.2)
dev: false
- /react-devtools-core/4.27.6:
+ /react-devtools-core@4.27.6:
resolution: {integrity: sha512-jeFNhEzcSwpiqmw+zix5IFibNEPmUodICN7ClrlRKGktzO/3FMteMb52l1NRUiz/ABSYt9hOZ9IPgVDrg5pyUw==}
dependencies:
shell-quote: 1.8.1
@@ -8148,9 +6199,8 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: true
- /react-dom/17.0.2_react@17.0.2:
+ /react-dom@17.0.2(react@17.0.2):
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
react: 17.0.2
@@ -8159,13 +6209,12 @@ packages:
object-assign: 4.1.1
react: 17.0.2
scheduler: 0.20.2
- dev: false
- /react-fast-compare/3.2.1:
+ /react-fast-compare@3.2.1:
resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
dev: false
- /react-ga/3.3.0_prop-types@15.8.1+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
@@ -8175,7 +6224,7 @@ packages:
react: 17.0.2
dev: false
- /react-helmet/6.1.0_react@17.0.2:
+ /react-helmet@6.1.0(react@17.0.2):
resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==}
peerDependencies:
react: '>=16.3.0'
@@ -8184,10 +6233,10 @@ packages:
prop-types: 15.8.1
react: 17.0.2
react-fast-compare: 3.2.1
- react-side-effect: 2.1.2_react@17.0.2
+ react-side-effect: 2.1.2(react@17.0.2)
dev: false
- /react-i18next/11.15.6_ec84e0e897a5e285e9ddba67b24ffe21:
+ /react-i18next@11.15.6(i18next@19.9.2)(react-dom@17.0.2)(react-native@0.68.5)(react@17.0.2):
resolution: {integrity: sha512-OUWcFdNgIA9swVx3JGIreuquglAinpRwB/HYrCprTN+s9BQDt9LSiY7x5DGc2JzVpwqtpoTV7oRUTOxEPNyUPw==}
peerDependencies:
i18next: '>= 19.0.0'
@@ -8205,58 +6254,55 @@ packages:
html-parse-stringify: 3.0.1
i18next: 19.9.2
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-native: 0.68.7_24353ddb04343aa31089be039ffbe27f
+ react-dom: 17.0.2(react@17.0.2)
+ react-native: 0.68.5(@babel/core@7.17.5)(@babel/preset-env@7.16.11)(react@17.0.2)
dev: false
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- /react-is/18.2.0:
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: true
- /react-lifecycles-compat/3.0.4:
+ /react-lifecycles-compat@3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-native-codegen/0.0.18_@babel+preset-env@7.16.11:
+ /react-native-codegen@0.0.18(@babel/preset-env@7.16.11):
resolution: {integrity: sha512-XPI9aVsFy3dvgDZvyGWrFnknNiyb22kg5nHgxa0vjWTH9ENLBgVRZt9A64xHZ8BYihH+gl0p/1JNOCIEUzRPBg==}
dependencies:
'@babel/parser': 7.21.8
flow-parser: 0.121.0
- jscodeshift: 0.13.1_@babel+preset-env@7.16.11
+ 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.7:
+ /react-native-get-random-values@1.8.0(react-native@0.68.5):
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.7_24353ddb04343aa31089be039ffbe27f
+ react-native: 0.68.5(@babel/core@7.17.5)(@babel/preset-env@7.16.11)(react@17.0.2)
dev: false
- /react-native-gradle-plugin/0.0.6:
+ /react-native-gradle-plugin@0.0.6:
resolution: {integrity: sha512-eIlgtsmDp1jLC24dRn43hB3kEcZVqx6DUQbR0N1ABXGnMEafm9I3V3dUUeD1vh+Dy5WqijSoEwLNUPLgu5zDMg==}
- dev: true
- /react-native/0.68.7_24353ddb04343aa31089be039ffbe27f:
- resolution: {integrity: sha512-t7XvcwKyXhN9vR8GfgLUyEYYccwI390pG7debFSGns/5Vb0+/ZiGuSmVZGLNt1NVc3UH2zI2GGkDdSJR8Locig==}
+ /react-native@0.68.5(@babel/core@7.17.5)(@babel/preset-env@7.16.11)(react@17.0.2):
+ resolution: {integrity: sha512-t3kiQ/gumFV+0r/NRSIGtYxanjY4da0utFqHgkMcRPJVwXFWC0Fr8YiOeRGYO1dp8EfrSsOjtfWic/inqVYlbQ==}
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.4_react-native@0.68.7
+ '@react-native-community/cli': 7.0.4(@babel/core@7.17.5)(react-native@0.68.5)
'@react-native-community/cli-platform-android': 7.0.1
'@react-native-community/cli-platform-ios': 7.0.1
'@react-native/assets': 1.0.0
@@ -8270,7 +6316,7 @@ packages:
hermes-engine: 0.11.0
invariant: 2.2.4
jsc-android: 250230.2.1
- metro-react-native-babel-transformer: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0(@babel/core@7.17.5)
metro-runtime: 0.67.0
metro-source-map: 0.67.0
nullthrows: 1.1.1
@@ -8278,59 +6324,59 @@ packages:
promise: 8.3.0
react: 17.0.2
react-devtools-core: 4.27.6
- react-native-codegen: 0.0.18_@babel+preset-env@7.16.11
+ react-native-codegen: 0.0.18(@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
+ react-shallow-renderer: 16.14.1(react@17.0.2)
regenerator-runtime: 0.13.11
scheduler: 0.20.2
stacktrace-parser: 0.1.10
- use-subscription: 1.5.1_react@17.0.2
+ use-subscription: 1.5.1(react@17.0.2)
whatwg-fetch: 3.6.2
ws: 6.2.2
transitivePeerDependencies:
+ - '@babel/core'
- '@babel/preset-env'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /react-onclickoutside/6.13.0_react-dom@17.0.2+react@17.0.2:
+ /react-onclickoutside@6.13.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ty8So6tcUpIb+ZE+1HAhbLROvAIJYyJe/1vRrrcmW+jLsaM+/powDRqxzo6hSh9CuRZGSL1Q8mvcF5WRD93a0A==}
peerDependencies:
react: ^15.5.x || ^16.x || ^17.x || ^18.x
react-dom: ^15.5.x || ^16.x || ^17.x || ^18.x
dependencies:
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
dev: false
- /react-overlays/5.2.1_react-dom@17.0.2+react@17.0.2:
+ /react-overlays@5.2.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-GLLSOLWr21CqtJn8geSwQfoJufdt3mfdsnIiQswouuQ2MMPns+ihZklxvsTDKD3cR2tF8ELbi5xUsvqVhR6WvA==}
peerDependencies:
react: '>=16.3.0'
react-dom: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.21.5
- '@popperjs/core': 2.11.7
- '@restart/hooks': 0.4.9_react@17.0.2
+ '@babel/runtime': 7.17.2
+ '@popperjs/core': 2.11.6
+ '@restart/hooks': 0.4.9(react@17.0.2)
'@types/warning': 3.0.0
dom-helpers: 5.2.1
prop-types: 15.8.1
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- uncontrollable: 7.2.1_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ uncontrollable: 7.2.1(react@17.0.2)
warning: 4.0.3
dev: false
- /react-popper/1.3.11_react@17.0.2:
+ /react-popper@1.3.11(react@17.0.2):
resolution: {integrity: sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==}
peerDependencies:
react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.21.5
- '@hypnosphi/create-react-context': 0.3.1_prop-types@15.8.1+react@17.0.2
+ '@babel/runtime': 7.17.2
+ '@hypnosphi/create-react-context': 0.3.1(prop-types@15.8.1)(react@17.0.2)
deep-equal: 1.1.1
popper.js: 1.16.1
prop-types: 15.8.1
@@ -8339,63 +6385,48 @@ packages:
warning: 4.0.3
dev: false
- /react-refresh/0.10.0:
- resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==}
+ /react-refresh@0.13.0:
+ resolution: {integrity: sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg==}
engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
- /react-refresh/0.4.3:
+ /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'}
- 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.11.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-dPC2MhoPeTQ1YUOt5uIK376SMNWbwUxYRWk2ZmTT4fZfwlOvabF8uduRKKJIyfkCZvMgiF0GSCQckmkGGijIrg==}
+ /react-router-dom@6.7.0(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-jQtXUJyhso3kFw430+0SPCbmCmY1/kJv8iRffGHwHy3CkoomGxeYzMkmeSPYo6Egzh3FKJZRAL22yg5p2tXtfg==}
engines: {node: '>=14'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@remix-run/router': 1.6.1
+ '@remix-run/router': 1.3.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-router: 6.11.1_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-router: 6.7.0(react@17.0.2)
dev: false
- /react-router/6.11.1_react@17.0.2:
- resolution: {integrity: sha512-OZINSdjJ2WgvAi7hgNLazrEV8SGn6xrKA+MkJe9wVDMZ3zQ6fdJocUjpCUCI0cNrelWjcvon0S/QK/j0NzL3KA==}
+ /react-router@6.7.0(react@17.0.2):
+ resolution: {integrity: sha512-KNWlG622ddq29MAM159uUsNMdbX8USruoKnwMMQcs/QWZgFUayICSn2oB7reHce1zPj6CG18kfkZIunSSRyGHg==}
engines: {node: '>=14'}
peerDependencies:
react: '>=16.8'
dependencies:
- '@remix-run/router': 1.6.1
+ '@remix-run/router': 1.3.0
react: 17.0.2
dev: false
- /react-shallow-renderer/16.14.1_react@17.0.2:
+ /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-is: 17.0.2
- /react-side-effect/2.1.2_react@17.0.2:
+ /react-side-effect@2.1.2(react@17.0.2):
resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==}
peerDependencies:
react: ^16.3.0 || ^17.0.0 || ^18.0.0
@@ -8403,29 +6434,28 @@ packages:
react: 17.0.2
dev: false
- /react-transition-group/4.4.5_react-dom@17.0.2+react@17.0.2:
+ /react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.17.2
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
+ react-dom: 17.0.2(react@17.0.2)
dev: false
- /react/17.0.2:
+ /react@17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- dev: false
- /readable-stream/2.3.8:
+ /readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
@@ -8435,29 +6465,26 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
- dev: true
- /readable-stream/3.6.2:
+ /readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- dev: true
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
dev: true
- /readline/1.3.0:
+ /readline@1.3.0:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
- dev: true
- /recast/0.20.5:
+ /recast@0.20.5:
resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
engines: {node: '>= 4'}
dependencies:
@@ -8465,50 +6492,45 @@ packages:
esprima: 4.0.1
source-map: 0.6.1
tslib: 2.5.0
- dev: true
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- dev: true
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: true
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.21.5
- dev: true
+ '@babel/runtime': 7.17.2
- /regex-not/1.0.2:
+ /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.5.0:
+ /regexp.prototype.flags@1.5.0:
resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
functions-have-names: 1.2.3
+ dev: false
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
- dev: true
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -8518,59 +6540,41 @@ packages:
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- dev: true
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- dev: true
- /repeat-element/1.1.4:
+ /repeat-element@1.1.4:
resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /repeat-string/1.6.1:
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- dev: true
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- dev: true
-
- /require-from-string/2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
- dev: true
- /require-main-filename/2.0.0:
+ /require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- dev: true
- /require-relative/0.8.7:
- resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
- dev: true
-
- /resolve-from/3.0.0:
+ /resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
- dev: true
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- dev: true
- /resolve-url/0.2.1:
+ /resolve-url@0.2.1:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- dev: true
- /resolve/1.22.2:
+ /resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
@@ -8578,109 +6582,82 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
- hasBin: true
- dependencies:
- is-core-module: 2.12.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
-
- /restore-cursor/2.0.0:
+ /restore-cursor@2.0.0:
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
engines: {node: '>=4'}
dependencies:
onetime: 2.0.1
signal-exit: 3.0.7
- dev: true
- /restore-cursor/3.1.0:
+ /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:
+ /ret@0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
- dev: true
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rimraf/2.2.8:
+ /rimraf@2.2.8:
resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
hasBin: true
- dev: true
- /rimraf/2.6.3:
+ /rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rimraf/2.7.1:
+ /rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rollup/2.77.3:
- resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
- engines: {node: '>=10.0.0'}
+ /rollup@3.21.5:
+ resolution: {integrity: sha512-a4NTKS4u9PusbUJcfF4IMxuqjFzjm6ifj76P54a7cKnvVzJaG12BLVR+hgU2YDGHzyMMQNxLAZWuALsn8q2oQg==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
- dev: false
+ dev: true
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
dev: true
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: true
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: true
-
- /safe-regex-test/1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-regex: 1.1.4
- dev: true
- /safe-regex/1.1.0:
+ /safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
- dev: true
- /sass/1.49.9:
+ /sass@1.49.9:
resolution: {integrity: sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -8690,34 +6667,24 @@ packages:
source-map-js: 1.0.2
dev: true
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
- dev: true
- /scheduler/0.20.2:
+ /scheduler@0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
- dev: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- /semver/7.5.0:
- resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: true
-
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -8734,14 +6701,14 @@ packages:
on-finished: 2.4.1
range-parser: 1.2.1
statuses: 2.0.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /serialize-error/2.1.0:
+ /serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- dev: true
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -8749,13 +6716,13 @@ packages:
escape-html: 1.0.3
parseurl: 1.3.3
send: 0.18.0
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /set-blocking/2.0.0:
+ /set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- dev: true
- /set-value/2.0.1:
+ /set-value@2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -8763,127 +6730,95 @@ packages:
is-extendable: 0.1.1
is-plain-object: 2.0.4
split-string: 3.1.0
- dev: true
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- dev: true
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- dev: true
-
- /shallow-equal/1.2.1:
- resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==}
- dev: false
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- dev: false
- /shebang-command/1.2.0:
+ /shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
- dev: true
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- dev: true
- /shebang-regex/1.0.0:
+ /shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- dev: true
- /shell-quote/1.8.1:
+ /shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- dev: true
-
- /side-channel/1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- object-inspect: 1.12.3
- dev: true
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: true
- /simple-plist/1.3.1:
+ /simple-plist@1.3.1:
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
dependencies:
bplist-creator: 0.1.0
bplist-parser: 0.3.1
plist: 3.0.6
- dev: true
- /single-spa-react/3.2.0_react@17.0.2:
- resolution: {integrity: sha512-s8K7AuS26WvN9n81z1NBlnZIe/Hin423P8jYLuG/DCNTYo5JbJMS5+Cb/wQd4ikG6YqoedpV4cb7nAcxvlLyhg==}
+ /single-spa-react@4.6.1(@types/react-dom@17.0.13)(@types/react@17.0.39)(react@17.0.2):
+ 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
+ browserslist-config-single-spa: 1.0.1
react: 17.0.2
dev: false
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- dev: true
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- dev: true
- /slice-ansi/2.1.0:
+ /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'}
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
- dev: true
- /snapdragon-node/2.1.1:
+ /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:
+ /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:
+ /snapdragon@0.8.2:
resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -8895,13 +6830,15 @@ packages:
source-map: 0.5.7
source-map-resolve: 0.5.3
use: 3.1.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
+ dev: true
- /source-map-resolve/0.5.3:
+ /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:
@@ -8910,189 +6847,114 @@ packages:
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
- dev: true
- /source-map-support/0.5.21:
+ /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-url/0.4.1:
+ /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:
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- dev: true
- /source-map/0.7.4:
+ /source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- dev: true
- /spawn-command/0.0.2-1:
+ /spawn-command@0.0.2-1:
resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
dev: true
- /split-string/3.1.0:
+ /split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 3.0.2
- dev: true
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- dev: true
- /stable/0.1.8:
+ /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
- /stackframe/1.3.4:
+ /stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
- dev: true
- /stacktrace-parser/0.1.10:
+ /stacktrace-parser@0.1.10:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
dependencies:
type-fest: 0.7.1
- dev: true
- /static-extend/0.1.2:
+ /static-extend@0.1.2:
resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
engines: {node: '>=0.10.0'}
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
- dev: true
- /statuses/1.5.0:
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- dev: true
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- dev: true
- /stream-buffers/2.2.0:
+ /stream-buffers@2.2.0:
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
engines: {node: '>= 0.10.0'}
- dev: true
-
- /string-natural-compare/3.0.1:
- resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
- dev: true
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- dev: true
-
- /string.prototype.matchall/4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
- dev: true
-
- /string.prototype.trim/1.2.7:
- resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /string.prototype.trimend/1.0.6:
- resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /string.prototype.trimstart/1.0.6:
- resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /string_decoder/1.1.1:
+ /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:
+ /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: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /strip-ansi/5.2.0:
+ /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:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- dev: true
-
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
- /strip-eof/1.0.0:
+ /strip-eof@1.0.0:
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- dev: true
- /styled-components/5.3.3_af520ff3c650e6a6d05e9a79e9549b09:
+ /styled-components@5.3.3(react-dom@17.0.2)(react-is@18.2.0)(react@17.0.2):
resolution: {integrity: sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==}
engines: {node: '>=10'}
peerDependencies:
@@ -9101,21 +6963,20 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.21.4
- '@babel/traverse': 7.21.5_supports-color@5.5.0
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 0.8.8
'@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.6(styled-components@5.3.3)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-is: 18.2.0
shallowequal: 1.1.0
supports-color: 5.5.0
- dev: false
- /stylehacks/5.1.1_postcss@8.4.8:
+ /stylehacks@5.1.1(postcss@8.4.8):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -9126,40 +6987,32 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /sudo-prompt/9.2.1:
+ /sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
- dev: true
-
- /supports-color/2.0.0:
- resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
- engines: {node: '>=0.8.0'}
- dev: true
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -9173,26 +7026,16 @@ packages:
stable: 0.1.8
dev: true
- /table/6.8.1:
- resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
- engines: {node: '>=10.0.0'}
- dependencies:
- ajv: 8.12.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:
+ /tailwindcss@3.0.23(autoprefixer@10.4.2)(postcss@8.4.8):
resolution: {integrity: sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==}
engines: {node: '>=12.13.0'}
hasBin: true
peerDependencies:
autoprefixer: ^10.0.2
+ postcss: ^8.0.9
dependencies:
arg: 5.0.2
- autoprefixer: 10.4.2_postcss@8.4.8
+ autoprefixer: 10.4.2(postcss@8.4.8)
chalk: 4.1.2
chokidar: 3.5.3
color-name: 1.1.4
@@ -9206,9 +7049,9 @@ packages:
normalize-path: 3.0.0
object-hash: 2.2.0
postcss: 8.4.8
- postcss-js: 4.0.1_postcss@8.4.8
- postcss-load-config: 3.1.4_postcss@8.4.8
- postcss-nested: 5.0.6_postcss@8.4.8
+ postcss-js: 4.0.1(postcss@8.4.8)
+ postcss-load-config: 3.1.4(postcss@8.4.8)
+ postcss-nested: 5.0.6(postcss@8.4.8)
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
@@ -9217,70 +7060,58 @@ packages:
- ts-node
dev: true
- /temp/0.8.3:
+ /temp@0.8.3:
resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==}
engines: {'0': node >=0.8.0}
dependencies:
os-tmpdir: 1.0.2
rimraf: 2.2.8
- dev: true
- /temp/0.8.4:
+ /temp@0.8.4:
resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
engines: {node: '>=6.0.0'}
dependencies:
rimraf: 2.6.3
- dev: true
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: true
- /throat/5.0.0:
+ /throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- dev: true
- /through2/2.0.5:
+ /through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
readable-stream: 2.3.8
xtend: 4.0.2
- dev: true
-
- /tiny-warning/1.0.3:
- resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- dev: false
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- dev: true
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-object-path/0.3.0:
+ /to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
- dev: true
- /to-regex-range/2.1.1:
+ /to-regex-range@2.1.1:
resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
repeat-string: 1.6.1
- dev: true
- /to-regex-range/5.0.1:
+ /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:
+ /to-regex@3.0.2:
resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -9288,102 +7119,54 @@ packages:
extend-shallow: 3.0.2
regex-not: 1.0.2
safe-regex: 1.1.0
- dev: true
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- dev: true
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /tree-kill/1.2.2:
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
dev: true
- /ts-config-single-spa/2.0.1:
+ /ts-config-single-spa@2.0.1:
resolution: {integrity: sha512-zGTozFbnMqdoNCsOJ+gqYSJNIm7QUJtN/3o8uyOCuFxwfrBETQ+lyHnvvgVO29IEVhhrnOp6NQAyOIVE8lmqxA==}
dev: true
- /tsconfig-paths/3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
-
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.5.0:
+ /tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
- /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
-
- /tsutils/3.21.0_typescript@4.6.2:
- 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
- dev: true
-
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- dev: true
- /type-fest/0.7.1:
+ /type-fest@0.7.1:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- dev: true
- /typed-array-length/1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- dependencies:
- call-bind: 1.0.2
- for-each: 0.3.3
- is-typed-array: 1.1.10
- dev: true
-
- /typed-styles/0.0.7:
+ /typed-styles@0.0.7:
resolution: {integrity: sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==}
dev: false
- /typescript/3.9.10:
- resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
- engines: {node: '>=4.2.0'}
- hasBin: true
- dev: true
-
- /typescript/4.6.2:
+ /typescript@4.6.2:
resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /uglify-es/3.3.9:
+ /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
@@ -9391,57 +7174,43 @@ packages:
dependencies:
commander: 2.13.0
source-map: 0.6.1
- dev: true
-
- /unbox-primitive/1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
- dependencies:
- call-bind: 1.0.2
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
- dev: true
- /uncontrollable/7.2.1_react@17.0.2:
+ /uncontrollable@7.2.1(react@17.0.2):
resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==}
peerDependencies:
react: '>=15.0.0'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.17.2
'@types/react': 17.0.39
invariant: 2.2.4
react: 17.0.2
react-lifecycles-compat: 3.0.4
dev: false
- /unfetch/4.2.0:
+ /unfetch@4.2.0:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
dev: false
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- dev: true
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- dev: true
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- dev: true
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- dev: true
- /union-value/1.0.1:
+ /union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -9449,34 +7218,30 @@ packages:
get-value: 2.0.6
is-extendable: 0.1.1
set-value: 2.0.1
- dev: true
- /universal-cookie/4.0.4:
+ /universal-cookie@4.0.4:
resolution: {integrity: sha512-lbRVHoOMtItjWbM7TwDLdl8wug7izB0tq3/YVKhT/ahB4VDvWMyvnADfnJI8y6fSvsjh51Ix7lTGC6Tn4rMPhw==}
dependencies:
'@types/cookie': 0.3.3
cookie: 0.4.2
dev: false
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- dev: true
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- dev: true
- /unset-value/1.0.0:
+ /unset-value@1.0.0:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
dependencies:
has-value: 0.3.1
isobject: 3.0.1
- dev: true
- /update-browserslist-db/1.0.11_browserslist@4.21.5:
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
@@ -9486,219 +7251,171 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
- dev: true
- /urix/0.1.0:
+ /urix@0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
- dev: true
- /url/0.11.0:
+ /url@0.11.0:
resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
dependencies:
punycode: 1.3.2
querystring: 0.2.0
dev: false
- /use-subscription/1.5.1_react@17.0.2:
+ /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:
+ /use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: true
- /utils-merge/1.0.1:
- resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ /utils-merge@1.0.1:
+ resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
engines: {node: '>= 0.4.0'}
- dev: true
- /uuid/3.4.0:
+ /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
- /uuid/7.0.3:
+ /uuid@7.0.3:
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
- dev: true
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
- dev: true
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- dev: true
- /vite-plugin-dynamic-import/0.7.1:
+ /vite-plugin-dynamic-import@0.7.1:
resolution: {integrity: sha512-Rq8I91rojmxo6y0ZWO9fOCvluEP6yqmmOF0uyD/O9gOWh0KS6IzNjW3MPIqB//qXjXlXbodZOa5P5zz76BYn6A==}
dependencies:
fast-glob: 3.2.12
vite-plugin-utils: 0.1.0
dev: false
- /vite-plugin-utils/0.1.0:
+ /vite-plugin-utils@0.1.0:
resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
dependencies:
acorn-walk: 8.2.0
fast-glob: 3.2.12
dev: false
- /vite/2.9.15_sass@1.49.9:
- resolution: {integrity: sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==}
- engines: {node: '>=12.2.0'}
+ /vite@4.3.5(@types/node@17.0.21)(sass@1.49.9):
+ resolution: {integrity: sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- esbuild: 0.14.43
+ '@types/node': 17.0.21
+ esbuild: 0.17.18
postcss: 8.4.23
- resolve: 1.22.2
- rollup: 2.77.3
+ rollup: 3.21.5
sass: 1.49.9
optionalDependencies:
fsevents: 2.3.2
- dev: false
+ dev: true
- /vlq/1.0.1:
+ /vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- dev: true
- /void-elements/3.1.0:
- resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
+ /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'
- 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.5.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /walker/1.0.8:
+ /walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
makeerror: 1.0.12
- dev: true
- /warning/4.0.3:
+ /warning@4.0.3:
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
dependencies:
loose-envify: 1.4.0
dev: false
- /wcwidth/1.0.1:
+ /wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
- dev: true
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- /whatwg-fetch/3.6.2:
+ /whatwg-fetch@3.6.2:
resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
- dev: true
- /whatwg-url/5.0.0:
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /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.7
- is-string: 1.0.7
- is-symbol: 1.0.4
- dev: true
-
- /which-module/2.0.1:
+ /which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- dev: true
-
- /which-typed-array/1.1.9:
- resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- is-typed-array: 1.1.10
- dev: true
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
- dev: true
- /which/2.0.2:
+ /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:
+ /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:
+ /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:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -9707,25 +7424,30 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- dev: true
- /write-file-atomic/2.4.3:
+ /write-file-atomic@2.4.3:
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
dependencies:
graceful-fs: 4.2.11
imurmurhash: 0.1.4
signal-exit: 3.0.7
- dev: true
- /ws/6.2.2:
+ /ws@6.2.2:
resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
dependencies:
async-limiter: 1.0.1
- dev: true
- /ws/7.5.9:
+ /ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -9736,67 +7458,56 @@ packages:
optional: true
utf-8-validate:
optional: true
- dev: true
- /xcode/3.0.1:
+ /xcode@3.0.1:
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
engines: {node: '>=10.0.0'}
dependencies:
simple-plist: 1.3.1
uuid: 7.0.3
- dev: true
- /xmlbuilder/15.1.1:
+ /xmlbuilder@15.1.1:
resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
engines: {node: '>=8.0'}
- dev: true
- /xmldoc/1.3.0:
+ /xmldoc@1.3.0:
resolution: {integrity: sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==}
dependencies:
sax: 1.2.4
- dev: true
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- dev: true
- /y18n/4.0.3:
+ /y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
- dev: true
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
dev: true
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- /yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: true
-
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
dev: true
- /yargs-parser/18.1.3:
+ /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:
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
- /yargs/15.4.1:
+ /yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
dependencies:
@@ -9811,9 +7522,8 @@ packages:
which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 18.1.3
- dev: true
- /yargs/16.2.0:
+ /yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
dependencies:
@@ -9826,13 +7536,13 @@ packages:
yargs-parser: 20.2.9
dev: true
- /zen-observable-ts/0.8.19:
+ /zen-observable-ts@0.8.19:
resolution: {integrity: sha512-u1a2rpE13G+jSzrg3aiCqXU5tN2kw41b+cBZGmnc+30YimdkKiDj9bTowcB41eL77/17RF/h+393AuVgShyheQ==}
dependencies:
tslib: 1.14.1
zen-observable: 0.8.15
dev: false
- /zen-observable/0.8.15:
+ /zen-observable@0.8.15:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
dev: false
diff --git a/apps/campus/src/App.tsx b/apps/campus/src/App.tsx
index 60ce6c3a8..79919307f 100644
--- a/apps/campus/src/App.tsx
+++ b/apps/campus/src/App.tsx
@@ -1,17 +1,17 @@
-import React, { lazy } from "react";
+import React, { lazy } from "react"
-import Header from "@bit/wasedatime.core.ts.ui.header";
-import { useTranslation } from "react-i18next";
+import { Header } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
-import { ThemeContext } from "@app/utils/theme-context";
-import "@app/styles/wasedatime-campus.scss";
+import { ThemeContext } from "@app/utils/theme-context"
+import "@app/styles/wasedatime-campus.scss"
-const Bus = lazy(() => import("@app/bus/Bus"));
-const RoomFinder = lazy(() => import("@app/room/RoomFinder"));
+const Bus = lazy(() => import("@app/bus/Bus"))
+const RoomFinder = lazy(() => import("@app/room/RoomFinder"))
const App = () => {
- const { t, i18n } = useTranslation();
- const { theme, setTheme } = React.useContext(ThemeContext);
+ const { t, i18n } = useTranslation()
+ const { theme, setTheme } = React.useContext(ThemeContext)
return (
@@ -33,7 +33,7 @@ const App = () => {
- );
-};
+ )
+}
-export default App;
+export default App
diff --git a/apps/campus/src/bus/Bus.tsx b/apps/campus/src/bus/Bus.tsx
index ff058e0d9..e498f9b01 100644
--- a/apps/campus/src/bus/Bus.tsx
+++ b/apps/campus/src/bus/Bus.tsx
@@ -1,42 +1,42 @@
-import React, { forwardRef, useState, useEffect } from "react";
+import React, { forwardRef, useState, useEffect } from "react"
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
+import { media } from "wasedatime-ui"
import {
faClock,
faAngleDoubleRight,
faSearch,
faCalendarAlt,
faTimes,
-} from "@fortawesome/free-solid-svg-icons";
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import DatePicker from "react-datepicker";
-import { Helmet } from "react-helmet";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+} from "@fortawesome/free-solid-svg-icons"
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
+import DatePicker from "react-datepicker"
+import { Helmet } from "react-helmet"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import { busSchedule } from "@app/constants/busSchedule";
-import { ThemeContext } from "@app/utils/theme-context";
+import { busSchedule } from "@app/constants/busSchedule"
+import { ThemeContext } from "@app/utils/theme-context"
const wasedaNishiwasedaBusUri =
- "https://www.waseda.jp/fsci/assets/uploads/2020/09/20200925_waseda_nishiwaseda-1.pdf";
+ "https://www.waseda.jp/fsci/assets/uploads/2020/09/20200925_waseda_nishiwaseda-1.pdf"
const InfoWrapper = styled("div")`
display: flex;
flex-direction: column;
padding: 2em 20em;
- ${media.desktop`padding: 2em;`}
-`;
+ ${media("desktop", `padding: 2em;`)}
+`
const StyledAnchor = styled("a")`
margin: 1.5rem 0px;
font-size: 1.8rem;
font-weight: 400;
text-decoration: underline;
-`;
+`
const BusStatus = styled("article")`
margin: 1.5rem 0px;
-`;
+`
const StyledSubHeading = styled("h2")`
align-self: flex-start;
@@ -46,28 +46,28 @@ const StyledSubHeading = styled("h2")`
font-size: 2.5rem;
font-weight: 300;
color: #ffffff;
- ${media.phone`font-size: 2rem;`}
-`;
+ ${media("phone", `font-size: 2rem;`)}
+`
const Status = styled("section")`
font-size: 2rem;
margin-bottom: 1rem;
-`;
+`
const Remark = styled("section")`
font-size: 1.5rem;
-`;
+`
const DatetimeSelection = styled("div")`
background: #fff;
border-radius: 5px;
cursor: pointer;
-`;
+`
const DatePickerSpan = styled("span")`
display: inline-block;
width: 38%;
-`;
+`
const DatePickerButton = styled("button")`
padding: 0.5em 0.8em;
@@ -78,9 +78,9 @@ const DatePickerButton = styled("button")`
outline: none;
background: #ddd;
}
- ${media.phone`padding: 0.5em 0.3em;`}
- ${media.phoneMini`font-size: 0.9em;`}
-`;
+ ${media("phone", "padding: 0.5em 0.3em;")}
+ ${media("phoneMini", "font-size: 0.9em;")}
+`
const DatetimeClearButton = styled("button")`
padding: 0.5em 0.8em 0.5em 0.4em;
@@ -95,182 +95,182 @@ const DatetimeClearButton = styled("button")`
&:focus {
outline: none;
}
- ${media.phone`padding: 0.5em 0.3em;`}
- ${media.phoneMini`font-size: 0.9em;`}
-`;
+ ${media("phone", "padding: 0.5em 0.3em;")}
+ ${media("phoneMini", "font-size: 0.9em;")}
+`
interface PropsType {
- value: string;
- onClick: (e: React.MouseEvent) => void;
+ value: string
+ onClick: (e: React.MouseEvent) => void
}
const binarySearch = (value, arr) => {
- let start = 0;
- let end = arr.length - 1;
+ let start = 0
+ let end = arr.length - 1
while (start <= end) {
- const mid = Math.floor((start + end) / 2);
+ const mid = Math.floor((start + end) / 2)
if (arr[mid] === value) {
- return true;
+ return true
}
if (arr[mid] > value) {
- end = mid - 1;
+ end = mid - 1
} else {
- start = mid + 1;
+ start = mid + 1
}
}
- return false;
-};
+ return false
+}
const getSchduleType = (month, date, day) => {
- const monthString = month.toString();
+ const monthString = month.toString()
const { outOfService, weekdaySchedule, saturdaySchedule, specialSchedule } =
- busSchedule.exceptions;
+ busSchedule.exceptions
if (
monthString in outOfService &&
binarySearch(date, outOfService[monthString])
) {
- return "noSchedule";
+ return "noSchedule"
}
if (
monthString in weekdaySchedule &&
binarySearch(date, weekdaySchedule[monthString])
) {
- return "weekday";
+ return "weekday"
}
if (
monthString in saturdaySchedule &&
binarySearch(date, saturdaySchedule[monthString])
) {
- return "saturday";
+ return "saturday"
}
if (
monthString in specialSchedule &&
binarySearch(date, specialSchedule[monthString])
) {
- return "special";
+ return "special"
}
if (day === 0) {
- return "noSchedule";
+ return "noSchedule"
}
if (day === 6) {
- return "saturday";
+ return "saturday"
}
- return "weekday";
-};
+ return "weekday"
+}
const binarySearchSchedule = (totalMins, schedule) => {
- let start = 0;
- let end = schedule.length - 1;
- let ans = 0;
- let index = 0;
+ let start = 0
+ let end = schedule.length - 1
+ let ans = 0
+ let index = 0
while (start <= end) {
- const mid = Math.floor((start + end) / 2);
+ const mid = Math.floor((start + end) / 2)
if (schedule[mid] === totalMins) {
- ans = schedule[mid];
- index = mid;
- break;
+ ans = schedule[mid]
+ index = mid
+ break
} else if (schedule[mid] > totalMins) {
- end = mid - 1;
- index = mid;
+ end = mid - 1
+ index = mid
} else {
- start = mid + 1;
- index = mid + 1;
+ start = mid + 1
+ index = mid + 1
}
}
if (ans !== 0) {
- return ans;
+ return ans
}
// Return value -1 if totalMins is larger than all bus schedule values,
// meaning no service.
- return index >= schedule.length ? -1 : schedule[index];
-};
+ return index >= schedule.length ? -1 : schedule[index]
+}
const totalMinsToTimeStr = (totalMins) => {
- const hours = Math.floor(totalMins / 60);
- const minutes = totalMins - hours * 60;
- const hoursString = hours < 10 ? `0${hours}` : `${hours}`;
- const minsString = minutes < 10 ? `0${minutes}` : `${minutes}`;
+ const hours = Math.floor(totalMins / 60)
+ const minutes = totalMins - hours * 60
+ const hoursString = hours < 10 ? `0${hours}` : `${hours}`
+ const minsString = minutes < 10 ? `0${minutes}` : `${minutes}`
- return `${hoursString}:${minsString}`;
-};
+ return `${hoursString}:${minsString}`
+}
// TODO Fix mixing different return types
const getBusStatus = (totalMins, occurrences, remarks, t) => {
- const nextTotalMins = binarySearchSchedule(totalMins, occurrences);
+ const nextTotalMins = binarySearchSchedule(totalMins, occurrences)
// If there is there exists a subsequent bus schedule on the same day
if (nextTotalMins !== -1) {
const remark =
- nextTotalMins in remarks ? remarks[nextTotalMins.toString()] : "";
- const nextTimeString = totalMinsToTimeStr(nextTotalMins);
+ nextTotalMins in remarks ? remarks[nextTotalMins.toString()] : ""
+ const nextTimeString = totalMinsToTimeStr(nextTotalMins)
return {
departIn: nextTotalMins - totalMins,
timeString: nextTimeString,
remark,
- };
+ }
}
- return t("bus.Out of service");
-};
+ return t("bus.Out of service")
+}
const getBusStatuses = (targetDate, lng, t) => {
- const month = targetDate.getMonth();
- const date = targetDate.getDate();
- const day = targetDate.getDay();
+ const month = targetDate.getMonth()
+ const date = targetDate.getDate()
+ const day = targetDate.getDay()
// assertion language at first
- let wasedaStatus;
- let nishiStatus;
- wasedaStatus = t("bus.Out of service");
- nishiStatus = t("bus.Out of service");
- const scheduleType = getSchduleType(month, date, day);
+ let wasedaStatus
+ let nishiStatus
+ wasedaStatus = t("bus.Out of service")
+ nishiStatus = t("bus.Out of service")
+ const scheduleType = getSchduleType(month, date, day)
// No buses or special schedule
if (scheduleType === "noSchedule") {
- return { wasedaStatus, nishiStatus };
+ return { wasedaStatus, nishiStatus }
}
if (scheduleType === "special") {
- wasedaStatus = t("bus.Special Schedule");
- nishiStatus = t("bus.Special Schedule");
+ wasedaStatus = t("bus.Special Schedule")
+ nishiStatus = t("bus.Special Schedule")
- return { wasedaStatus, nishiStatus };
+ return { wasedaStatus, nishiStatus }
}
// Weekday schedule or Saturday schedule
- const totalMins = targetDate.getHours() * 60 + targetDate.getMinutes();
- const wasedaSchedule = busSchedule[scheduleType].fromWasedaToNishiWaseda;
- const nishiSchedule = busSchedule[scheduleType].fromNishiWasedaToWaseda;
+ const totalMins = targetDate.getHours() * 60 + targetDate.getMinutes()
+ const wasedaSchedule = busSchedule[scheduleType].fromWasedaToNishiWaseda
+ const nishiSchedule = busSchedule[scheduleType].fromNishiWasedaToWaseda
if (lng === "en") {
wasedaStatus = getBusStatus(
totalMins,
wasedaSchedule.occurrences,
wasedaSchedule.remarks_en,
t
- );
+ )
nishiStatus = getBusStatus(
totalMins,
nishiSchedule.occurrences,
nishiSchedule.remarks_en,
t
- );
+ )
} else if (lng === "ja") {
wasedaStatus = getBusStatus(
totalMins,
wasedaSchedule.occurrences,
wasedaSchedule.remarks_jp,
t
- );
+ )
nishiStatus = getBusStatus(
totalMins,
nishiSchedule.occurrences,
nishiSchedule.remarks_jp,
t
- );
+ )
}
- return { wasedaStatus, nishiStatus };
-};
+ return { wasedaStatus, nishiStatus }
+}
const createStatusComponent = (status, t) => {
if (typeof status === "object") {
@@ -283,18 +283,18 @@ const createStatusComponent = (status, t) => {
),
remark: status.remark,
- };
+ }
}
return {
status: {status},
remark: "",
- };
-};
+ }
+}
-const DateSelectorWrapper = (props: any) => ;
+const DateSelectorWrapper = (props: any) =>
-const TimeSelectorWrapper = (props: any) => ;
+const TimeSelectorWrapper = (props: any) =>
const DateSelector = forwardRef(({ value, onClick }, ref) => (
(({ value, onClick }, ref) => (
>
{value}
-));
+))
const TimeSelector = forwardRef(({ value, onClick }, ref) => (
{value}
-));
+))
const Bus = (): JSX.Element => {
- const { theme, setTheme } = React.useContext(ThemeContext);
+ const { theme, setTheme } = React.useContext(ThemeContext)
- const [date, setDate] = useState(new Date());
- const onDatetimeChange = (date: Date): void => setDate(date || new Date());
- const clearDatetime = (): void => setDate(new Date());
+ const [date, setDate] = useState(new Date())
+ const onDatetimeChange = (date: Date): void => setDate(date || new Date())
+ const clearDatetime = (): void => setDate(new Date())
- const { t, i18n } = useTranslation();
+ const { t, i18n } = useTranslation()
useEffect(() => {
- i18n.changeLanguage(localStorage.getItem("wasedatime-lng"));
- }, []);
+ i18n.changeLanguage(localStorage.getItem("wasedatime-lng"))
+ }, [])
- const lng = i18n.language;
- const { wasedaStatus, nishiStatus } = getBusStatuses(date, lng, t);
- const wasedaStatusComponent = createStatusComponent(wasedaStatus, t);
- const nishiStatusComponent = createStatusComponent(nishiStatus, t);
+ const lng = i18n.language
+ const { wasedaStatus, nishiStatus } = getBusStatuses(date, lng, t)
+ const wasedaStatusComponent = createStatusComponent(wasedaStatus, t)
+ const nishiStatusComponent = createStatusComponent(nishiStatus, t)
return (
@@ -351,7 +351,7 @@ const Bus = (): JSX.Element => {
paddingLeft: "10px",
marginBottom: "20px",
}}
- className="text-light-text1 dark:text-dark-text1 border-l-4 border-solid border-light-main dark:border-dark-main"
+ className="border-l-4 border-solid border-light-main text-light-text1 dark:border-dark-main dark:text-dark-text1"
>
{t("bus.busStatus")}
@@ -391,7 +391,7 @@ const Bus = (): JSX.Element => {
-
+
{t("bus.Waseda")}{" "}
{" "}
{t("bus.NishiWaseda")}
@@ -404,7 +404,7 @@ const Bus = (): JSX.Element => {
-
+
{t("bus.NishiWaseda")}{" "}
{" "}
{t("bus.Waseda")}
@@ -421,7 +421,7 @@ const Bus = (): JSX.Element => {
- );
-};
+ )
+}
-export default Bus;
+export default Bus
diff --git a/apps/campus/src/constants/busSchedule.ts b/apps/campus/src/constants/busSchedule.ts
index 3b15782c2..d644af51f 100644
--- a/apps/campus/src/constants/busSchedule.ts
+++ b/apps/campus/src/constants/busSchedule.ts
@@ -1,6 +1,6 @@
const getTotalMins = (hours: number, mins: number) => {
- return 60 * hours + mins;
-};
+ return 60 * hours + mins
+}
export const busSchedule = {
// Weekday schedule
@@ -189,4 +189,4 @@ export const busSchedule = {
11: [24, 25, 26, 27],
},
},
-};
+}
diff --git a/apps/campus/src/constants/campus_quart.ts b/apps/campus/src/constants/campus_quart.ts
index d402da393..49aa3e063 100644
--- a/apps/campus/src/constants/campus_quart.ts
+++ b/apps/campus/src/constants/campus_quart.ts
@@ -26711,4 +26711,4 @@ export const campuses = {
],
},
},
-};
+}
diff --git a/apps/campus/src/room/Building.tsx b/apps/campus/src/room/Building.tsx
index 2c68050c4..1ed9556db 100644
--- a/apps/campus/src/room/Building.tsx
+++ b/apps/campus/src/room/Building.tsx
@@ -1,18 +1,18 @@
-import React from "react";
+import React from "react"
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
-import { Accordion, Card } from "react-bootstrap";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { media } from "wasedatime-ui"
+import { Accordion, Card } from "react-bootstrap"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import { campuses } from "@app/constants/campus_quart";
+import { campuses } from "@app/constants/campus_quart"
const InfoWrapper = styled("div")`
display: flex;
flex-direction: column;
padding: 1em 0px;
- ${media.tablet`padding: 1em;`}
-`;
+ ${media("tablet", `padding: 1em;`)}
+`
const RoomType = styled("span")`
font-weight: 500;
@@ -21,24 +21,24 @@ const RoomType = styled("span")`
padding: 0px 10px;
border-radius: 6px;
background-color: ${(props) => (props.vacancy ? "#71CE74" : "#E53935")};
-`;
+`
interface RoomProps {
- vacancy: number;
+ vacancy: number
}
const RoomAcc = styled(Accordion)`
padding: 0px;
-`;
+`
const RoomCar = styled(Card.Header)`
padding: 0px !important;
text-align: center;
width: 100%;
cursor: pointer;
-`;
+`
interface Props {
- CampusName: string;
+ CampusName: string
}
function checkVacancy(
@@ -50,21 +50,21 @@ function checkVacancy(
period,
weekday
) {
- let vacancy = 1;
+ let vacancy = 1
try {
- if (period === -1) return 0;
+ if (period === -1) return 0
vacancy = campuses[campusName][buid][roomdata][quar][period][weekday]
? 1
- : 0;
+ : 0
- return vacancy;
+ return vacancy
} catch (err) {
- return 0;
+ return 0
}
}
const Building = ({ campusName, quar, weekday, period }) => {
- const { t } = useTranslation();
+ const { t } = useTranslation()
return (
@@ -109,7 +109,7 @@ const Building = ({ campusName, quar, weekday, period }) => {
))}
- );
-};
+ )
+}
-export default Building;
+export default Building
diff --git a/apps/campus/src/room/RoomFinder.tsx b/apps/campus/src/room/RoomFinder.tsx
index c4a97cdbb..54ff07f4c 100644
--- a/apps/campus/src/room/RoomFinder.tsx
+++ b/apps/campus/src/room/RoomFinder.tsx
@@ -1,27 +1,27 @@
-import React, { forwardRef, useState } from "react";
+import React, { forwardRef, useState } from "react"
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
+import { media } from "wasedatime-ui"
import {
faClock,
faSearch,
faCalendarAlt,
faTimes,
-} from "@fortawesome/free-solid-svg-icons";
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { Tabs, Tab } from "react-bootstrap";
-import DatePicker from "react-datepicker";
-import { Helmet } from "react-helmet";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+} from "@fortawesome/free-solid-svg-icons"
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
+import { Tabs, Tab } from "react-bootstrap"
+import DatePicker from "react-datepicker"
+import { Helmet } from "react-helmet"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import Building from "@app/room/Building";
+import Building from "@app/room/Building"
const InfoWrapper = styled("div")`
display: flex;
flex-direction: column;
padding: 2em 20em;
- ${media.desktop`padding: 2em;`}
-`;
+ ${media("desktop", `padding: 2em;`)}
+`
const DatePickerButton = styled("button")`
padding: 0.5em 0.8em;
@@ -32,9 +32,9 @@ const DatePickerButton = styled("button")`
outline: none;
background: #ddd;
}
- ${media.phone`padding: 0.5em 0.3em;`}
- ${media.phoneMini`font-size: 0.9em;`}
-`;
+ ${media("phone", `padding: 0.5em 0.3em;`)}
+ ${media("phoneMini", `font-size: 0.9em;`)}
+`
const DatetimeClearButton = styled("button")`
padding: 0.5em 0.8em 0.5em 0.4em;
@@ -49,13 +49,13 @@ const DatetimeClearButton = styled("button")`
&:focus {
outline: none;
}
- ${media.phone`padding: 0.5em 0.3em;`}
- ${media.phoneMini`font-size: 0.9em;`}
-`;
+ ${media("phone", `padding: 0.5em 0.3em;`)}
+ ${media("phoneMini", `font-size: 0.9em;`)}
+`
-const DateSelectorWrapper = (props: any) => ;
+const DateSelectorWrapper = (props: any) =>
-const TimeSelectorWrapper = (props: any) => ;
+const TimeSelectorWrapper = (props: any) =>
const DateSelector = forwardRef(({ value, onClick }, ref) => (
(({ value, onClick }, ref) => (
>
{value}
-));
+))
const TimeSelector = forwardRef(({ value, onClick }, ref) => (
{value}
-));
+))
const DatePickerSpan = styled("span")`
display: inline-block;
width: 38%;
-`;
+`
const DatetimeSelection = styled("div")`
border-radius: 5px;
cursor: pointer;
-`;
+`
const findQuar = (mon, dai) => {
if (mon === 4 || mon === 5 || (mon === 6 && dai < 21)) {
- return 0;
+ return 0
}
if (
mon === 7 ||
@@ -93,39 +93,39 @@ const findQuar = (mon, dai) => {
(mon === 6 && dai >= 21) ||
(mon === 9 && dai < 21)
) {
- return 1;
+ return 1
}
if (mon === 10 || (mon === 11 && dai < 22) || (mon === 9 && dai >= 21)) {
- return 2;
+ return 2
}
- return 3;
-};
+ return 3
+}
const findPeriod = (totalMins) => {
if (totalMins < 100) {
- return 0;
+ return 0
}
if (totalMins >= 100 && totalMins < 240) {
- return 1;
+ return 1
}
if (totalMins >= 240 && totalMins < 345) {
- return 2;
+ return 2
}
if (totalMins >= 345 && totalMins < 450) {
- return 3;
+ return 3
}
if (totalMins >= 450 && totalMins < 555) {
- return 4;
+ return 4
}
if (totalMins >= 555 && totalMins < 660) {
- return 5;
+ return 5
}
if (totalMins >= 660 && totalMins <= 765) {
- return 6;
+ return 6
}
- if (totalMins > 765) return -1;
-};
+ if (totalMins > 765) return -1
+}
const RoomType = styled("span")`
font-weight: 500;
@@ -133,28 +133,28 @@ const RoomType = styled("span")`
padding: 0px 5px;
background-color: #e53935;
border-radius: 6px;
-`;
+`
const RoomEmpty = styled(RoomType)`
background-color: #71ce74;
-`;
+`
interface PropsType {
- value: string;
- onClick: (e: React.MouseEvent) => void;
+ value: string
+ onClick: (e: React.MouseEvent) => void
}
const RoomFinder = (): JSX.Element => {
- const { t } = useTranslation();
- const [date, setDate] = useState(new Date());
- const onDatetimeChange = (date: Date): void => setDate(date || new Date());
- const clearDatetime = (): void => setDate(new Date());
- const day = date.getDay() > 0 ? date.getDay() - 1 : 6;
- const totalMins = (date.getHours() - 9) * 60 + date.getMinutes();
- const per = findPeriod(totalMins);
- const mon = date.getMonth();
- const dai = date.getDate();
- const quarter = findQuar(mon, dai);
+ const { t } = useTranslation()
+ const [date, setDate] = useState(new Date())
+ const onDatetimeChange = (date: Date): void => setDate(date || new Date())
+ const clearDatetime = (): void => setDate(new Date())
+ const day = date.getDay() > 0 ? date.getDay() - 1 : 6
+ const totalMins = (date.getHours() - 9) * 60 + date.getMinutes()
+ const per = findPeriod(totalMins)
+ const mon = date.getMonth()
+ const dai = date.getDate()
+ const quarter = findQuar(mon, dai)
return (
@@ -178,7 +178,7 @@ const RoomFinder = (): JSX.Element => {
paddingLeft: "10px",
marginBottom: "20px",
}}
- className="text-light-text1 dark:text-dark-text1 border-l-4 border-solid border-light-main dark:border-dark-main"
+ className="border-l-4 border-solid border-light-main text-light-text1 dark:border-dark-main dark:text-dark-text1"
>
{t("roomFinder.title")}
@@ -284,7 +284,7 @@ const RoomFinder = (): JSX.Element => {
- );
-};
+ )
+}
-export default RoomFinder;
+export default RoomFinder
diff --git a/apps/campus/src/root.component.tsx b/apps/campus/src/root.component.tsx
index 572bdfb11..eccd2e532 100644
--- a/apps/campus/src/root.component.tsx
+++ b/apps/campus/src/root.component.tsx
@@ -1,16 +1,13 @@
-import React, { Suspense, useContext, useEffect } from "react";
+import React, { Suspense, useContext, useEffect } from "react"
+import { Lang, LoadingSpinner, i18nConfig } from "wasedatime-ui"
+import i18next from "i18next"
+import { useTranslation } from "react-i18next"
+import { BrowserRouter, Routes, Route } from "react-router-dom"
-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";
-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 { ThemeContext, ThemeProvider } from "@app/utils/theme-context";
+import App from "@app/App"
+import translationEN from "@app/constants/locales/en/translation.json"
+import translationJA from "@app/constants/locales/ja/translation.json"
+import { ThemeContext, ThemeProvider } from "@app/utils/theme-context"
i18nConfig({
i18n: i18next,
@@ -18,24 +15,24 @@ i18nConfig({
[Lang.EN]: translationEN,
[Lang.JA]: translationJA,
},
-});
+})
const LoadingSpinnerContainer = () => {
- const { theme } = useContext(ThemeContext);
+ const { theme } = useContext(ThemeContext)
return (
- );
-};
+ )
+}
const Root = (props) => {
- const { i18n } = useTranslation();
+ const { i18n } = useTranslation()
useEffect(() => {
- i18n.changeLanguage(localStorage.getItem("wasedatime-lng"));
- }, []);
+ i18n.changeLanguage(localStorage.getItem("wasedatime-lng"))
+ }, [])
return (
@@ -49,7 +46,7 @@ const Root = (props) => {
- );
-};
+ )
+}
-export default Root;
+export default Root
diff --git a/apps/campus/src/utils/theme-context.tsx b/apps/campus/src/utils/theme-context.tsx
index 4d2ac29bd..62acf8a8b 100644
--- a/apps/campus/src/utils/theme-context.tsx
+++ b/apps/campus/src/utils/theme-context.tsx
@@ -1,35 +1,35 @@
-import React, { useState, useEffect, createContext } from "react";
+import React, { useState, useEffect, createContext } from "react"
-type ThemeTypes = "light" | "dark";
+type ThemeTypes = "light" | "dark"
const getInitialTheme = (): ThemeTypes => {
if (typeof window !== "undefined" && window.localStorage) {
- const storedPrefs = window.localStorage.getItem("color-theme");
+ const storedPrefs = window.localStorage.getItem("color-theme")
if (typeof storedPrefs === "string") {
- return storedPrefs as ThemeTypes;
+ return storedPrefs as ThemeTypes
}
- const userMedia = window.matchMedia("(prefers-color-scheme: dark)");
+ const userMedia = window.matchMedia("(prefers-color-scheme: dark)")
if (userMedia.matches) {
- return "dark";
+ return "dark"
}
}
// If you want to use dark theme as the default, return 'dark' instead
- return "light";
-};
+ return "light"
+}
interface ThemeContextInterface {
- setTheme: (theme: ThemeTypes) => void;
- theme: ThemeTypes;
+ setTheme: (theme: ThemeTypes) => void
+ theme: ThemeTypes
}
export const ThemeContext = createContext(
undefined
-);
+)
interface ThemeProviderType {
- initialTheme?: ThemeTypes;
- children: React.ReactNode;
+ initialTheme?: ThemeTypes
+ children: React.ReactNode
}
export const ThemeProvider = ({
@@ -37,35 +37,33 @@ export const ThemeProvider = ({
children,
}: ThemeProviderType) => {
if (ThemeContext === undefined) {
- throw Error("ThemeContext must be within a provider");
+ throw Error("ThemeContext must be within a provider")
}
- const [theme, setTheme] = useState(getInitialTheme);
+ const [theme, setTheme] = useState(getInitialTheme)
const rawSetTheme = (rawTheme: ThemeTypes) => {
- const root = window.document.documentElement;
- const isDark = rawTheme === "dark";
- const themeChangedEvent = new Event("themeChanged");
- root.classList.remove(isDark ? "light" : "dark");
- root.classList.add(rawTheme);
- localStorage.setItem("color-theme", rawTheme);
- window.dispatchEvent(themeChangedEvent);
- };
+ const root = window.document.documentElement
+ const isDark = rawTheme === "dark"
+ const themeChangedEvent = new Event("themeChanged")
+ root.classList.remove(isDark ? "light" : "dark")
+ root.classList.add(rawTheme)
+ localStorage.setItem("color-theme", rawTheme)
+ window.dispatchEvent(themeChangedEvent)
+ }
if (initialTheme) {
- rawSetTheme(initialTheme);
+ rawSetTheme(initialTheme)
}
useEffect(() => {
- rawSetTheme(theme);
- }, [theme]);
+ rawSetTheme(theme)
+ }, [theme])
const value: ThemeContextInterface = {
setTheme,
theme,
- };
+ }
- return (
- {children}
- );
-};
+ return {children}
+}
diff --git a/apps/campus/src/wasedatime-campus.ts b/apps/campus/src/wasedatime-campus.ts
index 8f04a5edb..9a85869a9 100644
--- a/apps/campus/src/wasedatime-campus.ts
+++ b/apps/campus/src/wasedatime-campus.ts
@@ -1,14 +1,13 @@
-import React from "react";
+import React from "react"
-import Lang from "@bit/wasedatime.core.ts.constants.langs";
-import i18nConfig from "@bit/wasedatime.core.ts.utils.i18n";
-import i18next from "i18next";
-import ReactDOM from "react-dom";
-import singleSpaReact from "single-spa-react";
+import { Lang, i18nConfig } from "wasedatime-ui"
+import i18next from "i18next"
+import ReactDOM from "react-dom"
+import singleSpaReact from "single-spa-react"
-import translationEN from "@app/constants/locales/en/translation.json";
-import translationJA from "@app/constants/locales/ja/translation.json";
-import Root from "@app/root.component";
+import translationEN from "@app/constants/locales/en/translation.json"
+import translationJA from "@app/constants/locales/ja/translation.json"
+import Root from "@app/root.component"
i18nConfig({
i18n: i18next,
@@ -16,7 +15,7 @@ i18nConfig({
[Lang.EN]: translationEN,
[Lang.JA]: translationJA,
},
-});
+})
const lifecycles = singleSpaReact({
React,
@@ -27,14 +26,14 @@ const lifecycles = singleSpaReact({
info,
props // Customize the root error boundary for your microfrontend here.
) => {
- console.log("====================================");
- console.error(err);
- console.log(info);
- console.log(props);
- console.log("====================================");
+ console.log("====================================")
+ console.error(err)
+ console.log(info)
+ console.log(props)
+ console.log("====================================")
- return null;
+ return null
},
-});
+})
-export const { bootstrap, mount, unmount } = lifecycles;
+export const { bootstrap, mount, unmount } = lifecycles
diff --git a/apps/campus/tailwind.config.js b/apps/campus/tailwind.config.js
index d29e6d7cd..cb70018f1 100644
--- a/apps/campus/tailwind.config.js
+++ b/apps/campus/tailwind.config.js
@@ -1,4 +1,4 @@
-const colors = require("@bit/wasedatime.core.theme.colors");
+const colors = require("wasedatime-ui/colors");
module.exports = {
darkMode: "class",
diff --git a/apps/campus/vite.config.ts b/apps/campus/vite.config.ts
index d6eb3d298..d5a3fe0fc 100644
--- a/apps/campus/vite.config.ts
+++ b/apps/campus/vite.config.ts
@@ -1,10 +1,10 @@
-import reactRefresh from "@vitejs/plugin-react-refresh";
-import { defineConfig, loadEnv } from "vite";
-import dynamicImport from "vite-plugin-dynamic-import";
-const path = require("path");
+import { defineConfig, loadEnv } from "vite"
+import react from "@vitejs/plugin-react"
+import dynamicImport from "vite-plugin-dynamic-import"
+const path = require("path")
export default defineConfig(({ mode }) => {
- const env = loadEnv(mode, process.cwd() + "/src");
+ const env = loadEnv(mode, process.cwd() + "/src")
return {
root: "./src",
@@ -35,8 +35,8 @@ export default defineConfig(({ mode }) => {
},
modules: ["node_modules"],
},
- plugins: [reactRefresh(), dynamicImport()],
+ plugins: [react(), dynamicImport()],
assetsInclude: ["**/*.png", "**/*.jpg", "**/*.svg"],
envPrefix: ["VITE_", "REACT_APP_"],
- };
-});
+ }
+})
diff --git a/apps/career/.eslintrc.js b/apps/career/.eslintrc.js
new file mode 100644
index 000000000..93f071807
--- /dev/null
+++ b/apps/career/.eslintrc.js
@@ -0,0 +1,8 @@
+module.exports = {
+ env: {
+ browser: true,
+ es2021: true,
+ es6: true,
+ },
+ extends: ["custom"],
+};
diff --git a/apps/career/.eslintrc.json b/apps/career/.eslintrc.json
deleted file mode 100644
index 4347967c3..000000000
--- a/apps/career/.eslintrc.json
+++ /dev/null
@@ -1,163 +0,0 @@
-{
- "env": {
- "browser": true,
- "es2021": true,
- "es6": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:jsx-a11y/recommended",
- "airbnb",
- "plugin:import/errors",
- "plugin:import/warnings",
- "plugin:import/typescript",
- "plugin:prettier/recommended",
- "prettier"
- ],
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module",
- "project": ["./tsconfig.json"],
- "ecmaFeatures": {
- "arrowFunctions": true,
- "jsx": true
- }
- },
- "plugins": [
- "import",
- "jsx-a11y",
- "prefer-arrow",
- "react",
- "react-hooks"
- ],
- // "ignorePatterns": [".eslintrc.js"],
- "rules": {
- "react/function-component-definition": [
- 2,
- { "namedComponents": "arrow-function" }
- ],
- "no-use-before-define": "off",
- "@typescript-eslint/no-use-before-define": ["error"],
- "react/jsx-uses-react": "error",
- "react/jsx-uses-vars": "error",
- // "@typescript-eslint/rule-name": "error",
- "operator-linebreak": [
- "error",
- "after",
- { "overrides": { "?": "ignore", ":": "ignore" } }
- ],
- "quotes": ["error", "double"],
- "newline-before-return": "error",
- "no-console": "warn",
- "no-continue": "warn",
- "require-yield": "warn",
- "spaced-comment": ["error", "always", { "markers": ["/"] }],
- "prefer-arrow/prefer-arrow-functions": [
- "error",
- {
- "disallowPrototype": true,
- "singleReturnOnly": true,
- "classPropertiesAllowed": false
- }
- ],
- "react/jsx-filename-extension": [
- "error",
- {
- "extensions": ["jsx", "tsx"]
- }
- ],
- "react/jsx-props-no-spreading": "off",
- "react/jsx-fragments": ["off", "element"],
- "react/prop-types": "off",
- "react/prefer-stateless-function": "off",
-
- "react-hooks/exhaustive-deps": "error",
-
- "import/extensions": "off",
- "import/prefer-default-export": "off",
- "import/no-extraneous-dependencies": [
- "error",
- { "devDependencies": [], "peerDependencies": true }
- ]
- },
- "overrides": [
- {
- "files": ["**\\*.{ts,tsx}"],
- "extends": [
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "sourceType": "module",
- "project": "**/tsconfig.json"
- },
- "plugins": ["@typescript-eslint"],
- "rules": {
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/explicit-member-accessibility": "off",
- "indent": "off",
- "@typescript-eslint/indent": "off",
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
- "react-hooks/exhaustive-deps": "off",
- "import/no-unresolved": "off",
- "comma-dangle": ["error", "only-multiline"],
- "@typescript-eslint/no-unsafe-assignment": "off",
- "@typescript-eslint/no-unsafe-member-access": 1,
- "@typescript-eslint/no-unsafe-return": 1,
- "@typescript-eslint/no-unused-vars": "off",
- "no-unused-vars": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-namespace": "off",
- "react/require-default-props": "off",
- "import/order": [
- "error",
- {
- "pathGroups": [
- {
- "pattern": "react",
- "group": "builtin",
- "position": "before"
- },
- {
- "pattern": "@app/**",
- "group": "type",
- "position": "after"
- }
- ],
- "alphabetize": {
- "order": "asc",
- "caseInsensitive": true
- },
- "pathGroupsExcludedImportTypes": ["builtin", "react"],
- "newlines-between": "always"
- }
- ]
- }
- },
- {
- "files": ["**\\*.js"],
- "rules": {
- "camelcase": ["error", { "allow": ["sc_pageName", "sc_c2", "sc_c27"] }],
- "func-names": ["error", "never"]
- }
- }
- ],
- "settings": {
- "import/extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "import/parsers": {
- "@typescript-eslint/parser": [".ts", ".d.ts", ".tsx"]
- },
- "import/resolver": {
- "node": {
- "extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "paths": ["src", "node_modules"]
- }
- },
- "react": {
- "version": "detect"
- }
- }
-}
diff --git a/apps/career/.prettierrc.js b/apps/career/.prettierrc.js
index 54058aad8..8c55273ee 100644
--- a/apps/career/.prettierrc.js
+++ b/apps/career/.prettierrc.js
@@ -1,17 +1,7 @@
module.exports = {
- printWidth: 80,
+ plugins: [require("prettier-plugin-tailwindcss")],
+ trailingComma: "es5",
tabWidth: 2,
- useTabs: false,
- semi: true,
- htmlWhitespaceSensitivity: "css",
- endOfLine: "lf",
-
- overrides: [
- {
- files: ["*.html", "*ejs"],
- options: {
- printWidth: 200,
- },
- },
- ],
+ semi: false,
+ singleQuote: false,
};
diff --git a/apps/career/package.json b/apps/career/package.json
index 3a9f0532a..6fb3a2496 100644
--- a/apps/career/package.json
+++ b/apps/career/package.json
@@ -9,8 +9,8 @@
"preview-dev": "vite preview --port 8082",
"tsc": "tsc",
"local": "concurrently --kill-others \"pnpm start\" \"cd ../root && pnpm start\"",
- "fix": "pnpm run format && pnpm run lint:fix",
- "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" && prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
+ "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"devDependencies": {
"@babel/core": "7.17.5",
@@ -22,22 +22,15 @@
"@babel/runtime": "7.17.2",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
- "@vitejs/plugin-react-refresh": "^1.3.6",
+ "@vitejs/plugin-react": "1.3.2",
"concurrently": "7.0.0",
"eslint": "8.10.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-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",
+ "eslint-config-custom": "workspace:*",
"prettier": "2.5.1",
- "prettier-eslint": "13.0.0",
+ "prettier-plugin-tailwindcss": "^0.2.8",
"ts-config-single-spa": "2.0.1",
"typescript": "4.6.2",
- "vite": "^2.9.0",
+ "vite": "^4.3.5",
"vite-plugin-dynamic-import": "^0.7.0"
},
"dependencies": {
diff --git a/apps/career/pnpm-lock.yaml b/apps/career/pnpm-lock.yaml
index c2e3a635d..322e83d6f 100644
--- a/apps/career/pnpm-lock.yaml
+++ b/apps/career/pnpm-lock.yaml
@@ -1,76 +1,84 @@
-lockfileVersion: 5.3
-
-specifiers:
- '@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-react': 7.16.7
- '@babel/preset-typescript': 7.16.7
- '@babel/runtime': 7.17.2
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
- '@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
- eslint-config-prettier: 8.5.0
- eslint-config-react-app: 7.0.0
- eslint-plugin-import: 2.25.4
- 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
- prettier: 2.5.1
- prettier-eslint: 13.0.0
- react: 17.0.2
- react-dom: 17.0.2
- single-spa-react: 3.2.0
- ts-config-single-spa: 2.0.1
- typescript: 4.6.2
- vite: ^2.9.0
- vite-plugin-dynamic-import: ^0.7.0
+lockfileVersion: '6.0'
dependencies:
- '@types/react': 17.0.39
- '@types/react-dom': 17.0.13
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- single-spa-react: 3.2.0_react@17.0.2
+ '@types/react':
+ specifier: 17.0.39
+ version: 17.0.39
+ '@types/react-dom':
+ specifier: 17.0.13
+ version: 17.0.13
+ react:
+ specifier: 17.0.2
+ version: 17.0.2
+ react-dom:
+ specifier: 17.0.2
+ version: 17.0.2(react@17.0.2)
+ single-spa-react:
+ specifier: 3.2.0
+ version: 3.2.0(react@17.0.2)
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-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
- '@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
- 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
- prettier: 2.5.1
- prettier-eslint: 13.0.0
- ts-config-single-spa: 2.0.1
- typescript: 4.6.2
- vite: 2.9.15
- vite-plugin-dynamic-import: 0.7.1
+ '@babel/core':
+ specifier: 7.17.5
+ version: 7.17.5
+ '@babel/eslint-parser':
+ specifier: 7.17.0
+ version: 7.17.0(@babel/core@7.17.5)(eslint@8.10.0)
+ '@babel/plugin-transform-runtime':
+ specifier: 7.17.0
+ version: 7.17.0(@babel/core@7.17.5)
+ '@babel/preset-env':
+ specifier: 7.16.11
+ version: 7.16.11(@babel/core@7.17.5)
+ '@babel/preset-react':
+ specifier: 7.16.7
+ version: 7.16.7(@babel/core@7.17.5)
+ '@babel/preset-typescript':
+ specifier: 7.16.7
+ version: 7.16.7(@babel/core@7.17.5)
+ '@babel/runtime':
+ specifier: 7.17.2
+ version: 7.17.2
+ '@typescript-eslint/eslint-plugin':
+ specifier: 5.14.0
+ version: 5.14.0(@typescript-eslint/parser@5.14.0)(eslint@8.10.0)(typescript@4.6.2)
+ '@typescript-eslint/parser':
+ specifier: 5.14.0
+ version: 5.14.0(eslint@8.10.0)(typescript@4.6.2)
+ '@vitejs/plugin-react':
+ specifier: 1.3.2
+ version: 1.3.2
+ concurrently:
+ specifier: 7.0.0
+ version: 7.0.0
+ eslint:
+ specifier: 8.10.0
+ version: 8.10.0
+ eslint-config-custom:
+ specifier: workspace:*
+ version: link:../../packages/eslint-config-custom
+ prettier:
+ specifier: 2.5.1
+ version: 2.5.1
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.8
+ version: 0.2.8(prettier@2.5.1)
+ ts-config-single-spa:
+ specifier: 2.0.1
+ version: 2.0.1
+ typescript:
+ specifier: 4.6.2
+ version: 4.6.2
+ vite:
+ specifier: ^4.3.5
+ version: 4.3.5
+ vite-plugin-dynamic-import:
+ specifier: ^0.7.0
+ version: 0.7.0
packages:
- /@ampproject/remapping/2.2.1:
+ /@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -78,32 +86,49 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
dev: true
- /@babel/code-frame/7.12.11:
- resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
- dependencies:
- '@babel/highlight': 7.18.6
- dev: true
-
- /@babel/code-frame/7.21.4:
+ /@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
dev: true
- /@babel/compat-data/7.21.7:
+ /@babel/compat-data@7.21.7:
resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.17.5:
+ /@babel/core@7.17.5:
resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.21.4
'@babel/generator': 7.21.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helpers': 7.21.5
+ '@babel/parser': 7.21.8
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.5
+ '@babel/types': 7.21.5
+ convert-source-map: 1.9.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/core@7.21.8:
+ resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
'@babel/helper-module-transforms': 7.21.5
'@babel/helpers': 7.21.5
'@babel/parser': 7.21.8
@@ -119,7 +144,7 @@ packages:
- supports-color
dev: true
- /@babel/eslint-parser/7.17.0_@babel+core@7.17.5+eslint@8.10.0:
+ /@babel/eslint-parser@7.17.0(@babel/core@7.17.5)(eslint@8.10.0):
resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
@@ -133,7 +158,7 @@ packages:
semver: 6.3.0
dev: true
- /@babel/generator/7.21.5:
+ /@babel/generator@7.21.5:
resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -143,21 +168,21 @@ packages:
jsesc: 2.5.2
dev: true
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-builder-binary-assignment-operator-visitor/7.21.5:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-compilation-targets/7.21.5_@babel+core@7.17.5:
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -171,7 +196,21 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.17.5:
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.7
+ '@babel/core': 7.21.8
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.17.5):
resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -191,7 +230,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.17.5:
+ /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.17.5):
resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -203,13 +242,13 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.17.5:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.17.5):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -219,12 +258,12 @@ packages:
- supports-color
dev: true
- /@babel/helper-environment-visitor/7.21.5:
+ /@babel/helper-environment-visitor@7.21.5:
resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -232,28 +271,28 @@ packages:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-member-expression-to-functions/7.21.5:
+ /@babel/helper-member-expression-to-functions@7.21.5:
resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-module-imports/7.21.4:
+ /@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-module-transforms/7.21.5:
+ /@babel/helper-module-transforms@7.21.5:
resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -269,19 +308,19 @@ packages:
- supports-color
dev: true
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-plugin-utils/7.21.5:
+ /@babel/helper-plugin-utils@7.21.5:
resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.17.5:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -296,7 +335,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.21.5:
+ /@babel/helper-replace-supers@7.21.5:
resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -310,43 +349,43 @@ packages:
- supports-color
dev: true
- /@babel/helper-simple-access/7.21.5:
+ /@babel/helper-simple-access@7.21.5:
resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: true
- /@babel/helper-split-export-declaration/7.18.6:
+ /@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.21.5
dev: true
- /@babel/helper-string-parser/7.21.5:
+ /@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -358,7 +397,7 @@ packages:
- supports-color
dev: true
- /@babel/helpers/7.21.5:
+ /@babel/helpers@7.21.5:
resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -369,7 +408,7 @@ packages:
- supports-color
dev: true
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -378,13 +417,15 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.21.8:
+ /@babel/parser@7.21.8:
resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.21.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -394,7 +435,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -403,10 +444,10 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.17.5)
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -415,56 +456,40 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
- 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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-replace-supers': 7.21.5
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.17.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -472,10 +497,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.5)
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -483,10 +508,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -494,10 +519,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.5)
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -505,10 +530,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -516,10 +541,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -527,10 +552,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.5)
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -538,13 +563,13 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -552,10 +577,10 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
dev: true
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -564,23 +589,23 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.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.17.5)
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -588,25 +613,25 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@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.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -615,7 +640,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -624,7 +649,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -634,17 +659,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.21.5
- 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.17.5):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -653,7 +668,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -662,9 +677,8 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-flow/7.21.4_@babel+core@7.17.5:
- resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.17.5):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -672,8 +686,9 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.17.5):
+ resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -681,17 +696,17 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.8):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.21.8
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@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.17.5):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -700,7 +715,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -709,7 +724,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -718,7 +733,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -727,7 +742,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -736,7 +751,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -745,7 +760,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -755,7 +770,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
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.17.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -765,7 +780,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.17.5):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -775,7 +790,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -785,7 +800,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -794,12 +809,12 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -809,7 +824,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -819,7 +834,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.5):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -827,7 +842,7 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -839,7 +854,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -850,7 +865,7 @@ packages:
'@babel/template': 7.20.7
dev: true
- /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -860,18 +875,18 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -881,7 +896,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -892,18 +907,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.17.5
- dev: true
-
- /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -913,19 +917,19 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -935,7 +939,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -945,7 +949,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.17.5):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -958,7 +962,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -972,7 +976,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.17.5):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -987,7 +991,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1000,18 +1004,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.17.5):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1021,7 +1025,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1034,7 +1038,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1044,7 +1048,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1054,7 +1058,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1064,37 +1068,47 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.17.5)
dev: true
- /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.8):
+ resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.8):
resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.21.8
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.21.8):
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.21.8
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-jsx/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1104,11 +1118,25 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.17.5)
+ '@babel/types': 7.21.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.21.8):
+ resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
'@babel/types': 7.21.5
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1119,7 +1147,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1130,7 +1158,7 @@ packages:
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1140,7 +1168,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.17.5:
+ /@babel/plugin-transform-runtime@7.17.0(@babel/core@7.17.5):
resolution: {integrity: sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1149,15 +1177,15 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.5)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1167,7 +1195,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.17.5:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.17.5):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1178,7 +1206,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1188,7 +1216,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1198,7 +1226,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.17.5:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.17.5):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1208,7 +1236,7 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.17.5:
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.17.5):
resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1216,14 +1244,14 @@ packages:
dependencies:
'@babel/core': 7.17.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.17.5
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.17.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.17.5):
resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1233,18 +1261,18 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.17.5:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.5):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
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.21.8_@babel+core@7.17.5
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/preset-env/7.16.11_@babel+core@7.17.5:
+ /@babel/preset-env@7.16.11(@babel/core@7.17.5):
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1252,97 +1280,97 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.17.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.17.5)
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@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.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.17.5
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.17.5
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.17.5
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.17.5
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-escapes': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.17.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@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.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.5)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.17.5)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.5)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.17.5)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.17.5)
+ '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.17.5)
'@babel/types': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.5)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.5)
core-js-compat: 3.30.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.17.5:
+ /@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.21.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.17.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.5)
'@babel/types': 7.21.5
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.16.7_@babel+core@7.17.5:
+ /@babel/preset-react@7.16.7(@babel/core@7.17.5):
resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1351,13 +1379,13 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.17.5
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.17.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.17.5)
dev: true
- /@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
+ /@babel/preset-typescript@7.16.7(@babel/core@7.17.5):
resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1366,38 +1394,30 @@ packages:
'@babel/core': 7.17.5
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.17.5
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/regjsgen/0.8.0:
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime-corejs3/7.21.5:
- resolution: {integrity: sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- core-js-pure: 3.30.1
- regenerator-runtime: 0.13.11
- dev: true
-
- /@babel/runtime/7.17.2:
+ /@babel/runtime@7.17.2:
resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime/7.21.5:
+ /@babel/runtime@7.21.5:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: true
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1406,7 +1426,7 @@ packages:
'@babel/types': 7.21.5
dev: true
- /@babel/traverse/7.21.5:
+ /@babel/traverse@7.21.5:
resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1424,7 +1444,7 @@ packages:
- supports-color
dev: true
- /@babel/types/7.21.5:
+ /@babel/types@7.21.5:
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1433,8 +1453,98 @@ packages:
to-fast-properties: 2.0.0
dev: true
- /@esbuild/linux-loong64/0.14.54:
- resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+ /@esbuild/android-arm64@0.17.18:
+ resolution: {integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm@0.17.18:
+ resolution: {integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/android-x64@0.17.18:
+ resolution: {integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-arm64@0.17.18:
+ resolution: {integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-x64@0.17.18:
+ resolution: {integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-arm64@0.17.18:
+ resolution: {integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-x64@0.17.18:
+ resolution: {integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm64@0.17.18:
+ resolution: {integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm@0.17.18:
+ resolution: {integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ia32@0.17.18:
+ resolution: {integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-loong64@0.17.18:
+ resolution: {integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -1442,34 +1552,106 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.10.0:
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.10.0
- eslint-visitor-keys: 3.4.0
+ /@esbuild/linux-mips64el@0.17.18:
+ resolution: {integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@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.20.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
+ /@esbuild/linux-ppc64@0.17.18:
+ resolution: {integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-riscv64@0.17.18:
+ resolution: {integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-s390x@0.17.18:
+ resolution: {integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/linux-x64@0.17.18:
+ resolution: {integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/netbsd-x64@0.17.18:
+ resolution: {integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/openbsd-x64@0.17.18:
+ resolution: {integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/sunos-x64@0.17.18:
+ resolution: {integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@esbuild/win32-arm64@0.17.18:
+ resolution: {integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
+
+ /@esbuild/win32-ia32@0.17.18:
+ resolution: {integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- /@eslint/eslintrc/1.4.1:
+ /@esbuild/win32-x64@0.17.18:
+ resolution: {integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -1486,8 +1668,8 @@ packages:
- supports-color
dev: true
- /@humanwhocodes/config-array/0.5.0:
- resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
+ /@humanwhocodes/config-array@0.9.5:
+ resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -1497,22 +1679,11 @@ packages:
- supports-color
dev: true
- /@humanwhocodes/config-array/0.9.5:
- resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
- engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@jridgewell/gen-mapping/0.3.3:
+ /@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -1521,32 +1692,32 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
dev: true
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
dev: true
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
dev: true
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
dev: true
- /@jridgewell/sourcemap-codec/1.4.15:
+ /@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: true
- /@jridgewell/trace-mapping/0.3.18:
+ /@jridgewell/trace-mapping@0.3.18:
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
@@ -1554,12 +1725,12 @@ packages:
run-parallel: 1.2.0
dev: true
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
dev: true
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
@@ -1567,7 +1738,7 @@ packages:
fastq: 1.15.0
dev: true
- /@rollup/pluginutils/4.2.1:
+ /@rollup/pluginutils@4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
dependencies:
@@ -1575,37 +1746,21 @@ packages:
picomatch: 2.3.1
dev: true
- /@rushstack/eslint-patch/1.2.0:
- resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
- dev: true
-
- /@types/eslint-visitor-keys/1.0.0:
- resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
- dev: true
-
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
dev: true
- /@types/json5/0.0.29:
- resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
-
- /@types/parse-json/4.0.0:
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- dev: true
-
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/react-dom/17.0.13:
+ /@types/react-dom@17.0.13:
resolution: {integrity: sha512-wEP+B8hzvy6ORDv1QBhcQia4j6ea4SFIBttHYpXKPFZRviBvknq0FRh3VrIxeXUmsPkwuXVZrVGG7KUVONmXCQ==}
dependencies:
'@types/react': 17.0.39
dev: false
- /@types/react/17.0.39:
+ /@types/react@17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
dependencies:
'@types/prop-types': 15.7.5
@@ -1613,15 +1768,11 @@ packages:
csstype: 3.1.2
dev: false
- /@types/scheduler/0.16.3:
+ /@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
dev: false
- /@types/semver/7.3.13:
- resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
- dev: true
-
- /@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0:
+ /@typescript-eslint/eslint-plugin@5.14.0(@typescript-eslint/parser@5.14.0)(eslint@8.10.0)(typescript@4.6.2):
resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -1632,74 +1783,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.14.0_eslint@8.10.0+typescript@4.6.2
+ '@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/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)
debug: 4.3.4
eslint: 8.10.0
functional-red-black-tree: 1.0.1
ignore: 5.2.4
regexpp: 3.2.0
semver: 7.5.0
- tsutils: 3.21.0_typescript@4.6.2
+ 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
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@typescript-eslint/experimental-utils/5.59.2_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-JLw2UImsjHDuVukpA8Nt+UK7JKE/LQAeV3tU5f7wJo2/NNYVwcakzkWjoYzu/2qzWY/Z9c7zojngNDfecNt92g==}
- 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.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.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:
+ /@typescript-eslint/parser@5.14.0(eslint@8.10.0)(typescript@4.6.2):
resolution: {integrity: sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -1711,7 +1811,7 @@ packages:
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/typescript-estree': 5.14.0(typescript@4.6.2)
debug: 4.3.4
eslint: 8.10.0
typescript: 4.6.2
@@ -1719,7 +1819,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.14.0:
+ /@typescript-eslint/scope-manager@5.14.0:
resolution: {integrity: sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -1727,15 +1827,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.14.0
dev: true
- /@typescript-eslint/scope-manager/5.59.2:
- resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- dev: true
-
- /@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
+ /@typescript-eslint/type-utils@5.14.0(eslint@8.10.0)(typescript@4.6.2):
resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -1745,53 +1837,21 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/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)
debug: 4.3.4
eslint: 8.10.0
- tsutils: 3.21.0_typescript@4.6.2
+ tsutils: 3.21.0(typescript@4.6.2)
typescript: 4.6.2
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:
+ /@typescript-eslint/types@5.14.0:
resolution: {integrity: sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.59.2:
- resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==}
- 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.3
- is-glob: 4.0.3
- lodash: 4.17.21
- semver: 7.5.0
- 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:
+ /@typescript-eslint/typescript-estree@5.14.0(typescript@4.6.2):
resolution: {integrity: sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -1806,34 +1866,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.0
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/typescript-estree/5.59.2_typescript@4.6.2:
- resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.6.2
+ tsutils: 3.21.0(typescript@4.6.2)
typescript: 4.6.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/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):
resolution: {integrity: sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -1842,43 +1881,16 @@ packages:
'@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
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@typescript-eslint/utils/5.59.2_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.10.0
- '@types/json-schema': 7.0.11
- '@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.59.2
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/typescript-estree': 5.59.2_typescript@4.6.2
+ '@typescript-eslint/typescript-estree': 5.14.0(typescript@4.6.2)
eslint: 8.10.0
eslint-scope: 5.1.1
- semver: 7.5.0
+ eslint-utils: 3.0.0(eslint@8.10.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:
+ /@typescript-eslint/visitor-keys@5.14.0:
resolution: {integrity: sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -1886,37 +1898,23 @@ packages:
eslint-visitor-keys: 3.4.0
dev: true
- /@typescript-eslint/visitor-keys/5.59.2:
- resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.2
- eslint-visitor-keys: 3.4.0
- dev: true
-
- /@vitejs/plugin-react-refresh/1.3.6:
- resolution: {integrity: sha512-iNR/UqhUOmFFxiezt0em9CgmiJBdWR+5jGxB2FihaoJfqGt76kiwaKoVOJVU5NYcDWMdN06LbyN2VIGIoYdsEA==}
+ /@vitejs/plugin-react@1.3.2:
+ resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
engines: {node: '>=12.0.0'}
- deprecated: This package has been deprecated in favor of @vitejs/plugin-react
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.17.5
+ '@babel/core': 7.21.8
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.8)
'@rollup/pluginutils': 4.2.1
- react-refresh: 0.10.0
+ react-refresh: 0.13.0
+ resolve: 1.22.2
transitivePeerDependencies:
- supports-color
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.8.2:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1924,24 +1922,18 @@ packages:
acorn: 8.8.2
dev: true
- /acorn-walk/8.2.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.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -1950,229 +1942,89 @@ packages:
uri-js: 4.4.1
dev: true
- /ajv/8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
- dev: true
-
- /ansi-colors/4.1.3:
- resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
- engines: {node: '>=6'}
- dev: true
-
- /ansi-regex/2.1.1:
- resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /ansi-regex/3.0.1:
- resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
- engines: {node: '>=4'}
- dev: true
-
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
- /ansi-styles/2.2.1:
- resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
dev: true
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
dev: true
- /argparse/1.0.10:
- resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
- dependencies:
- sprintf-js: 1.0.3
- dev: true
-
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /aria-query/4.2.2:
- resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
- engines: {node: '>=6.0'}
- dependencies:
- '@babel/runtime': 7.21.5
- '@babel/runtime-corejs3': 7.21.5
- dev: true
-
- /array-buffer-byte-length/1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
- dependencies:
- call-bind: 1.0.2
- is-array-buffer: 3.0.2
- dev: true
-
- /array-includes/3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- is-string: 1.0.7
- dev: true
-
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: true
- /array.prototype.flat/1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /array.prototype.flatmap/1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /ast-types-flow/0.0.7:
- resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
- dev: true
-
- /astral-regex/2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
- dev: true
-
- /available-typed-arrays/1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /axe-core/4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
- engines: {node: '>=4'}
- dev: true
-
- /axobject-query/2.2.0:
- resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
- dev: true
-
- /babel-plugin-macros/3.1.0:
- resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
- engines: {node: '>=10', npm: '>=6'}
- dependencies:
- '@babel/runtime': 7.21.5
- cosmiconfig: 7.1.0
- resolve: 1.22.2
- dev: true
-
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.5):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.17.5:
+ /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.17.5):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
core-js-compat: 3.30.1
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.17.5):
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.3_@babel+core@7.17.5
- transitivePeerDependencies:
- - supports-color
- 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-react-app/10.0.1:
- resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
- dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.18.6_@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.21.5
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-react-remove-prop-types: 0.4.24
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.5)
transitivePeerDependencies:
- supports-color
dev: true
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
dev: true
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
dev: true
- /browserslist/4.21.5:
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2180,37 +2032,19 @@ packages:
caniuse-lite: 1.0.30001482
electron-to-chromium: 1.4.384
node-releases: 2.0.10
- update-browserslist-db: 1.0.11_browserslist@4.21.5
- dev: true
-
- /call-bind/1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
- dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.0
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
dev: true
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
dev: true
- /caniuse-lite/1.0.30001482:
+ /caniuse-lite@1.0.30001482:
resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==}
dev: true
- /chalk/1.1.3:
- resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-styles: 2.2.1
- escape-string-regexp: 1.0.5
- has-ansi: 2.0.0
- strip-ansi: 3.0.1
- supports-color: 2.0.0
- dev: true
-
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -2219,7 +2053,7 @@ packages:
supports-color: 5.5.0
dev: true
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
@@ -2227,7 +2061,7 @@ packages:
supports-color: 7.2.0
dev: true
- /cliui/7.0.4:
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
@@ -2235,37 +2069,32 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
dev: true
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
dev: true
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
dev: true
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
- /common-tags/1.8.2:
- resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
- engines: {node: '>=4.0.0'}
- dev: true
-
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: true
- /concurrently/7.0.0:
+ /concurrently@7.0.0:
resolution: {integrity: sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
@@ -2280,37 +2109,17 @@ packages:
yargs: 16.2.0
dev: true
- /confusing-browser-globals/1.0.11:
- resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- dev: true
-
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
dev: true
- /core-js-compat/3.30.1:
+ /core-js-compat@3.30.1:
resolution: {integrity: sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==}
dependencies:
browserslist: 4.21.5
dev: true
- /core-js-pure/3.30.1:
- resolution: {integrity: sha512-nXBEVpmUnNRhz83cHd9JRQC52cTMcuXAmR56+9dSMpRdpeA4I1PX6yjmhd71Eyc/wXNsdBdUDIj1QTIeZpU5Tg==}
- requiresBuild: true
- dev: true
-
- /cosmiconfig/7.1.0:
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
- 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/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -2319,34 +2128,18 @@ packages:
which: 2.0.2
dev: true
- /csstype/3.1.2:
+ /csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
dev: false
- /damerau-levenshtein/1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
-
- /date-fns/2.30.0:
+ /date-fns@2.30.0:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
'@babel/runtime': 7.21.5
dev: true
- /debug/2.6.9:
- resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
- dependencies:
- ms: 2.0.0
- dev: true
-
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- dependencies:
- ms: 2.1.3
- dev: true
-
- /debug/4.3.4:
+ /debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -2358,605 +2151,86 @@ packages:
ms: 2.1.2
dev: true
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /define-properties/1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-property-descriptors: 1.0.0
- object-keys: 1.1.1
- dev: true
-
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
dev: true
- /dlv/1.1.3:
- resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dev: true
-
- /doctrine/2.1.0:
- resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
-
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
dev: true
- /electron-to-chromium/1.4.384:
+ /electron-to-chromium@1.4.384:
resolution: {integrity: sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==}
dev: true
- /emoji-regex/8.0.0:
+ /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==}
+ /esbuild@0.17.18:
+ resolution: {integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.18
+ '@esbuild/android-arm64': 0.17.18
+ '@esbuild/android-x64': 0.17.18
+ '@esbuild/darwin-arm64': 0.17.18
+ '@esbuild/darwin-x64': 0.17.18
+ '@esbuild/freebsd-arm64': 0.17.18
+ '@esbuild/freebsd-x64': 0.17.18
+ '@esbuild/linux-arm': 0.17.18
+ '@esbuild/linux-arm64': 0.17.18
+ '@esbuild/linux-ia32': 0.17.18
+ '@esbuild/linux-loong64': 0.17.18
+ '@esbuild/linux-mips64el': 0.17.18
+ '@esbuild/linux-ppc64': 0.17.18
+ '@esbuild/linux-riscv64': 0.17.18
+ '@esbuild/linux-s390x': 0.17.18
+ '@esbuild/linux-x64': 0.17.18
+ '@esbuild/netbsd-x64': 0.17.18
+ '@esbuild/openbsd-x64': 0.17.18
+ '@esbuild/sunos-x64': 0.17.18
+ '@esbuild/win32-arm64': 0.17.18
+ '@esbuild/win32-ia32': 0.17.18
+ '@esbuild/win32-x64': 0.17.18
+ dev: true
+
+ /escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
dev: true
- /enquirer/2.3.6:
- resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
- engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
dev: true
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
dev: true
- /es-abstract/1.21.2:
- resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.0
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.10
- is-weakref: 1.0.2
- object-inspect: 1.12.3
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.7
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
- dev: true
-
- /es-set-tostringtag/2.0.1:
- resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
- engines: {node: '>= 0.4'}
+ /eslint-scope@5.1.1:
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+ engines: {node: '>=8.0.0'}
dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- has-tostringtag: 1.0.0
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
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.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
- dev: true
-
- /esbuild-android-64/0.14.54:
- resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-android-arm64/0.14.54:
- resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-64/0.14.54:
- resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-arm64/0.14.54:
- resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-64/0.14.54:
- resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-arm64/0.14.54:
- resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-32/0.14.54:
- resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-64/0.14.54:
- resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm/0.14.54:
- resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm64/0.14.54:
- resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-mips64le/0.14.54:
- resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-ppc64le/0.14.54:
- resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-riscv64/0.14.54:
- resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-s390x/0.14.54:
- resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-netbsd-64/0.14.54:
- resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-openbsd-64/0.14.54:
- resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-sunos-64/0.14.54:
- resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-32/0.14.54:
- resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-64/0.14.54:
- resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-arm64/0.14.54:
- resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild/0.14.54:
- resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/linux-loong64': 0.14.54
- esbuild-android-64: 0.14.54
- esbuild-android-arm64: 0.14.54
- esbuild-darwin-64: 0.14.54
- esbuild-darwin-arm64: 0.14.54
- esbuild-freebsd-64: 0.14.54
- esbuild-freebsd-arm64: 0.14.54
- esbuild-linux-32: 0.14.54
- esbuild-linux-64: 0.14.54
- esbuild-linux-arm: 0.14.54
- esbuild-linux-arm64: 0.14.54
- esbuild-linux-mips64le: 0.14.54
- esbuild-linux-ppc64le: 0.14.54
- esbuild-linux-riscv64: 0.14.54
- esbuild-linux-s390x: 0.14.54
- esbuild-netbsd-64: 0.14.54
- esbuild-openbsd-64: 0.14.54
- esbuild-sunos-64: 0.14.54
- esbuild-windows-32: 0.14.54
- esbuild-windows-64: 0.14.54
- esbuild-windows-arm64: 0.14.54
- dev: true
-
- /escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
- dev: true
-
- /escape-string-regexp/1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
- dev: true
-
- /escape-string-regexp/4.0.0:
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
- engines: {node: '>=10'}
- dev: true
-
- /eslint-config-airbnb-base/15.0.0_8b406960a2a06af75ddac353adbd0cfd:
- resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: ^7.32.0 || ^8.2.0
- 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
- object.assign: 4.1.4
- object.entries: 1.1.6
- semver: 6.3.0
- dev: true
-
- /eslint-config-airbnb/19.0.4_d088d899c01a254e9346ef40899b7d56:
- resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
- engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.3
- eslint-plugin-jsx-a11y: ^6.5.1
- 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
- object.assign: 4.1.4
- object.entries: 1.1.6
- dev: true
-
- /eslint-config-prettier/8.5.0_eslint@8.10.0:
- resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
- dependencies:
- eslint: 8.10.0
- dev: true
-
- /eslint-config-react-app/7.0.0_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==}
- 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.2.0
- '@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-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.6.0_eslint@8.10.0
- eslint-plugin-testing-library: 5.10.3_eslint@8.10.0+typescript@4.6.2
- transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - jest
- - supports-color
- - typescript
- dev: true
-
- /eslint-import-resolver-node/0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.12.0
- resolve: 1.22.2
- dev: true
-
- /eslint-module-utils/2.8.0_eslint@8.10.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: '*'
- peerDependenciesMeta:
- eslint:
- optional: true
- dependencies:
- debug: 3.2.7
- eslint: 8.10.0
- dev: true
-
- /eslint-plugin-flowtype/8.0.3_eslint@8.10.0:
- resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@babel/plugin-syntax-flow': ^7.14.5
- '@babel/plugin-transform-react-jsx': ^7.14.9
- eslint: ^8.1.0
- dependencies:
- eslint: 8.10.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==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- debug: 2.6.9
- doctrine: 2.1.0
- eslint: 8.10.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0_eslint@8.10.0
- has: 1.0.3
- is-core-module: 2.12.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.2
- tsconfig-paths: 3.14.2
- dev: true
-
- /eslint-plugin-jest/25.7.0_22191a90d902226c492032929b57715a:
- resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- jest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- jest:
- optional: true
- dependencies:
- '@typescript-eslint/eslint-plugin': 5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
- '@typescript-eslint/experimental-utils': 5.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.10.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
- aria-query: 4.2.2
- array-includes: 3.1.6
- ast-types-flow: 0.0.7
- axe-core: 4.7.0
- 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.3.3
- language-tags: 1.0.8
- minimatch: 3.1.2
- dev: true
-
- /eslint-plugin-prefer-arrow/1.2.3_eslint@8.10.0:
- resolution: {integrity: sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==}
- peerDependencies:
- eslint: '>=2.0.0'
- dependencies:
- eslint: 8.10.0
- dev: true
-
- /eslint-plugin-prettier/4.0.0_f3d13a703a9c1079e3d1af6044603beb:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- eslint: '>=7.28.0'
- eslint-config-prettier: '*'
- prettier: '>=2.0.0'
- peerDependenciesMeta:
- eslint-config-prettier:
- optional: true
- dependencies:
- eslint: 8.10.0
- eslint-config-prettier: 8.5.0_eslint@8.10.0
- prettier: 2.5.1
- prettier-linter-helpers: 1.0.0
- dev: true
-
- /eslint-plugin-react-hooks/4.6.0_eslint@8.10.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
- dev: true
-
- /eslint-plugin-react/7.29.4_eslint@8.10.0:
- resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- doctrine: 2.1.0
- eslint: 8.10.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
- minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
- prop-types: 15.8.1
- resolve: 2.0.0-next.4
- semver: 6.3.0
- string.prototype.matchall: 4.0.8
- dev: true
-
- /eslint-plugin-testing-library/5.10.3_eslint@8.10.0+typescript@4.6.2:
- resolution: {integrity: sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==}
- 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.59.2_eslint@8.10.0+typescript@4.6.2
- eslint: 8.10.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /eslint-scope/5.1.1:
- resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
-
- /eslint-scope/7.2.0:
+ /eslint-scope@7.2.0:
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -2964,14 +2238,7 @@ 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.10.0):
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
@@ -2981,71 +2248,17 @@ packages:
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:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
dev: true
- /eslint-visitor-keys/3.4.0:
+ /eslint-visitor-keys@3.4.0:
resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
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.5.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.20.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.5.0
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 6.8.1
- text-table: 0.2.0
- v8-compile-cache: 2.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint/8.10.0:
+ /eslint@8.10.0:
resolution: {integrity: sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
@@ -3059,7 +2272,7 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.0
- eslint-utils: 3.0.0_eslint@8.10.0
+ eslint-utils: 3.0.0(eslint@8.10.0)
eslint-visitor-keys: 3.4.0
espree: 9.5.1
esquery: 1.5.0
@@ -3089,81 +2302,53 @@ 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.5.1:
+ /espree@9.5.1:
resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.0
dev: true
- /esprima/4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
dev: true
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
dev: true
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
dev: true
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
dev: true
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
- /fast-deep-equal/3.1.3:
+ /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.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -3174,35 +2359,35 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
dev: true
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
dev: true
- /flat-cache/3.0.4:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
@@ -3210,21 +2395,15 @@ packages:
rimraf: 3.0.2
dev: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
dev: true
- /for-each/0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
- dependencies:
- is-callable: 1.2.7
- dev: true
-
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
@@ -3232,69 +2411,39 @@ packages:
dev: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
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.2.0
- es-abstract: 1.21.2
- functions-have-names: 1.2.3
- dev: true
-
- /functional-red-black-tree/1.0.1:
+ /functional-red-black-tree@1.0.1:
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:
+ /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:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
- /get-intrinsic/1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
- dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-symbols: 1.0.3
- dev: true
-
- /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.2.0
- dev: true
-
- /glob-parent/5.1.2:
+ /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:
+ /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/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -3305,26 +2454,19 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
dev: true
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
dev: true
- /globalthis/1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.0
- dev: true
-
- /globby/11.1.0:
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
@@ -3336,315 +2478,120 @@ packages:
slash: 3.0.0
dev: true
- /gopd/1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- dependencies:
- get-intrinsic: 1.2.0
- dev: true
-
- /has-ansi/2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
-
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
dev: true
- /has-flag/4.0.0:
+ /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.2.0
- dev: true
-
- /has-proto/1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /has-symbols/1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
dev: true
- /ignore/4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
- engines: {node: '>= 4'}
- dev: true
-
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
dev: true
- /import-fresh/3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
- engines: {node: '>=6'}
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
- dev: true
-
- /imurmurhash/0.1.4:
- resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
- engines: {node: '>=0.8.19'}
- dev: true
-
- /indent-string/4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
- dev: true
-
- /inflight/1.0.6:
- resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
- dependencies:
- once: 1.4.0
- wrappy: 1.0.2
- dev: true
-
- /inherits/2.0.4:
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- dev: true
-
- /internal-slot/1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- side-channel: 1.0.4
- dev: true
-
- /is-array-buffer/3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-typed-array: 1.1.10
- dev: true
-
- /is-arrayish/0.2.1:
- resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ /import-fresh@3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
dev: true
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- dependencies:
- has-bigints: 1.0.2
+ /imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
dev: true
- /is-boolean-object/1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
- engines: {node: '>= 0.4'}
+ /inflight@1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ once: 1.4.0
+ wrappy: 1.0.2
dev: true
- /is-callable/1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
- engines: {node: '>= 0.4'}
+ /inherits@2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
- /is-core-module/2.12.0:
+ /is-core-module@2.12.0:
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
dependencies:
has: 1.0.3
dev: true
- /is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
dev: true
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
dev: true
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
dev: true
- /is-negative-zero/2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
dev: true
- /is-regex/1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
- /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-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
-
- /is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /is-typed-array/1.1.10:
- resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- dev: true
-
- /is-weakref/1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- dependencies:
- call-bind: 1.0.2
- dev: true
-
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
- resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
- hasBin: true
- dependencies:
- argparse: 1.0.10
- esprima: 4.0.1
- dev: true
-
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
dev: true
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
dev: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /json-parse-even-better-errors/2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- dev: true
-
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
dev: true
- /json-schema-traverse/1.0.0:
- resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- dev: true
-
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
- /json5/1.0.2:
- resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
- hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
-
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
dev: true
- /jsx-ast-utils/3.3.3:
- resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
- engines: {node: '>=4.0'}
- dependencies:
- array-includes: 3.1.6
- object.assign: 4.1.4
- dev: true
-
- /language-subtag-registry/0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
- dev: true
-
- /language-tags/1.0.8:
- resolution: {integrity: sha512-aWAZwgPLS8hJ20lNPm9HNVs4inexz6S2sQa3wx/+ycuutMNE5/IfYxiWYBbi+9UWCQVaXYCOPUl6gFrPR7+jGg==}
- dependencies:
- language-subtag-registry: 0.3.22
- dev: true
-
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -3652,63 +2599,44 @@ packages:
type-check: 0.4.0
dev: true
- /lines-and-columns/1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
-
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
- /lodash.truncate/4.4.2:
- resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- dev: true
-
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: true
- /loglevel-colored-level-prefix/1.0.0:
- resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
- dependencies:
- chalk: 1.1.3
- loglevel: 1.8.1
- dev: true
-
- /loglevel/1.8.1:
- resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
- engines: {node: '>= 0.6.0'}
- dev: true
-
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
+ dev: false
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
dev: true
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
dev: true
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
dev: true
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
@@ -3716,106 +2644,42 @@ packages:
picomatch: 2.3.1
dev: true
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
dev: true
- /minimist/1.2.8:
- resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: true
-
- /ms/2.0.0:
- resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: true
-
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
dev: true
- /ms/2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: true
-
- /nanoid/3.3.6:
+ /nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
dev: true
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
+ dev: false
- /object-inspect/1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- dev: true
-
- /object-keys/1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /object.assign/4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: true
-
- /object.entries/1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.fromentries/2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.hasown/1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
- dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.values/1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
dev: true
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -3827,52 +2691,42 @@ packages:
word-wrap: 1.2.3
dev: true
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
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.21.4
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
- dev: true
-
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
dev: true
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
dev: true
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
dev: true
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
dev: true
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
dev: true
- /postcss/8.4.23:
+ /postcss@8.4.23:
resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -3881,74 +2735,79 @@ packages:
source-map-js: 1.0.2
dev: true
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
dev: true
- /prettier-eslint/13.0.0:
- resolution: {integrity: sha512-P5K31qWgUOQCtJL/3tpvEe28KfP49qbr6MTVEXC7I2k7ci55bP3YDr+glhyCdhIzxGCVp2f8eobfQ5so52RIIA==}
- engines: {node: '>=10.0.0'}
+ /prettier-plugin-tailwindcss@0.2.8(prettier@2.5.1):
+ resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
+ engines: {node: '>=12.17.0'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@shufo/prettier-plugin-blade': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: '>=2.2.0'
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@shufo/prettier-plugin-blade':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
dependencies:
- '@typescript-eslint/parser': 3.10.1_eslint@7.32.0+typescript@3.9.10
- common-tags: 1.8.2
- dlv: 1.1.3
- eslint: 7.32.0
- indent-string: 4.0.0
- lodash.merge: 4.6.2
- loglevel-colored-level-prefix: 1.0.0
prettier: 2.5.1
- pretty-format: 23.6.0
- require-relative: 0.8.7
- typescript: 3.9.10
- vue-eslint-parser: 7.1.1_eslint@7.32.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /prettier-linter-helpers/1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- fast-diff: 1.2.0
dev: true
- /prettier/2.5.1:
+ /prettier@2.5.1:
resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-format/23.6.0:
- resolution: {integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==}
- dependencies:
- ansi-regex: 3.0.1
- ansi-styles: 3.2.1
- dev: true
-
- /progress/2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
- dev: true
-
- /prop-types/15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
- dev: true
-
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
dev: true
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
- /react-dom/17.0.2_react@17.0.2:
+ /react-dom@17.0.2(react@17.0.2):
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
react: 17.0.2
@@ -3959,16 +2818,12 @@ packages:
scheduler: 0.20.2
dev: false
- /react-is/16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- dev: true
-
- /react-refresh/0.10.0:
- resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==}
+ /react-refresh@0.13.0:
+ resolution: {integrity: sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg==}
engines: {node: '>=0.10.0'}
dev: true
- /react/17.0.2:
+ /react@17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3976,42 +2831,33 @@ packages:
object-assign: 4.1.1
dev: false
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
dev: true
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: true
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: true
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.21.5
- dev: true
-
- /regexp.prototype.flags/1.5.0:
- resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- functions-have-names: 1.2.3
+ '@babel/runtime': 7.17.2
dev: true
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
dev: true
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -4023,33 +2869,24 @@ packages:
unicode-match-property-value-ecmascript: 2.1.0
dev: true
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
dev: true
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
dev: true
- /require-from-string/2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /require-relative/0.8.7:
- resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
- dev: true
-
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
dev: true
- /resolve/1.22.2:
+ /resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
@@ -4058,69 +2895,52 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /resolve/2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
- hasBin: true
- dependencies:
- is-core-module: 2.12.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
-
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
dev: true
- /rollup/2.77.3:
- resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
- engines: {node: '>=10.0.0'}
+ /rollup@3.21.5:
+ resolution: {integrity: sha512-a4NTKS4u9PusbUJcfF4IMxuqjFzjm6ifj76P54a7cKnvVzJaG12BLVR+hgU2YDGHzyMMQNxLAZWuALsn8q2oQg==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
dev: true
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
dev: true
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
dev: true
- /safe-regex-test/1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-regex: 1.1.4
- dev: true
-
- /scheduler/0.20.2:
+ /scheduler@0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
dev: false
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
dev: true
- /semver/7.5.0:
+ /semver@7.5.0:
resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
engines: {node: '>=10'}
hasBin: true
@@ -4128,27 +2948,19 @@ packages:
lru-cache: 6.0.0
dev: true
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
dev: true
- /shebang-regex/3.0.0:
+ /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.2.0
- object-inspect: 1.12.3
- dev: true
-
- /single-spa-react/3.2.0_react@17.0.2:
+ /single-spa-react@3.2.0(react@17.0.2):
resolution: {integrity: sha512-s8K7AuS26WvN9n81z1NBlnZIe/Hin423P8jYLuG/DCNTYo5JbJMS5+Cb/wQd4ikG6YqoedpV4cb7nAcxvlLyhg==}
peerDependencies:
react: '*'
@@ -4156,38 +2968,21 @@ packages:
react: 17.0.2
dev: false
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
dev: true
- /slice-ansi/4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
- dev: true
-
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
dev: true
- /spawn-command/0.0.2-1:
+ /spawn-command@0.0.2-1:
resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
dev: true
- /sprintf-js/1.0.3:
- resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- dev: true
-
- /string-natural-compare/3.0.1:
- resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
- dev: true
-
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -4196,159 +2991,74 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string.prototype.matchall/4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
- dev: true
-
- /string.prototype.trim/1.2.7:
- resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /string.prototype.trimend/1.0.6:
- resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /string.prototype.trimstart/1.0.6:
- resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /strip-ansi/3.0.1:
- resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
dev: true
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
-
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: true
- /supports-color/2.0.0:
- resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
- engines: {node: '>=0.8.0'}
- dev: true
-
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
dev: true
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
dev: true
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
dev: true
- /table/6.8.1:
- resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
- engines: {node: '>=10.0.0'}
- dependencies:
- ajv: 8.12.0
- lodash.truncate: 4.4.2
- slice-ansi: 4.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- dev: true
-
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
dev: true
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
dev: true
- /tree-kill/1.2.2:
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
dev: true
- /ts-config-single-spa/2.0.1:
+ /ts-config-single-spa@2.0.1:
resolution: {integrity: sha512-zGTozFbnMqdoNCsOJ+gqYSJNIm7QUJtN/3o8uyOCuFxwfrBETQ+lyHnvvgVO29IEVhhrnOp6NQAyOIVE8lmqxA==}
dev: true
- /tsconfig-paths/3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
-
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /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
-
- /tsutils/3.21.0_typescript@4.6.2:
+ /tsutils@3.21.0(typescript@4.6.2):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -4358,53 +3068,30 @@ packages:
typescript: 4.6.2
dev: true
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
dev: true
- /typed-array-length/1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- dependencies:
- call-bind: 1.0.2
- for-each: 0.3.3
- is-typed-array: 1.1.10
- dev: true
-
- /typescript/3.9.10:
- resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
- engines: {node: '>=4.2.0'}
- hasBin: true
- dev: true
-
- /typescript/4.6.2:
+ /typescript@4.6.2:
resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /unbox-primitive/1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
- dependencies:
- call-bind: 1.0.2
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
- dev: true
-
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
dev: true
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
@@ -4412,17 +3099,17 @@ packages:
unicode-property-aliases-ecmascript: 2.1.0
dev: true
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
dev: true
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
dev: true
- /update-browserslist-db/1.0.11_browserslist@4.21.5:
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
@@ -4433,94 +3120,64 @@ packages:
picocolors: 1.0.0
dev: true
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
dev: true
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /vite-plugin-dynamic-import/0.7.1:
- resolution: {integrity: sha512-Rq8I91rojmxo6y0ZWO9fOCvluEP6yqmmOF0uyD/O9gOWh0KS6IzNjW3MPIqB//qXjXlXbodZOa5P5zz76BYn6A==}
+ /vite-plugin-dynamic-import@0.7.0:
+ resolution: {integrity: sha512-kXlmXPQdSULvE7bfRGGYokyACOrz+Sf8BAbj4HsxsH/Rd3fl7maAjMSWNYlLcODD06SMw7OU1x+/tEWjLLyGFg==}
dependencies:
fast-glob: 3.2.12
vite-plugin-utils: 0.1.0
dev: true
- /vite-plugin-utils/0.1.0:
+ /vite-plugin-utils@0.1.0:
resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
dependencies:
acorn-walk: 8.2.0
fast-glob: 3.2.12
dev: true
- /vite/2.9.15:
- resolution: {integrity: sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==}
- engines: {node: '>=12.2.0'}
+ /vite@4.3.5:
+ resolution: {integrity: sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- esbuild: 0.14.54
+ esbuild: 0.17.18
postcss: 8.4.23
resolve: 1.22.2
- rollup: 2.77.3
+ rollup: 3.21.5
optionalDependencies:
fsevents: 2.3.2
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.4
- eslint: 7.32.0
- eslint-scope: 5.1.1
- eslint-visitor-keys: 1.3.0
- espree: 6.2.1
- esquery: 1.5.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /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.7
- is-string: 1.0.7
- is-symbol: 1.0.4
- dev: true
-
- /which-typed-array/1.1.9:
- resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- is-typed-array: 1.1.10
- dev: true
-
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
@@ -4528,12 +3185,12 @@ packages:
isexe: 2.0.0
dev: true
- /word-wrap/1.2.3:
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
dev: true
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -4542,34 +3199,29 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
dev: true
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
dev: true
- /yallist/4.0.0:
+ /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'}
- dev: true
-
- /yargs-parser/20.2.9:
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
- /yargs/16.2.0:
+ /yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
dependencies:
diff --git a/apps/career/src/root.component.tsx b/apps/career/src/root.component.tsx
index a677cf14e..7e7496b8f 100644
--- a/apps/career/src/root.component.tsx
+++ b/apps/career/src/root.component.tsx
@@ -1,11 +1,11 @@
-import React from "react";
+import React from "react"
interface RootProps {
- name?: string;
+ name?: string
}
const Root = ({ name }: RootProps) => {
- return ;
-};
+ return
+}
-export default Root;
+export default Root
diff --git a/apps/career/src/wasedatime-career.ts b/apps/career/src/wasedatime-career.ts
index 1bdcf66ae..91ec116b1 100644
--- a/apps/career/src/wasedatime-career.ts
+++ b/apps/career/src/wasedatime-career.ts
@@ -1,9 +1,9 @@
-import React from "react";
+import React from "react"
-import ReactDOM from "react-dom";
-import singleSpaReact from "single-spa-react";
+import ReactDOM from "react-dom"
+import singleSpaReact from "single-spa-react"
-import Root from "@app/root.component";
+import Root from "@app/root.component"
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
const lifecycles = singleSpaReact({
@@ -15,6 +15,6 @@ const lifecycles = singleSpaReact({
info,
props // Customize the root error boundary for your microfrontend here.
) => null,
-});
+})
-export const { bootstrap, mount, unmount } = lifecycles;
+export const { bootstrap, mount, unmount } = lifecycles
diff --git a/apps/career/vite.config.ts b/apps/career/vite.config.ts
index dca49fdcb..6e83ce50b 100644
--- a/apps/career/vite.config.ts
+++ b/apps/career/vite.config.ts
@@ -1,6 +1,6 @@
-import reactRefresh from "@vitejs/plugin-react-refresh";
-import dynamicImport from "vite-plugin-dynamic-import";
-const path = require("path");
+import react from "@vitejs/plugin-react"
+import dynamicImport from "vite-plugin-dynamic-import"
+const path = require("path")
export default {
root: "./src",
@@ -26,6 +26,6 @@ export default {
},
modules: ["node_modules"],
},
- plugins: [reactRefresh(), dynamicImport()],
+ plugins: [react(), dynamicImport()],
envPrefix: ["VITE_", "REACT_APP_"],
-};
+}
diff --git a/apps/feeds/.eslintrc b/apps/feeds/.eslintrc
deleted file mode 100644
index dabcef7a6..000000000
--- a/apps/feeds/.eslintrc
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "extends": [
- "next",
- "next/core-web-vitals",
- "ts-react-important-stuff",
- "next/babel"
- ],
- "rules": {
- "@next/next/no-img-element": "off",
- "react/no-children-prop": "off",
- "react-hooks/exhaustive-deps": "off"
- }
-}
diff --git a/apps/feeds/.eslintrc.js b/apps/feeds/.eslintrc.js
new file mode 100644
index 000000000..99d3de697
--- /dev/null
+++ b/apps/feeds/.eslintrc.js
@@ -0,0 +1,6 @@
+module.exports = {
+ extends: ["custom"],
+ rules: {
+ "@next/next/no-img-element": "off",
+ },
+};
diff --git a/apps/feeds/.prettierrc.js b/apps/feeds/.prettierrc.js
new file mode 100644
index 000000000..8c55273ee
--- /dev/null
+++ b/apps/feeds/.prettierrc.js
@@ -0,0 +1,7 @@
+module.exports = {
+ plugins: [require("prettier-plugin-tailwindcss")],
+ trailingComma: "es5",
+ tabWidth: 2,
+ semi: false,
+ singleQuote: false,
+};
diff --git a/apps/feeds/JSX.d.ts b/apps/feeds/JSX.d.ts
index a4ff36080..cd58213d7 100644
--- a/apps/feeds/JSX.d.ts
+++ b/apps/feeds/JSX.d.ts
@@ -1,19 +1,19 @@
declare namespace JSX {
- export interface AmpImg {
- alt?: string;
- src?: string;
- width?: string;
- height?: string;
- layout?: string;
+ export interface AmpImg {
+ alt?: string;
+ src?: string;
+ width?: string;
+ height?: string;
+ layout?: string;
className?: string;
- }
- export interface IAmphtmlSizerIntrinsic {
- slot?: string;
+ }
+ export interface IAmphtmlSizerIntrinsic {
+ slot?: string;
className?: string;
- children: Element;
- }
- export interface IntrinsicElements {
- 'amp-img': AmpImg;
- 'i-amphtml-sizer-intrinsic': IAmphtmlSizerIntrinsic;
- }
-}
\ No newline at end of file
+ children: Element;
+ }
+ export interface IntrinsicElements {
+ "amp-img": AmpImg;
+ "i-amphtml-sizer-intrinsic": IAmphtmlSizerIntrinsic;
+ }
+}
diff --git a/apps/feeds/README.md b/apps/feeds/README.md
index f5584c83e..646adeb63 100644
--- a/apps/feeds/README.md
+++ b/apps/feeds/README.md
@@ -1,4 +1,5 @@
# wasedatime-feeds
+
Feeds feature for WasedaTime, displaying feeds with server-side generation.
Built with NextJS
diff --git a/apps/feeds/app/api/hello/route.ts b/apps/feeds/app/api/hello/route.ts
new file mode 100644
index 000000000..0720dbca1
--- /dev/null
+++ b/apps/feeds/app/api/hello/route.ts
@@ -0,0 +1,3 @@
+export async function GET(request: Request) {
+ return new Response("Hello, Next.js!")
+}
diff --git a/apps/feeds/app/globals.css b/apps/feeds/app/globals.css
new file mode 100644
index 000000000..b5c61c956
--- /dev/null
+++ b/apps/feeds/app/globals.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/apps/feeds/app/layout.tsx b/apps/feeds/app/layout.tsx
new file mode 100644
index 000000000..9769706ef
--- /dev/null
+++ b/apps/feeds/app/layout.tsx
@@ -0,0 +1,31 @@
+import "./globals.css"
+import { Inter } from "next/font/google"
+import { ThemeProvider } from "@/components/ThemeProvider"
+import React from "react"
+
+const inter = Inter({ subsets: ["latin"] })
+
+export const metadata = {
+ title: "Create Next App",
+ description: "Generated by create next app",
+}
+
+interface RootLayoutProps {
+ children: React.ReactNode
+}
+
+export default function RootLayout({ children }: RootLayoutProps) {
+ return (
+
+
+
+
+ {children}
+
+
+
+
+ )
+}
diff --git a/apps/feeds/app/page.tsx b/apps/feeds/app/page.tsx
new file mode 100644
index 000000000..bfcbea74c
--- /dev/null
+++ b/apps/feeds/app/page.tsx
@@ -0,0 +1,9 @@
+import React from "react"
+
+export default function Home() {
+ return (
+
+ 🚧 Under Re-Construction 🚧
+
+ )
+}
diff --git a/apps/feeds/components/FeedLink.tsx b/apps/feeds/components/FeedLink.tsx
index 6793ac1ed..d9979cbdb 100644
--- a/apps/feeds/components/FeedLink.tsx
+++ b/apps/feeds/components/FeedLink.tsx
@@ -1,103 +1,123 @@
-import Link from "next/link";
-import { makeStyles } from "@material-ui/core/styles";
-import Grid from "@material-ui/core/Grid";
-import Card from "@material-ui/core/Card";
-import CardActionArea from "@material-ui/core/CardActionArea";
-import CardContent from "@material-ui/core/CardContent";
-import CardMedia from "@material-ui/core/CardMedia";
-import Hidden from "@material-ui/core/Hidden";
-import { useEffect, useState } from "react";
-import { FeedInfo } from "../constants/types";
-import { Lang, LangMap } from "../constants/langs";
+"use client"
-const useStyles = makeStyles({
- card: {
- display: "flex",
- padding: 0
- },
- cardContent: {
- padding: 20
- },
- cardDetails: {
- flex: 1,
- padding: 10,
- lineHeight: 1.5
- },
- cardMedia: {
- width: 200,
- },
- title: {
- fontSize: 20,
- fontFamily: "Lato, Yu Gothic Medium, Segoe UI"
- },
- text: {
- fontFamily: "Segoe UI, Yu Gothic Medium, Lato",
- color: '#666'
- },
- lang: {
- float: 'right',
- borderRadius: 5,
- background: '#bbb',
- color: '#fff',
- padding: '0px 5px'
- }
-});
+import Link from "next/link"
+import Grid from "@mui/material/Grid"
+import Card from "@mui/material/Card"
+import CardActionArea from "@mui/material/CardActionArea"
+import CardContent from "@mui/material/CardContent"
+import CardMedia from "@mui/material/CardMedia"
+import Hidden from "@mui/material/Hidden"
+import React, { useEffect, useState } from "react"
+import { FeedInfo } from "../constants/types"
+import { Lang, LangMap } from "../constants/langs"
type Props = {
- name: string;
- feed: FeedInfo;
- locale: string;
+ name: string
+ feed: FeedInfo
+ locale: string
}
const FeedLink = ({ name, feed, locale }: Props) => {
- const classes = useStyles();
- const [cover, setCover] = useState('');
+ const [cover, setCover] = useState("")
useEffect(() => {
- var coverImg;
+ var coverImg
try {
- coverImg = require(`../public/feeds/${name}/media/image1.jpg`);
+ coverImg = require(`../public/feeds/${name}/media/image1.jpg`)
} catch (e: any) {
- if (e.code === 'MODULE_NOT_FOUND') {
+ if (e.code === "MODULE_NOT_FOUND") {
try {
- coverImg = require(`../public/feeds/${name}/media/image1.jpeg`);
+ coverImg = require(`../public/feeds/${name}/media/image1.jpeg`)
} catch (err: any) {
- if (err.code === 'MODULE_NOT_FOUND') {
+ if (err.code === "MODULE_NOT_FOUND") {
try {
- coverImg = require(`../public/feeds/${name}/media/image1.png`);
+ coverImg = require(`../public/feeds/${name}/media/image1.png`)
} catch (error: any) {
- coverImg = null;
+ coverImg = null
}
}
}
}
}
- setCover(coverImg);
+ setCover(coverImg)
}, [])
-
+
return (
-
-
-
-
-
+
+
+
+
+
{feed.title}
-
- {feed.partner} {feed.authors.map((author, i) => i === 0 ? author : ' & ' + author)}
+
+ {feed.partner}{" "}
+ {feed.authors.map((author, i) =>
+ i === 0 ? author : " & " + author
+ )}
-
+
{feed.date}
- {LangMap[feed.lang as Lang]}
+
+ {LangMap[feed.lang as Lang]}
+
@@ -109,4 +129,4 @@ const FeedLink = ({ name, feed, locale }: Props) => {
)
}
-export default FeedLink;
\ No newline at end of file
+export default FeedLink
diff --git a/apps/feeds/components/ThemeProvider.tsx b/apps/feeds/components/ThemeProvider.tsx
new file mode 100644
index 000000000..ffac782ef
--- /dev/null
+++ b/apps/feeds/components/ThemeProvider.tsx
@@ -0,0 +1,9 @@
+"use client"
+
+import * as React from "react"
+import { ThemeProvider as NextThemesProvider } from "next-themes"
+import type { ThemeProviderProps } from "next-themes/dist/types"
+
+export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
+ return {children}
+}
diff --git a/apps/feeds/constants/langs.ts b/apps/feeds/constants/langs.ts
index d2de35b1e..0f0543890 100644
--- a/apps/feeds/constants/langs.ts
+++ b/apps/feeds/constants/langs.ts
@@ -3,15 +3,15 @@ export enum Lang {
JA = "JA",
zhCN = "zhCN",
zhTW = "zhTW",
- KR = "KR"
-};
+ KR = "KR",
+}
-export const LangMap : {
- [key in Lang]: string;
+export const LangMap: {
+ [key in Lang]: string
} = {
- EN: 'English',
- JA: '日本語',
- zhCN: '简中',
- zhTW: '繁中',
- KR: '한국어'
-};
\ No newline at end of file
+ EN: "English",
+ JA: "日本語",
+ zhCN: "简中",
+ zhTW: "繁中",
+ KR: "한국어",
+}
diff --git a/apps/feeds/constants/types.ts b/apps/feeds/constants/types.ts
index 9ed71539c..99906417a 100644
--- a/apps/feeds/constants/types.ts
+++ b/apps/feeds/constants/types.ts
@@ -1,8 +1,8 @@
export type FeedInfo = {
- name: string;
- date: string;
- partner: string;
- title: string;
- lang: string;
- authors: string[];
-};
+ name: string
+ date: string
+ partner: string
+ title: string
+ lang: string
+ authors: string[]
+}
diff --git a/apps/feeds/hooks/theme-context.tsx b/apps/feeds/hooks/theme-context.tsx
deleted file mode 100644
index f1fcdb0fb..000000000
--- a/apps/feeds/hooks/theme-context.tsx
+++ /dev/null
@@ -1,71 +0,0 @@
-import React, { useState, useEffect, createContext } from "react";
-
-export type ThemeTypes = "light" | "dark";
-
-const getInitialTheme = (): ThemeTypes => {
- if (typeof window !== "undefined" && window.localStorage) {
- const storedPrefs = window.localStorage.getItem("color-theme");
- if (typeof storedPrefs === "string") {
- return storedPrefs as ThemeTypes;
- }
- const userMedia = window.matchMedia("(prefers-color-scheme: dark)");
- if (userMedia.matches) {
- return "dark";
- }
- }
- // If you want to use dark theme as the default, return 'dark' instead
-
- return "light";
-};
-
-interface ThemeContextInterface {
- setTheme: (theme: ThemeTypes) => void;
- theme: ThemeTypes;
-}
-
-export const ThemeContext = createContext(
- undefined
-);
-
-interface ThemeProviderType {
- initialTheme?: ThemeTypes;
- children: React.ReactNode;
-}
-
-export const ThemeProvider = ({
- initialTheme,
- children,
-}: ThemeProviderType) => {
- if (ThemeContext === undefined) {
- throw Error("ThemeContext must be within a provider");
- }
-
- const [theme, setTheme] = useState(getInitialTheme);
-
- const rawSetTheme = (rawTheme: ThemeTypes) => {
- const root = window.document.documentElement;
- const isDark = rawTheme === "dark";
- const themeChangedEvent = new Event("themeChanged");
- root.classList.remove(isDark ? "light" : "dark");
- root.classList.add(rawTheme);
- localStorage.setItem("color-theme", rawTheme);
- window.dispatchEvent(themeChangedEvent);
- };
-
- if (initialTheme) {
- rawSetTheme(initialTheme);
- }
-
- useEffect(() => {
- rawSetTheme(theme);
- }, [theme]);
-
- const value: ThemeContextInterface = {
- setTheme,
- theme,
- };
-
- return (
- {children}
- );
-};
diff --git a/apps/feeds/hooks/useLocale.ts b/apps/feeds/hooks/useLocale.ts
index 6b2343bf9..2d16d5b35 100644
--- a/apps/feeds/hooks/useLocale.ts
+++ b/apps/feeds/hooks/useLocale.ts
@@ -1,8 +1,8 @@
-import en from "../constants/locales/en/translation.json";
-import ja from "../constants/locales/ja/translation.json";
+import en from "../constants/locales/en/translation.json"
+import ja from "../constants/locales/ja/translation.json"
export const useLocale = (locale: string) => {
- const t = locale === "en" ? en : ja;
+ const t = locale === "en" ? en : ja
- return { locale, t };
-};
\ No newline at end of file
+ return { locale, t }
+}
diff --git a/apps/feeds/i18n.config.js b/apps/feeds/i18n.config.js
index 503c4cf94..bd9ae74c2 100644
--- a/apps/feeds/i18n.config.js
+++ b/apps/feeds/i18n.config.js
@@ -1,2 +1,2 @@
-export const languages = ['en', 'ja']
-export const defaultLanguage = 'en'
\ No newline at end of file
+export const languages = ["en", "ja"];
+export const defaultLanguage = "en";
diff --git a/apps/feeds/next-env.d.ts b/apps/feeds/next-env.d.ts
index 2532e77ab..4f11a03dc 100644
--- a/apps/feeds/next-env.d.ts
+++ b/apps/feeds/next-env.d.ts
@@ -1,4 +1,5 @@
///
+///
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
diff --git a/apps/feeds/next.config.js b/apps/feeds/next.config.js
index f92eb9496..bb4320f93 100644
--- a/apps/feeds/next.config.js
+++ b/apps/feeds/next.config.js
@@ -1,23 +1,9 @@
/** @type {import('next').NextConfig} */
-const withPlugins = require("next-compose-plugins");
-const withTM = require('next-transpile-modules')(['@bit/wasedatime.core.ts.utils.responsive-utils', '@bit/wasedatime.core.ts.ui.loading-spinner']);
-const optimizedImages = require("next-optimized-images");
-
-module.exports = withPlugins([[optimizedImages, {}]], withTM({
+const nextConfig = {
+ output: "export",
reactStrictMode: true,
- webpack: function (config) {
- config.module.rules.push({
- test: /\.md$/,
- use: "raw-loader",
- });
- return config;
- },
- images: {
- disableStaticImages: true
- },
- assetPrefix: process.env.APP_ENV === 'production' ? "/feeds" : "",
- env: {
- APP_ENV: process.env.APP_ENV || 'development',
- MF_FEEDS_DOMAIN: process.env.MF_FEEDS_DOMAIN || ''
- }
-}))
\ No newline at end of file
+ swcMinify: true,
+ transpilePackages: ["wasedatime-ui"],
+}
+
+module.exports = nextConfig
diff --git a/apps/feeds/package.json b/apps/feeds/package.json
index fef8282cb..79f29bd12 100644
--- a/apps/feeds/package.json
+++ b/apps/feeds/package.json
@@ -13,25 +13,34 @@
"lint": "next lint",
"fix": "",
"test": "cross-env BABEL_ENV=test jest",
- "format": "prettier --write \"./**\""
+ "format": "prettier --write \"{components,constants,hooks,pages}/**/*.{js,jsx,ts,tsx}\""
},
"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": "0.0.1",
+ "@emotion/react": "11.9.0",
+ "@emotion/styled": "11.8.1",
"@fortawesome/fontawesome-svg-core": "6.1.1",
- "@material-ui/core": "4.12.4",
+ "@mdx-js/loader": "^2.3.0",
+ "@mdx-js/react": "^2.3.0",
+ "@mui/material": "5.8.3",
+ "@mui/styles": "^5.12.3",
+ "@next/mdx": "^13.4.1",
"fs": "0.0.1-security",
+ "gray-matter": "^4.0.3",
"i18next": "21.8.9",
"i18next-browser-languagedetector": "6.1.4",
- "next": "12.1.6",
- "next-compose-plugins": "2.2.1",
+ "imagemin-mozjpeg": "9.0.0",
+ "imagemin-optipng": "^8.0.0",
+ "next": "13.4.1",
+ "next-compose-plugins": "^2.2.1",
+ "next-images": "^1.8.5",
"next-optimized-images": "2.6.2",
+ "next-themes": "^0.2.1",
"path": "0.12.7",
- "react": "17.0.2",
- "react-dom": "17.0.2",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
"react-markdown": "8.0.3",
- "styled-components": "5.3.5"
+ "styled-components": "5.3.5",
+ "wasedatime-ui": "*"
},
"devDependencies": {
"@types/node": "17.0.41",
@@ -40,15 +49,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",
+ "eslint-config-custom": "workspace:*",
"img-loader": "4.0.0",
- "next-transpile-modules": "9.0.0",
- "postcss": "8.4.14",
+ "postcss": "8.4.23",
+ "prettier": "^2.8.8",
+ "prettier-plugin-tailwindcss": "^0.2.8",
"raw-loader": "4.0.2",
- "tailwindcss": "3.0.24",
+ "tailwindcss": "3.3.2",
"typescript": "4.7.3",
"url-loader": "4.1.1"
},
diff --git a/apps/feeds/pages copy/[lang]/[feed].tsx b/apps/feeds/pages copy/[lang]/[feed].tsx
new file mode 100644
index 000000000..c2bf4b7a2
--- /dev/null
+++ b/apps/feeds/pages copy/[lang]/[feed].tsx
@@ -0,0 +1,210 @@
+import { useRouter } from "next/router"
+import { useAmp } from "next/amp"
+import Head from "next/head"
+import ReactMarkdown from "react-markdown"
+import fs from "fs"
+import path from "path"
+import React from "react"
+import { languages } from "../../i18n.config"
+
+export const config = { amp: "hybrid" }
+
+interface Props {
+ feed: string
+ lang: string
+ filename: string
+ updatedAt: string
+}
+
+interface StaticProps {
+ params: { feed: string; lang: string }
+}
+
+interface ComponentProps {
+ img: any
+}
+
+const Feed = ({ feed, lang, filename, updatedAt }: Props) => {
+ const isAmp = useAmp()
+ const router = useRouter()
+
+ function Img({
+ alt,
+ src = "",
+ title,
+ }: {
+ alt?: string | undefined
+ src?: string | undefined
+ title?: string | undefined
+ }) {
+ return isAmp ? (
+
+
+
+ ) : (
+
+
+
+ )
+ }
+
+ const feedInfo = {
+ date: (router.query.feed as string).split("-")[0].replace(/_/g, "-"),
+ partner: (router.query.feed as string).split("-")[1].replace(/_/g, "-"),
+ title: (router.query.feed as string)
+ .split("-")[2]
+ .replace(/_/g, " ")
+ .replace(/\[/g, "【")
+ .replace(/\]/g, "】")
+ .replace(/\/g, ")"),
+ lang: (router.query.feed as string).split("-")[3],
+ authors: (router.query.feed as string)
+ .split("-")
+ .slice(4)
+ .map((author) =>
+ author.replace(/_/g, " ").replace(/\/g, ")")
+ ),
+ }
+
+ return (
+
+
+ {"WasedaTime Feeds: " + feedInfo.title}
+
+
+ {process.env.NODE_ENV !== "development" &&
+ (isAmp ? (
+
+ ) : (
+
+ ))}
+
+
+ {isAmp && (
+
+ )}
+
+
+
+
+
+
+
+ )
+}
+
+export async function getStaticPaths() {
+ const POSTS_DIRECTORY = path.join(process.cwd(), "public", "feeds")
+ const feedNames = await fs
+ .readdirSync(POSTS_DIRECTORY)
+ .filter((file) => path.extname(file).toLowerCase() === ".md")
+ .map((name) => name.replace(".md", ""))
+ var paths: { params: { lang: string; feed: string } }[] = []
+
+ languages.forEach((lang) => {
+ feedNames.forEach((name) => {
+ paths.push({ params: { lang: lang, feed: name } })
+ })
+ })
+ return { paths, fallback: false }
+}
+
+export async function getStaticProps({ params }: StaticProps) {
+ const path = process.cwd() + `/public/feeds/${params.feed}.md`
+ const stats = await fs.statSync(path)
+ const feed = await fs.readFileSync(path, "utf8")
+ return {
+ props: {
+ feed: feed,
+ lang: params.lang,
+ filename: params.feed,
+ updatedAt:
+ stats.mtime.getFullYear() +
+ "-" +
+ stats.mtime.getMonth() +
+ "-" +
+ stats.mtime.getDate(),
+ },
+ }
+}
+
+export default Feed
diff --git a/apps/feeds/pages copy/[lang]/index.tsx b/apps/feeds/pages copy/[lang]/index.tsx
new file mode 100644
index 000000000..f527331e3
--- /dev/null
+++ b/apps/feeds/pages copy/[lang]/index.tsx
@@ -0,0 +1,153 @@
+import { useState } from "react"
+import type { NextPage } from "next"
+import Head from "next/head"
+import fs from "fs"
+import path from "path"
+import React from "react"
+import FeedLink from "../../components/FeedLink"
+import Grid from "@mui/material/Grid"
+import { useLocale } from "../../hooks/useLocale"
+import { languages } from "../../i18n.config"
+import { FeedInfo } from "../../constants/types"
+import { Lang, LangMap } from "../../constants/langs"
+
+interface StaticProps {
+ params: { lang: string }
+}
+
+interface HomeProps {
+ feedNames: string[]
+ lang: string
+}
+
+const Home: NextPage = ({ feedNames, lang }) => {
+ const { locale, t } = useLocale(lang)
+ const [filteredLang, setFilteredLang] = useState("")
+
+ const feeds: FeedInfo[] = feedNames.map((name) => ({
+ name: name,
+ date: name.split("-")[0].replace(/_/g, "-"),
+ partner: name.split("-")[1].replace(/_/g, "-"),
+ title: name
+ .split("-")[2]
+ .replace(/_/g, " ")
+ .replace(/\[/g, "【")
+ .replace(/\]/g, "】")
+ .replace(/\/g, ")"),
+ lang: name.split("-")[3],
+ authors: name
+ .split("-")
+ .slice(4)
+ .map((author) =>
+ author.replace(/_/g, " ").replace(/\/g, ")")
+ ),
+ }))
+
+ return (
+
+
+
WasedaTime - Feeds
+
+
+
+
+
+
+
{t.index.welcome}
+
+
+
+
+
+
+ {Object.values(Lang).map((lang, i) => (
+
+ ))}
+
+
+
+ {feeds
+ .filter((feed) => !filteredLang || feed.lang === filteredLang)
+ .map((feed, i) => (
+
+ ))}
+
+
+
+ )
+}
+
+export default Home
+
+export async function getStaticPaths() {
+ var paths: { params: { lang: string } }[] = []
+
+ languages.forEach((lang) => {
+ paths.push({ params: { lang: lang } })
+ })
+
+ return { paths, fallback: false }
+}
+
+export async function getStaticProps({ params }: StaticProps) {
+ const POSTS_DIRECTORY = path.join(process.cwd(), "public", "feeds")
+ const feedNames = await fs
+ .readdirSync(POSTS_DIRECTORY)
+ .filter((file) => path.extname(file).toLowerCase() === ".md")
+ .sort((a, b) => (a > b ? -1 : 1))
+ .map((name) => name.replace(".md", ""))
+ return { props: { feedNames, lang: params.lang } }
+}
diff --git a/apps/feeds/pages copy/_app.tsx b/apps/feeds/pages copy/_app.tsx
new file mode 100644
index 000000000..589eb0048
--- /dev/null
+++ b/apps/feeds/pages copy/_app.tsx
@@ -0,0 +1,17 @@
+import "../styles/globals.css"
+import "../styles/feed.css"
+import type { AppProps } from "next/app"
+import { useEffect } from "react"
+
+function MyApp({ Component, pageProps }: AppProps) {
+ useEffect(() => {
+ // Remove the server-side injected CSS.
+ const jssStyles = document.querySelector("#jss-server-side")
+ if (jssStyles) {
+ jssStyles.parentElement?.removeChild(jssStyles)
+ }
+ }, [])
+
+ return
+}
+export default MyApp
diff --git a/apps/feeds/pages copy/_document.tsx b/apps/feeds/pages copy/_document.tsx
new file mode 100644
index 000000000..1598ae547
--- /dev/null
+++ b/apps/feeds/pages copy/_document.tsx
@@ -0,0 +1,47 @@
+import Document, {
+ DocumentContext,
+ Head,
+ Html,
+ Main,
+ NextScript,
+} from "next/document"
+import custom from "!!raw-loader!../styles/feed.css"
+import { ServerStyleSheets } from "@mui/styles"
+import React from "react"
+
+export default class CustomDocument extends Document {
+ static async getInitialProps(ctx: DocumentContext) {
+ const sheets = new ServerStyleSheets()
+ const originalRenderPage = ctx.renderPage
+
+ ctx.renderPage = () =>
+ originalRenderPage({
+ enhanceApp: (App) => (props) => sheets.collect(),
+ })
+
+ const initialProps = await Document.getInitialProps(ctx)
+ return {
+ ...initialProps,
+ styles: (
+ <>
+ {initialProps.styles}
+ {sheets.getStyleElement()}
+ >
+ ),
+ }
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+
+
+ )
+ }
+}
diff --git a/apps/feeds/pages/api/hello.ts b/apps/feeds/pages copy/api/hello.ts
similarity index 65%
rename from apps/feeds/pages/api/hello.ts
rename to apps/feeds/pages copy/api/hello.ts
index f8bcc7e5c..c7692e6b0 100644
--- a/apps/feeds/pages/api/hello.ts
+++ b/apps/feeds/pages copy/api/hello.ts
@@ -1,5 +1,5 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
-import type { NextApiRequest, NextApiResponse } from 'next'
+import type { NextApiRequest, NextApiResponse } from "next"
type Data = {
name: string
@@ -9,5 +9,5 @@ export default function handler(
req: NextApiRequest,
res: NextApiResponse
) {
- res.status(200).json({ name: 'John Doe' })
+ res.status(200).json({ name: "John Doe" })
}
diff --git a/apps/feeds/pages copy/index.tsx b/apps/feeds/pages copy/index.tsx
new file mode 100644
index 000000000..0fec504e5
--- /dev/null
+++ b/apps/feeds/pages copy/index.tsx
@@ -0,0 +1,18 @@
+import type { NextPage } from "next"
+import { useEffect } from "react"
+import { useRouter } from "next/router"
+import { LoadingSpinner } from "wasedatime-ui"
+
+const Home: NextPage = () => {
+ const router = useRouter()
+ useEffect(() => {
+ router.push("/en")
+ }, [])
+ return (
+
+
+
+ )
+}
+
+export default Home
diff --git a/apps/feeds/pages/[lang]/[feed].tsx b/apps/feeds/pages/[lang]/[feed].tsx
deleted file mode 100644
index 8f5cb90c2..000000000
--- a/apps/feeds/pages/[lang]/[feed].tsx
+++ /dev/null
@@ -1,124 +0,0 @@
-import { useRouter } from "next/router";
-import { useAmp } from 'next/amp'
-import Head from 'next/head';
-import ReactMarkdown from "react-markdown";
-import fs from "fs";
-import path from "path";
-import React from "react";
-import { languages } from '../../i18n.config';
-
-export const config = { amp: "hybrid" }
-
-interface Props {
- feed: string;
- lang: string;
- filename: string;
- updatedAt: string;
-}
-
-interface StaticProps {
- params: { feed: string; lang: string; }
-}
-
-interface ComponentProps {
- img: any;
-}
-
-const Feed = ({ feed, lang, filename, updatedAt }: Props) => {
- const isAmp = useAmp();
- const router = useRouter();
-
- function Img ({ alt, src = '', title }: { alt?: string | undefined; src?: string | undefined; title?: string | undefined }) {
- return isAmp ? (
-
- ) : (
-
- );
- };
-
- const feedInfo = {
- date: (router.query.feed as string).split('-')[0].replace(/_/g, '-'),
- partner: (router.query.feed as string).split('-')[1].replace(/_/g, '-'),
- title: (router.query.feed as string).split('-')[2].replace(/_/g, ' ').replace(/\[/g, '【').replace(/\]/g, '】').replace(/\/g, ')'),
- lang: (router.query.feed as string).split('-')[3],
- authors: (router.query.feed as string).split('-').slice(4).map(author => author.replace(/_/g, ' ').replace(/\/g, ')'))
- };
-
- return (
-
-
- {"WasedaTime Feeds: " + feedInfo.title}
-
-
- {
- process.env.NODE_ENV !== 'development' && (
- isAmp
- ?
- :
- )
- }
-
-
- {
- isAmp &&
- }
-
-
-
-
-
-
-
- )
-}
-
-export async function getStaticPaths() {
- const POSTS_DIRECTORY = path.join(process.cwd(), "public", "feeds");
- const feedNames = await fs.readdirSync(POSTS_DIRECTORY).filter(file => path.extname(file).toLowerCase() === '.md').map(name => name.replace('.md', ''));
- var paths: { params: { lang: string; feed: string; } }[] = []
-
- languages.forEach(lang => {
- feedNames.forEach(name => {
- paths.push({ params: { lang: lang, feed: name } })
- });
- });
- return { paths, fallback: false }
-}
-
-export async function getStaticProps({ params }: StaticProps) {
- const path = process.cwd() + `/public/feeds/${params.feed}.md`;
- const stats = await fs.statSync(path)
- const feed = await fs.readFileSync(path, 'utf8')
- return {
- props: {
- feed: feed,
- lang: params.lang,
- filename: params.feed,
- updatedAt: stats.mtime.getFullYear() + '-' + stats.mtime.getMonth() + '-' + stats.mtime.getDate()
- }
- }
-}
-
-export default Feed;
\ No newline at end of file
diff --git a/apps/feeds/pages/[lang]/index.tsx b/apps/feeds/pages/[lang]/index.tsx
deleted file mode 100644
index 443ed92af..000000000
--- a/apps/feeds/pages/[lang]/index.tsx
+++ /dev/null
@@ -1,107 +0,0 @@
-import { useState } from 'react';
-import type { NextPage } from 'next'
-import Head from 'next/head'
-import fs from "fs";
-import path from "path";
-import FeedLink from '../../components/FeedLink';
-import Grid from "@material-ui/core/Grid";
-import { useLocale } from '../../hooks/useLocale';
-import { languages } from '../../i18n.config';
-import { FeedInfo } from '../../constants/types';
-import { Lang, LangMap } from '../../constants/langs';
-
-interface StaticProps {
- params: { lang: string; }
-}
-
-interface HomeProps {
- feedNames: string[];
- lang: string;
-}
-
-const Home: NextPage = ({ feedNames, lang }) => {
- const { locale, t } = useLocale(lang);
- const [ filteredLang, setFilteredLang ] = useState("");
-
- const feeds: FeedInfo[] = feedNames.map(name => ({
- name: name,
- date: name.split('-')[0].replace(/_/g, '-'),
- partner: name.split('-')[1].replace(/_/g, '-'),
- title: name.split('-')[2].replace(/_/g, ' ').replace(/\[/g, '【').replace(/\]/g, '】').replace(/\/g, ')'),
- lang: name.split('-')[3],
- authors: name.split('-').slice(4).map(author => author.replace(/_/g, ' ').replace(/\/g, ')'))
- }));
-
- return (
-
-
-
WasedaTime - Feeds
-
-
-
-
-
-
-
{t.index.welcome}
-
-
-
-
-
-
- {
- Object.values(Lang).map((lang, i) => (
-
- ))
- }
-
-
-
- {
- feeds.filter(feed => !filteredLang || feed.lang === filteredLang).map((feed, i) => (
-
- ))
- }
-
-
-
- )
-}
-
-export default Home;
-
-export async function getStaticPaths() {
- var paths: { params: { lang: string } }[] = []
-
- languages.forEach(lang => {
- paths.push({ params: { lang: lang } })
- });
-
- return { paths, fallback: false }
-}
-
-export async function getStaticProps({ params }: StaticProps) {
- const POSTS_DIRECTORY = path.join(process.cwd(), "public", "feeds");
- const feedNames = await fs.readdirSync(POSTS_DIRECTORY).filter(file => path.extname(file).toLowerCase() === '.md').sort((a, b) => a > b ? -1 : 1).map(name => name.replace('.md', ''));
- return { props: { feedNames, lang: params.lang } };
-}
diff --git a/apps/feeds/pages/_app.tsx b/apps/feeds/pages/_app.tsx
deleted file mode 100644
index 3f8cb65cb..000000000
--- a/apps/feeds/pages/_app.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import '../styles/globals.css'
-import '../styles/feed.css'
-import type { AppProps } from 'next/app'
-import { useEffect } from 'react';
-
-function MyApp({ Component, pageProps }: AppProps) {
- useEffect(() => {
- // Remove the server-side injected CSS.
- const jssStyles = document.querySelector('#jss-server-side');
- if (jssStyles) {
- jssStyles.parentElement?.removeChild(jssStyles);
- }
- }, []);
-
- return
-}
-export default MyApp
diff --git a/apps/feeds/pages/_document.tsx b/apps/feeds/pages/_document.tsx
deleted file mode 100644
index 515379ab4..000000000
--- a/apps/feeds/pages/_document.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import Document, { DocumentContext } from 'next/document'
-import custom from '!!raw-loader!../styles/feed.css';
-import { ServerStyleSheets } from '@material-ui/core/styles';
-
-export default class MyDocument extends Document {
- static async getInitialProps (ctx: DocumentContext) {
- // Render app and page and get the context of the page with collected side effects.
- const sheets = new ServerStyleSheets();
- const originalRenderPage = ctx.renderPage;
-
- ctx.renderPage = () =>
- originalRenderPage({
- enhanceApp: (App) => (props) => sheets.collect(),
- });
-
- const initialProps = await Document.getInitialProps(ctx)
- return {
- ...initialProps,
- styles: (
- <>
- {initialProps.styles}
-
- {sheets.getStyleElement()}
- >
- )
- }
- }
-}
\ No newline at end of file
diff --git a/apps/feeds/pages/index.tsx b/apps/feeds/pages/index.tsx
deleted file mode 100644
index 77980cd22..000000000
--- a/apps/feeds/pages/index.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import type { NextPage } from 'next'
-import { useEffect } from 'react'
-import { useRouter } from 'next/router';
-import LoadingSpinner from "@bit/wasedatime.core.ts.ui.loading-spinner";
-
-const Home: NextPage = () => {
- const router = useRouter();
- useEffect(() => {
- router.push('/en')
- }, [])
- return (
-
-
-
- )
-}
-
-export default Home;
\ No newline at end of file
diff --git a/apps/feeds/pnpm-lock.yaml b/apps/feeds/pnpm-lock.yaml
index 4a7328874..8a2d93d57 100644
--- a/apps/feeds/pnpm-lock.yaml
+++ b/apps/feeds/pnpm-lock.yaml
@@ -1,87 +1,144 @@
-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': 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
- '@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: 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.14
- raw-loader: 4.0.2
- react: 17.0.2
- react-dom: 17.0.2
- react-markdown: 8.0.3
- styled-components: 5.3.5
- tailwindcss: 3.0.24
- typescript: 4.7.3
- url-loader: 4.1.1
+lockfileVersion: '6.0'
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@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': 6.1.1
- '@material-ui/core': 4.12.4_b8fdba992ce7d797017dc07106486496
- fs: 0.0.1-security
- 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: 8.0.3_a0c521d4794c7ad97f5f4c1c4a7d5818
- styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
+ '@emotion/react':
+ specifier: 11.9.0
+ version: 11.9.0(@types/react@17.0.39)(react@18.2.0)
+ '@emotion/styled':
+ specifier: 11.8.1
+ version: 11.8.1(@emotion/react@11.9.0)(@types/react@17.0.39)(react@18.2.0)
+ '@fortawesome/fontawesome-svg-core':
+ specifier: 6.1.1
+ version: 6.1.1
+ '@mdx-js/loader':
+ specifier: ^2.3.0
+ version: 2.3.0(webpack@4.46.0)
+ '@mdx-js/react':
+ specifier: ^2.3.0
+ version: 2.3.0(react@18.2.0)
+ '@mui/material':
+ specifier: 5.8.3
+ version: 5.8.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@17.0.39)(react-dom@18.2.0)(react@18.2.0)
+ '@mui/styles':
+ specifier: ^5.12.3
+ version: 5.12.3(@types/react@17.0.39)(react@18.2.0)
+ '@next/mdx':
+ specifier: ^13.4.1
+ version: 13.4.1(@mdx-js/loader@2.3.0)(@mdx-js/react@2.3.0)
+ fs:
+ specifier: 0.0.1-security
+ version: 0.0.1-security
+ gray-matter:
+ specifier: ^4.0.3
+ version: 4.0.3
+ i18next:
+ specifier: 21.8.9
+ version: 21.8.9
+ i18next-browser-languagedetector:
+ specifier: 6.1.4
+ version: 6.1.4
+ imagemin-mozjpeg:
+ specifier: 9.0.0
+ version: 9.0.0
+ imagemin-optipng:
+ specifier: ^8.0.0
+ version: 8.0.0
+ next:
+ specifier: 13.4.1
+ version: 13.4.1(react-dom@18.2.0)(react@18.2.0)
+ next-compose-plugins:
+ specifier: ^2.2.1
+ version: 2.2.1
+ next-images:
+ specifier: ^1.8.5
+ version: 1.8.5(webpack@4.46.0)
+ next-optimized-images:
+ specifier: 2.6.2
+ version: 2.6.2(webpack@4.46.0)
+ next-themes:
+ specifier: ^0.2.1
+ version: 0.2.1(next@13.4.1)(react-dom@18.2.0)(react@18.2.0)
+ path:
+ specifier: 0.12.7
+ version: 0.12.7
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-markdown:
+ specifier: 8.0.3
+ version: 8.0.3(@types/react@17.0.39)(react@18.2.0)
+ styled-components:
+ specifier: 5.3.5
+ version: 5.3.5(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
+ wasedatime-ui:
+ specifier: '*'
+ version: link:../../packages/ui
devDependencies:
- '@types/node': 17.0.41
- '@types/react': 17.0.39
- '@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.14
- raw-loader: 4.0.2
- tailwindcss: 3.0.24
- typescript: 4.7.3
- url-loader: 4.1.1
+ '@types/node':
+ specifier: 17.0.41
+ version: 17.0.41
+ '@types/react':
+ specifier: 17.0.39
+ version: 17.0.39
+ '@types/react-dom':
+ specifier: 17.0.13
+ version: 17.0.13
+ autoprefixer:
+ specifier: 10.4.7
+ version: 10.4.7(postcss@8.4.23)
+ cssnano:
+ specifier: 5.1.11
+ version: 5.1.11(postcss@8.4.23)
+ eslint:
+ specifier: 8.17.0
+ version: 8.17.0
+ eslint-config-custom:
+ specifier: workspace:*
+ version: link:../../packages/eslint-config-custom
+ img-loader:
+ specifier: 4.0.0
+ version: 4.0.0(imagemin@8.0.1)
+ postcss:
+ specifier: 8.4.23
+ version: 8.4.23
+ prettier:
+ specifier: ^2.8.8
+ version: 2.8.8
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.8
+ version: 0.2.8(prettier@2.8.8)
+ raw-loader:
+ specifier: 4.0.2
+ version: 4.0.2(webpack@4.46.0)
+ tailwindcss:
+ specifier: 3.3.2
+ version: 3.3.2
+ typescript:
+ specifier: 4.7.3
+ version: 4.7.3
+ url-loader:
+ specifier: 4.1.1
+ version: 4.1.1(file-loader@6.2.0)(webpack@4.46.0)
packages:
- /@babel/code-frame/7.21.4:
+ /@alloc/quick-lru@5.2.0:
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
dev: false
- /@babel/generator/7.21.5:
+ /@babel/generator@7.21.5:
resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -91,19 +148,19 @@ packages:
jsesc: 2.5.2
dev: false
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: false
- /@babel/helper-environment-visitor/7.21.5:
+ /@babel/helper-environment-visitor@7.21.5:
resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -111,38 +168,38 @@ packages:
'@babel/types': 7.21.5
dev: false
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: false
- /@babel/helper-module-imports/7.21.4:
+ /@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
dev: false
- /@babel/helper-split-export-declaration/7.18.6:
+ /@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.21.5
dev: false
- /@babel/helper-string-parser/7.21.5:
+ /@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -151,19 +208,22 @@ packages:
js-tokens: 4.0.0
dev: false
- /@babel/parser/7.21.8:
+ /@babel/parser@7.21.8:
resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.21.5
dev: false
- /@babel/runtime/7.21.5:
+ /@babel/runtime@7.21.5:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
+ dev: false
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -172,7 +232,7 @@ packages:
'@babel/types': 7.21.5
dev: false
- /@babel/traverse/7.21.5_supports-color@5.5.0:
+ /@babel/traverse@7.21.5(supports-color@5.5.0):
resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -184,13 +244,13 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- debug: 4.3.4_supports-color@5.5.0
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types/7.21.5:
+ /@babel/types@7.21.5:
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -199,129 +259,136 @@ packages:
to-fast-properties: 2.0.0
dev: false
- /@bit/wasedatime.core.assets.img.logo-jp/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-ErN8Hkn1p/2XmutGVZXg1WZoJiE=, tarball: wasedatime.core.assets.img.logo-jp/-/wasedatime.core.assets.img.logo-jp-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/babel-plugin@11.10.8:
+ resolution: {integrity: sha512-gxNky50AJL3AlkbjvTARiwAqei6/tNUxDZPSKd+3jqWVM3AmdVTTdpjHorR/an/M0VJqdsuq5oGcFH+rjtyujQ==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/runtime': 7.21.5
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/serialize': 1.1.1
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.1.4
dev: false
- /@bit/wasedatime.core.assets.img.logo/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-e0w8cLOvM8t9pildIQVoGODf1pA=, tarball: wasedatime.core.assets.img.logo/-/wasedatime.core.assets.img.logo-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/cache@11.10.8:
+ resolution: {integrity: sha512-5fyqGHi51LU95o7qQ/vD1jyvC4uCY5GcBT+UgP4LHdpO9jPDlXqhrRr9/wCKmfoAvh5G/F7aOh4MwQa+8uEqhA==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@emotion/memoize': 0.8.0
+ '@emotion/sheet': 1.2.1
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.3.0
+ stylis: 4.1.4
+ dev: false
+
+ /@emotion/hash@0.9.0:
+ resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
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}
+ /@emotion/is-prop-valid@1.2.0:
+ resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
+ dependencies:
+ '@emotion/memoize': 0.8.0
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}
+ /@emotion/memoize@0.8.0:
+ resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
dev: false
- /@bit/wasedatime.core.ts.styles.overlay/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-eXYMnbkdhymg3EBNS9RBSuz1Wbk=, tarball: wasedatime.core.ts.styles.overlay/-/wasedatime.core.ts.styles.overlay-0.0.1.tgz}
+ /@emotion/react@11.9.0(@types/react@17.0.39)(react@18.2.0):
+ resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==}
peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ '@babel/core': ^7.0.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
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
+ '@babel/runtime': 7.21.5
+ '@emotion/babel-plugin': 11.10.8
+ '@emotion/cache': 11.10.8
+ '@emotion/serialize': 1.1.1
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.2.5
+ '@types/react': 17.0.39
+ hoist-non-react-statics: 3.3.2
+ react: 18.2.0
dev: false
- /@bit/wasedatime.core.ts.styles.wrapper/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-cszBxS3eDqwoxe9Tl162+7hc9Og=, tarball: wasedatime.core.ts.styles.wrapper/-/wasedatime.core.ts.styles.wrapper-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/serialize@1.1.1:
+ resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==}
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
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/unitless': 0.8.0
+ '@emotion/utils': 1.2.0
+ csstype: 3.1.2
dev: false
- /@bit/wasedatime.core.ts.ui.loading-spinner/0.1.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-WqxofSQAwEMlFy7NVlh0RXm+0N0=, tarball: wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.2.tgz}
- 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': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.styles.wrapper': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.logo': 0.0.9_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
+ /@emotion/sheet@1.2.1:
+ resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
dev: false
- /@bit/wasedatime.core.ts.ui.logo/0.0.9_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-3KGefQPP8se1Blx051dpau3Cmp0=, tarball: wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.0.9.tgz}
+ /@emotion/styled@11.8.1(@emotion/react@11.9.0)(@types/react@17.0.39)(react@18.2.0):
+ resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ '@babel/core': ^7.0.0
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
dependencies:
- '@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': 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
+ '@babel/runtime': 7.21.5
+ '@emotion/babel-plugin': 11.10.8
+ '@emotion/is-prop-valid': 1.2.0
+ '@emotion/react': 11.9.0(@types/react@17.0.39)(react@18.2.0)
+ '@emotion/serialize': 1.1.1
+ '@emotion/utils': 1.2.0
+ '@types/react': 17.0.39
+ react: 18.2.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.5_react-dom@17.0.2+react@17.0.2
- transitivePeerDependencies:
- - react-is
+ /@emotion/stylis@0.8.5:
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
dev: false
- /@emotion/hash/0.8.0:
- resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ /@emotion/unitless@0.7.5:
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
dev: false
- /@emotion/is-prop-valid/1.2.0:
- resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
- dependencies:
- '@emotion/memoize': 0.8.0
+ /@emotion/unitless@0.8.0:
+ resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
dev: false
- /@emotion/memoize/0.8.0:
- resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
+ /@emotion/utils@1.2.0:
+ resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
dev: false
- /@emotion/stylis/0.8.5:
- resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
+ /@emotion/weak-memoize@0.2.5:
+ resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
dev: false
- /@emotion/unitless/0.7.5:
- resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ /@emotion/weak-memoize@0.3.0:
+ resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
dev: false
- /@eslint/eslintrc/1.4.1:
+ /@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
espree: 9.5.1
globals: 13.20.0
ignore: 5.2.4
@@ -333,13 +400,13 @@ packages:
- supports-color
dev: true
- /@fortawesome/fontawesome-common-types/6.1.1:
+ /@fortawesome/fontawesome-common-types@6.1.1:
resolution: {integrity: sha512-wVn5WJPirFTnzN6tR95abCx+ocH+3IFLXAgyavnf9hUmN0CfWoDjPT/BAWsUVwSlYYVBeCLJxaqi7ZGe4uSjBA==}
engines: {node: '>=6'}
requiresBuild: true
dev: false
- /@fortawesome/fontawesome-svg-core/6.1.1:
+ /@fortawesome/fontawesome-svg-core@6.1.1:
resolution: {integrity: sha512-NCg0w2YIp81f4V6cMGD9iomfsIj7GWrqmsa0ZsPh59G7PKiGN1KymZNxmF00ssuAlo/VZmpK6xazsGOwzKYUMg==}
engines: {node: '>=6'}
requiresBuild: true
@@ -347,103 +414,220 @@ packages:
'@fortawesome/fontawesome-common-types': 6.1.1
dev: false
- /@humanwhocodes/config-array/0.9.5:
+ /@humanwhocodes/config-array@0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: true
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@jridgewell/gen-mapping/0.3.3:
+ /@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.18
- dev: false
- /@jridgewell/resolve-uri/3.1.0:
+ /@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:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- dev: false
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- dev: false
- /@jridgewell/sourcemap-codec/1.4.15:
+ /@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- dev: false
- /@jridgewell/trace-mapping/0.3.18:
+ /@jridgewell/trace-mapping@0.3.18:
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+
+ /@mdx-js/loader@2.3.0(webpack@4.46.0):
+ resolution: {integrity: sha512-IqsscXh7Q3Rzb+f5DXYk0HU71PK+WuFsEhf+mSV3fOhpLcEpgsHvTQ2h0T6TlZ5gHOaBeFjkXwB52by7ypMyNg==}
+ peerDependencies:
+ webpack: '>=4'
+ dependencies:
+ '@mdx-js/mdx': 2.3.0
+ source-map: 0.7.4
+ webpack: 4.46.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@material-ui/core/4.12.4_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
+ /@mdx-js/mdx@2.3.0:
+ resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ '@types/mdx': 2.0.5
+ estree-util-build-jsx: 2.2.2
+ estree-util-is-identifier-name: 2.1.0
+ estree-util-to-js: 1.2.0
+ estree-walker: 3.0.3
+ hast-util-to-estree: 2.3.2
+ markdown-extensions: 1.1.1
+ periscopic: 3.1.0
+ remark-mdx: 2.3.0
+ remark-parse: 10.0.1
+ remark-rehype: 10.1.0
+ unified: 10.1.2
+ unist-util-position-from-estree: 1.1.2
+ unist-util-stringify-position: 3.0.3
+ unist-util-visit: 4.1.2
+ vfile: 5.3.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@mdx-js/react@2.3.0(react@18.2.0):
+ resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
+ peerDependencies:
+ react: '>=16'
+ dependencies:
+ '@types/mdx': 2.0.5
+ '@types/react': 17.0.39
+ react: 18.2.0
+ dev: false
+
+ /@mrmlnc/readdir-enhanced@2.2.1:
+ resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
+ engines: {node: '>=4'}
+ dependencies:
+ call-me-maybe: 1.0.2
+ glob-to-regexp: 0.3.0
+ dev: false
+
+ /@mui/base@5.0.0-alpha.84(@types/react@17.0.39)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-uDx+wGVytS+ZHiWHyzUyijY83GSIXJpzSJ0PGc/8/s+8nBzeHvaPKrAyJz15ASLr52hYRA6PQGqn0eRAsB7syQ==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.21.5
+ '@emotion/is-prop-valid': 1.2.0
+ '@mui/types': 7.2.4(@types/react@17.0.39)
+ '@mui/utils': 5.12.3(react@18.2.0)
+ '@popperjs/core': 2.11.7
+ '@types/react': 17.0.39
+ clsx: 1.2.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-is: 17.0.2
+ dev: false
+
+ /@mui/material@5.8.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@17.0.39)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-8UecY/W9SMtEZm5PMCUcMbujajVP6fobu0BgBPiIWwwWRblZVEzqprY6v1P2me7qCyrve4L4V/rqAKPKhVHOSg==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.21.5
- '@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.3_react-dom@17.0.2+react@17.0.2
+ '@emotion/react': 11.9.0(@types/react@17.0.39)(react@18.2.0)
+ '@emotion/styled': 11.8.1(@emotion/react@11.9.0)(@types/react@17.0.39)(react@18.2.0)
+ '@mui/base': 5.0.0-alpha.84(@types/react@17.0.39)(react-dom@18.2.0)(react@18.2.0)
+ '@mui/system': 5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@17.0.39)(react@18.2.0)
+ '@mui/types': 7.2.4(@types/react@17.0.39)
+ '@mui/utils': 5.12.3(react@18.2.0)
'@types/react': 17.0.39
'@types/react-transition-group': 4.4.6
clsx: 1.2.1
+ csstype: 3.1.2
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: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-is: 17.0.2
- react-transition-group: 4.4.5_react-dom@17.0.2+react@17.0.2
+ react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
dev: false
- /@material-ui/styles/4.11.5_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
+ /@mui/private-theming@5.12.3(@types/react@17.0.39)(react@18.2.0):
+ resolution: {integrity: sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.21.5
+ '@mui/utils': 5.12.3(react@18.2.0)
+ '@types/react': 17.0.39
+ prop-types: 15.8.1
+ react: 18.2.0
+ dev: false
+
+ /@mui/styled-engine@5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-AhZtiRyT8Bjr7fufxE/mLS+QJ3LxwX1kghIcM2B2dvJzSSg9rnIuXDXM959QfUVIM3C8U4x3mgVoPFMQJvc4/g==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.4.1
+ '@emotion/styled': ^11.3.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.21.5
+ '@emotion/cache': 11.10.8
+ '@emotion/react': 11.9.0(@types/react@17.0.39)(react@18.2.0)
+ '@emotion/styled': 11.8.1(@emotion/react@11.9.0)(@types/react@17.0.39)(react@18.2.0)
+ csstype: 3.1.2
+ prop-types: 15.8.1
+ react: 18.2.0
+ dev: false
+
+ /@mui/styles@5.12.3(@types/react@17.0.39)(react@18.2.0):
+ resolution: {integrity: sha512-y0GN1kTYO2FF/0LH8a0PpVxwLotlcunFqdJpCL5gza0w5Fqz9wxlwauPZW0bDt0+sF79CrohzdzWkh+fxB+oww==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
+ '@types/react': ^17.0.0
+ react: ^17.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.21.5
- '@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0_@types+react@17.0.39
- '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
+ '@emotion/hash': 0.9.0
+ '@mui/private-theming': 5.12.3(@types/react@17.0.39)(react@18.2.0)
+ '@mui/types': 7.2.4(@types/react@17.0.39)
+ '@mui/utils': 5.12.3(react@18.2.0)
'@types/react': 17.0.39
clsx: 1.2.1
- csstype: 2.6.21
+ csstype: 3.1.2
hoist-non-react-statics: 3.3.2
jss: 10.10.0
jss-plugin-camel-case: 10.10.0
@@ -454,32 +638,41 @@ packages:
jss-plugin-rule-value-function: 10.10.0
jss-plugin-vendor-prefixer: 10.10.0
prop-types: 15.8.1
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react: 18.2.0
dev: false
- /@material-ui/system/4.12.2_b8fdba992ce7d797017dc07106486496:
- resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
- engines: {node: '>=8.0.0'}
+ /@mui/system@5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@17.0.39)(react@18.2.0):
+ resolution: {integrity: sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.21.5
- '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
+ '@emotion/react': 11.9.0(@types/react@17.0.39)(react@18.2.0)
+ '@emotion/styled': 11.8.1(@emotion/react@11.9.0)(@types/react@17.0.39)(react@18.2.0)
+ '@mui/private-theming': 5.12.3(@types/react@17.0.39)(react@18.2.0)
+ '@mui/styled-engine': 5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(react@18.2.0)
+ '@mui/types': 7.2.4(@types/react@17.0.39)
+ '@mui/utils': 5.12.3(react@18.2.0)
'@types/react': 17.0.39
- csstype: 2.6.21
+ clsx: 1.2.1
+ csstype: 3.1.2
prop-types: 15.8.1
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react: 18.2.0
dev: false
- /@material-ui/types/5.1.0_@types+react@17.0.39:
- resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==}
+ /@mui/types@7.2.4(@types/react@17.0.39):
+ resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==}
peerDependencies:
'@types/react': '*'
peerDependenciesMeta:
@@ -489,58 +682,42 @@ packages:
'@types/react': 17.0.39
dev: false
- /@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'}
+ /@mui/utils@5.12.3(react@18.2.0):
+ resolution: {integrity: sha512-D/Z4Ub3MRl7HiUccid7sQYclTr24TqUAQFFlxHQF8FR177BrCTQ0JJZom7EqYjZCdXhwnSkOj2ph685MSKNtIA==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
+ react: ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': 7.21.5
+ '@types/prop-types': 15.7.5
+ '@types/react-is': 17.0.4
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
-
- /@mrmlnc/readdir-enhanced/2.2.1:
- resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
- engines: {node: '>=4'}
- dependencies:
- call-me-maybe: 1.0.2
- glob-to-regexp: 0.3.0
+ react: 18.2.0
+ react-is: 18.2.0
dev: false
- /@next/env/12.1.6:
- resolution: {integrity: sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA==}
+ /@next/env@13.4.1:
+ resolution: {integrity: sha512-eD6WCBMFjLFooLM19SIhSkWBHtaFrZFfg2Cxnyl3vS3DAdFRfnx5TY2RxlkuKXdIRCC0ySbtK9JXXt8qLCqzZg==}
dev: false
- /@next/eslint-plugin-next/12.1.6:
- resolution: {integrity: sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw==}
+ /@next/mdx@13.4.1(@mdx-js/loader@2.3.0)(@mdx-js/react@2.3.0):
+ resolution: {integrity: sha512-jYhj/23/zamwgaZhYHnLc6B6lM/YnTkW5g/L6AClkZ3/o/Kups0Jq5TdYRXQ85vpaGYCNTnLr4kxdtCNWxuYzA==}
+ peerDependencies:
+ '@mdx-js/loader': '>=0.15.0'
+ '@mdx-js/react': '>=0.15.0'
+ peerDependenciesMeta:
+ '@mdx-js/loader':
+ optional: true
+ '@mdx-js/react':
+ optional: true
dependencies:
- glob: 7.1.7
- dev: true
-
- /@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]
- requiresBuild: true
+ '@mdx-js/loader': 2.3.0(webpack@4.46.0)
+ '@mdx-js/react': 2.3.0(react@18.2.0)
+ source-map: 0.7.4
dev: false
- optional: true
- /@next/swc-darwin-arm64/12.1.6:
- resolution: {integrity: sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw==}
+ /@next/swc-darwin-arm64@13.4.1:
+ resolution: {integrity: sha512-eF8ARHtYfnoYtDa6xFHriUKA/Mfj/cCbmKb3NofeKhMccs65G6/loZ15a6wYCCx4rPAd6x4t1WmVYtri7EdeBg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -548,8 +725,8 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64/12.1.6:
- resolution: {integrity: sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg==}
+ /@next/swc-darwin-x64@13.4.1:
+ resolution: {integrity: sha512-7cmDgF9tGWTgn5Gw+vP17miJbH4wcraMHDCOHTYWkO/VeKT73dUWG23TNRLfgtCNSPgH4V5B4uLHoZTanx9bAw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -557,17 +734,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/12.1.6:
- resolution: {integrity: sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw==}
- engines: {node: '>= 10'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-arm64-gnu/12.1.6:
- resolution: {integrity: sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ==}
+ /@next/swc-linux-arm64-gnu@13.4.1:
+ resolution: {integrity: sha512-qwJqmCri2ie8aTtE5gjTSr8S6O8B67KCYgVZhv9gKH44yvc/zXbAY8u23QGULsYOyh1islWE5sWfQNLOj9iryg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -575,8 +743,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl/12.1.6:
- resolution: {integrity: sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ==}
+ /@next/swc-linux-arm64-musl@13.4.1:
+ resolution: {integrity: sha512-qcC54tWNGDv/VVIFkazxhqH1Bnagjfs4enzELVRlUOoJPD2BGJTPI7z08pQPbbgxLtRiu8gl2mXvpB8WlOkMeA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -584,8 +752,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu/12.1.6:
- resolution: {integrity: sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ==}
+ /@next/swc-linux-x64-gnu@13.4.1:
+ resolution: {integrity: sha512-9TeWFlpLsBosZ+tsm/rWBaMwt5It9tPH8m3nawZqFUUrZyGRfGcI67js774vtx0k3rL9qbyY6+3pw9BCVpaYUA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -593,8 +761,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl/12.1.6:
- resolution: {integrity: sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag==}
+ /@next/swc-linux-x64-musl@13.4.1:
+ resolution: {integrity: sha512-sNDGaWmSqTS4QRUzw61wl4mVPeSqNIr1OOjLlQTRuyInxMxtqImRqdvzDvFTlDfdeUMU/DZhWGYoHrXLlZXe6A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -602,8 +770,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc/12.1.6:
- resolution: {integrity: sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g==}
+ /@next/swc-win32-arm64-msvc@13.4.1:
+ resolution: {integrity: sha512-+CXZC7u1iXdLRudecoUYbhbsXpglYv8KFYsFxKBPn7kg+bk7eJo738wAA4jXIl8grTF2mPdmO93JOQym+BlYGA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -611,8 +779,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc/12.1.6:
- resolution: {integrity: sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA==}
+ /@next/swc-win32-ia32-msvc@13.4.1:
+ resolution: {integrity: sha512-vIoXVVc7UYO68VwVMDKwJC2+HqAZQtCYiVlApyKEeIPIQpz2gpufzGxk1z3/gwrJt/kJ5CDZjlhYDCzd3hdz+g==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -620,8 +788,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc/12.1.6:
- resolution: {integrity: sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA==}
+ /@next/swc-win32-x64-msvc@13.4.1:
+ resolution: {integrity: sha512-n8V5ImLQZibKTu10UUdI3nIeTLkliEXe628qxqW9v8My3BAH2a7H0SaCqkV2OgqFnn8sG1wxKYw9/SNJ632kSA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -629,7 +797,7 @@ packages:
dev: false
optional: true
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
@@ -637,17 +805,17 @@ packages:
run-parallel: 1.2.0
dev: true
- /@nodelib/fs.stat/1.1.3:
+ /@nodelib/fs.stat@1.1.3:
resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==}
engines: {node: '>= 6'}
dev: false
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
dev: true
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
@@ -655,189 +823,276 @@ packages:
fastq: 1.15.0
dev: true
- /@rushstack/eslint-patch/1.2.0:
- resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
+ /@popperjs/core@2.11.7:
+ resolution: {integrity: sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==}
+ dev: false
+
+ /@sindresorhus/is@0.7.0:
+ resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /@swc/helpers@0.5.1:
+ resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
+ dependencies:
+ tslib: 2.5.0
+ dev: false
+
+ /@tokenizer/token@0.3.0:
+ resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
dev: true
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: true
- /@types/debug/4.1.7:
+ /@types/acorn@4.0.6:
+ resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
+ dependencies:
+ '@types/estree': 1.0.1
+ dev: false
+
+ /@types/debug@4.1.7:
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
dependencies:
'@types/ms': 0.7.31
dev: false
- /@types/hast/2.3.4:
+ /@types/estree-jsx@1.0.0:
+ resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
+ dependencies:
+ '@types/estree': 1.0.1
+ dev: false
+
+ /@types/estree@1.0.1:
+ resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
+ dev: false
+
+ /@types/hast@2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
- dev: true
- /@types/json5/0.0.29:
- resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
+ /@types/keyv@3.1.4:
+ resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
+ dependencies:
+ '@types/node': 17.0.41
+ dev: false
- /@types/mdast/3.0.11:
+ /@types/mdast@3.0.11:
resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /@types/ms/0.7.31:
+ /@types/mdx@2.0.5:
+ resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==}
+ dev: false
+
+ /@types/ms@0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: false
- /@types/node/17.0.41:
+ /@types/node@17.0.41:
resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==}
- dev: true
- /@types/prop-types/15.7.5:
+ /@types/parse-json@4.0.0:
+ resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ dev: false
+
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/react-dom/17.0.13:
+ /@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.6:
+ /@types/react-is@17.0.4:
+ resolution: {integrity: sha512-FLzd0K9pnaEvKz4D1vYxK9JmgQPiGk1lu23o1kqGsLeT0iPbRSF7b76+S5T9fD8aRa0B8bY7I/3DebEj+1ysBA==}
+ dependencies:
+ '@types/react': 17.0.39
+ dev: false
+
+ /@types/react-transition-group@4.4.6:
resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==}
dependencies:
'@types/react': 17.0.39
dev: false
- /@types/react/17.0.39:
+ /@types/react@17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
csstype: 3.1.2
- /@types/scheduler/0.16.3:
+ /@types/responselike@1.0.0:
+ resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
+ dependencies:
+ '@types/node': 17.0.41
+ dev: false
+
+ /@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- /@types/unist/2.0.6:
+ /@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: false
- /@typescript-eslint/parser/5.59.2_eslint@8.17.0+typescript@4.7.3:
- resolution: {integrity: sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@webassemblyjs/ast@1.9.0:
+ resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==}
dependencies:
- '@typescript-eslint/scope-manager': 5.59.2
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/typescript-estree': 5.59.2_typescript@4.7.3
- debug: 4.3.4
- eslint: 8.17.0
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
- /@typescript-eslint/scope-manager/5.59.2:
- resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@webassemblyjs/floating-point-hex-parser@1.9.0:
+ resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==}
+
+ /@webassemblyjs/helper-api-error@1.9.0:
+ resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==}
+
+ /@webassemblyjs/helper-buffer@1.9.0:
+ resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==}
+
+ /@webassemblyjs/helper-code-frame@1.9.0:
+ resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==}
dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- dev: true
+ '@webassemblyjs/wast-printer': 1.9.0
- /@typescript-eslint/types/5.59.2:
- resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
+ /@webassemblyjs/helper-fsm@1.9.0:
+ resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==}
- /@typescript-eslint/typescript-estree/5.59.2_typescript@4.7.3:
- resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@webassemblyjs/helper-module-context@1.9.0:
+ resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==}
dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.7.3
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@webassemblyjs/ast': 1.9.0
- /@typescript-eslint/visitor-keys/5.59.2:
- resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@webassemblyjs/helper-wasm-bytecode@1.9.0:
+ resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==}
+
+ /@webassemblyjs/helper-wasm-section@1.9.0:
+ resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==}
dependencies:
- '@typescript-eslint/types': 5.59.2
- eslint-visitor-keys: 3.4.0
- dev: true
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+
+ /@webassemblyjs/ieee754@1.9.0:
+ resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+
+ /@webassemblyjs/leb128@1.9.0:
+ resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==}
+ dependencies:
+ '@xtuc/long': 4.2.2
+
+ /@webassemblyjs/utf8@1.9.0:
+ resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==}
+
+ /@webassemblyjs/wasm-edit@1.9.0:
+ resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/helper-wasm-section': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-opt': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ '@webassemblyjs/wast-printer': 1.9.0
+
+ /@webassemblyjs/wasm-gen@1.9.0:
+ resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+
+ /@webassemblyjs/wasm-opt@1.9.0:
+ resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+
+ /@webassemblyjs/wasm-parser@1.9.0:
+ resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+
+ /@webassemblyjs/wast-parser@1.9.0:
+ resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/floating-point-hex-parser': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-code-frame': 1.9.0
+ '@webassemblyjs/helper-fsm': 1.9.0
+ '@xtuc/long': 4.2.2
- /acorn-jsx/5.3.2_acorn@8.8.2:
+ /@webassemblyjs/wast-printer@1.9.0:
+ resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
+ '@xtuc/long': 4.2.2
+
+ /@xtuc/ieee754@1.2.0:
+ resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
+
+ /@xtuc/long@4.2.2:
+ resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.2
- 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/7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ /acorn@6.4.2:
+ resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /ajv-errors/1.0.1_ajv@6.12.6:
+ /ajv-errors@1.0.1(ajv@6.12.6):
resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==}
peerDependencies:
ajv: '>=5.0.0'
dependencies:
ajv: 6.12.6
- dev: false
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /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
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -845,153 +1100,144 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
dev: false
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
dev: true
- /anymatch/3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ /any-promise@1.3.0:
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ dev: true
+
+ /anymatch@2.0.0:
+ resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- dev: true
- /arg/5.0.2:
- resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- dev: true
+ /aproba@1.2.0:
+ resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
- /argparse/2.0.1:
- resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ /arch@2.2.0:
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
+ dev: false
+
+ /archive-type@4.0.0:
+ resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
+ engines: {node: '>=4'}
+ dependencies:
+ file-type: 4.4.0
+ dev: false
+
+ /arg@5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: true
- /aria-query/5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ /argparse@1.0.10:
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
- deep-equal: 2.2.1
+ sprintf-js: 1.0.3
+ dev: false
+
+ /argparse@2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /arr-diff/4.0.0:
+ /arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
- dev: false
- /arr-flatten/1.1.0:
+ /arr-flatten@1.1.0:
resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
engines: {node: '>=0.10.0'}
- dev: false
- /arr-union/3.1.0:
+ /arr-union@3.1.0:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
- dev: false
-
- /array-buffer-byte-length/1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
- dependencies:
- call-bind: 1.0.2
- is-array-buffer: 3.0.2
- dev: true
-
- /array-includes/3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- is-string: 1.0.7
- dev: true
- /array-union/1.0.2:
+ /array-union@1.0.2:
resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
engines: {node: '>=0.10.0'}
dependencies:
array-uniq: 1.0.3
dev: false
- /array-union/2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
+ /array-union@3.0.1:
+ resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
+ engines: {node: '>=12'}
dev: true
- /array-uniq/1.0.3:
+ /array-uniq@1.0.3:
resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
engines: {node: '>=0.10.0'}
dev: false
- /array-unique/0.3.2:
+ /array-unique@0.3.2:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /array.prototype.flat/1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
+ /arrify@1.0.1:
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- /array.prototype.flatmap/1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
- engines: {node: '>= 0.4'}
+ /asn1.js@5.4.1:
+ resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
+ bn.js: 4.12.0
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ safer-buffer: 2.1.2
- /array.prototype.tosorted/1.1.1:
- resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
+ /assert@1.5.0:
+ resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.0
- dev: true
-
- /arrify/1.0.1:
- resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ object-assign: 4.1.1
+ util: 0.10.3
- /assign-symbols/1.0.0:
+ /assign-symbols@1.0.0:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
engines: {node: '>=0.10.0'}
+
+ /astring@1.8.4:
+ resolution: {integrity: sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==}
+ hasBin: true
dev: false
- /ast-types-flow/0.0.7:
- resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
- dev: true
+ /async-each@1.0.6:
+ resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
+ optional: true
- /atob/2.1.2:
+ /atob@2.1.2:
resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
engines: {node: '>= 4.5.0'}
hasBin: true
- dev: false
- /autoprefixer/10.4.7_postcss@8.4.14:
+ /autoprefixer@10.4.7(postcss@8.4.23):
resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -1003,27 +1249,20 @@ packages:
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /available-typed-arrays/1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /axe-core/4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
- engines: {node: '>=4'}
- dev: true
-
- /axobject-query/3.1.1:
- resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
+ /babel-plugin-macros@3.1.0:
+ resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
+ engines: {node: '>=10', npm: '>=6'}
dependencies:
- deep-equal: 2.2.1
- dev: true
+ '@babel/runtime': 7.21.5
+ cosmiconfig: 7.1.0
+ resolve: 1.22.2
+ dev: false
- /babel-plugin-styled-components/2.1.1_styled-components@5.3.5:
+ /babel-plugin-styled-components@2.1.1(styled-components@5.3.5):
resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==}
peerDependencies:
styled-components: '>= 2'
@@ -1033,21 +1272,24 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.5_react-dom@17.0.2+react@17.0.2
+ styled-components: 5.3.5(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
dev: false
- /babel-plugin-syntax-jsx/6.18.0:
+ /babel-plugin-syntax-jsx@6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
dev: false
- /bail/2.0.2:
+ /bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
dev: false
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /base/0.11.2:
+ /base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ /base@0.11.2:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -1058,27 +1300,101 @@ packages:
isobject: 3.0.1
mixin-deep: 1.3.2
pascalcase: 0.1.1
- dev: false
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /binary-extensions/2.2.0:
+ /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@1.13.1:
+ resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
+ engines: {node: '>=0.10.0'}
+ optional: true
+
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- dev: true
- /boolbase/1.0.0:
+ /bindings@1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ requiresBuild: true
+ dependencies:
+ file-uri-to-path: 1.0.0
+ optional: true
+
+ /bl@1.2.3:
+ resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
+ dependencies:
+ readable-stream: 2.3.8
+ safe-buffer: 5.2.1
+ dev: false
+
+ /bluebird@3.7.2:
+ resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
+
+ /bn.js@4.12.0:
+ resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
+
+ /bn.js@5.2.1:
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /braces/2.3.2:
+ /braces@2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -1092,16 +1408,68 @@ packages:
snapdragon-node: 2.1.1
split-string: 3.1.0
to-regex: 3.0.2
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- dev: true
- /browserslist/4.21.5:
+ /brorand@1.1.0:
+ resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
+
+ /browserify-aes@1.2.0:
+ resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ /browserify-cipher@1.0.1:
+ resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+
+ /browserify-des@1.0.2:
+ resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.0.1
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ /browserify-rsa@4.1.0:
+ resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
+ dependencies:
+ bn.js: 5.2.1
+ randombytes: 2.1.0
+
+ /browserify-sign@4.2.1:
+ resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==}
+ dependencies:
+ bn.js: 5.2.1
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.4
+ inherits: 2.0.4
+ parse-asn1: 5.1.6
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+
+ /browserify-zlib@0.2.0:
+ resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
+ dependencies:
+ pako: 1.0.11
+
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -1109,10 +1477,78 @@ packages:
caniuse-lite: 1.0.30001482
electron-to-chromium: 1.4.384
node-releases: 2.0.10
- update-browserslist-db: 1.0.11_browserslist@4.21.5
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
dev: true
- /cache-base/1.0.1:
+ /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: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ dev: false
+
+ /buffer-fill@1.0.0:
+ resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
+ dev: false
+
+ /buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+ /buffer-xor@1.0.3:
+ resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
+
+ /buffer@4.9.2:
+ resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ isarray: 1.0.0
+
+ /buffer@5.7.1:
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ dev: false
+
+ /builtin-status-codes@3.0.0:
+ resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
+
+ /busboy@1.6.0:
+ resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
+ engines: {node: '>=10.16.0'}
+ dependencies:
+ streamsearch: 1.1.0
+ dev: false
+
+ /cacache@12.0.4:
+ resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1(bluebird@3.7.2)
+ rimraf: 2.7.1
+ ssri: 6.0.2
+ unique-filename: 1.1.1
+ y18n: 4.0.3
+
+ /cache-base@1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -1125,34 +1561,37 @@ packages:
to-object-path: 0.3.0
union-value: 1.0.1
unset-value: 1.0.0
- dev: false
- /call-bind/1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ /cacheable-request@2.1.4:
+ resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==}
dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.0
- dev: true
+ 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-me-maybe/1.0.2:
+ /call-me-maybe@1.0.2:
resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
dev: false
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
dev: true
- /camelize/1.0.1:
+ /camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
dev: false
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -1161,10 +1600,24 @@ packages:
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001482:
+ /caniuse-lite@1.0.30001482:
resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==}
- /chalk/2.4.2:
+ /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
+
+ /ccount@2.0.1:
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+ dev: false
+
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -1173,7 +1626,7 @@ packages:
supports-color: 5.5.0
dev: false
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
@@ -1181,11 +1634,44 @@ packages:
supports-color: 7.2.0
dev: true
- /character-entities/2.0.2:
+ /character-entities-html4@2.1.0:
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
+ dev: false
+
+ /character-entities-legacy@3.0.0:
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
+ dev: false
+
+ /character-entities@2.0.2:
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
dev: false
- /chokidar/3.5.3:
+ /character-reference-invalid@2.0.1:
+ resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
+ dev: false
+
+ /chokidar@2.1.8:
+ resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
+ deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.6
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -1198,9 +1684,21 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.2
- dev: true
- /class-utils/0.3.6:
+ /chownr@1.1.4:
+ resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+
+ /chrome-trace-event@1.0.3:
+ resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ engines: {node: '>=6.0'}
+
+ /cipher-base@1.0.4:
+ resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ /class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -1208,91 +1706,223 @@ packages:
define-property: 0.2.5
isobject: 3.0.1
static-extend: 0.1.2
+
+ /client-only@0.0.1:
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
+ dev: false
+
+ /clone-response@1.0.2:
+ resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=}
+ dependencies:
+ mimic-response: 1.0.1
dev: false
- /clsx/1.2.1:
+ /clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /collection-visit/1.0.0:
+ /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: false
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
dev: false
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
dev: true
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
dev: false
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: true
- /comma-separated-tokens/2.0.3:
+ /comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
dev: false
- /commander/7.2.0:
+ /commander@2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+
+ /commander@4.1.1:
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
dev: true
- /component-emitter/1.3.0:
+ /commondir@1.0.1:
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+
+ /component-emitter@1.3.0:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
- dev: false
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /copy-descriptor/0.1.1:
+ /concat-stream@1.6.2:
+ resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
+ engines: {'0': node >= 0.8}
+ dependencies:
+ buffer-from: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ typedarray: 0.0.6
+
+ /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
+
+ /console-browserify@1.2.0:
+ resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
+
+ /constants-browserify@1.0.0:
+ resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
+
+ /content-disposition@0.5.4:
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ dev: false
+
+ /copy-concurrently@1.0.5:
+ resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+
+ /copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
+
+ /core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+
+ /cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ 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: false
+
+ /create-ecdh@4.0.4:
+ resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+ dependencies:
+ bn.js: 4.12.0
+ elliptic: 6.5.4
+
+ /create-hash@1.2.0:
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+
+ /create-hmac@1.1.7:
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+
+ /cross-spawn@5.1.0:
+ resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
+ 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:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
- /css-color-keywords/1.0.0:
+ /crypto-browserify@3.12.0:
+ resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.2.1
+ create-ecdh: 4.0.4
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.1.2
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+
+ /css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
dev: false
- /css-declaration-sorter/6.4.0_postcss@8.4.14:
+ /css-declaration-sorter@6.4.0(postcss@8.4.23):
resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -1302,7 +1932,7 @@ packages:
nth-check: 2.1.1
dev: true
- /css-to-react-native/3.2.0:
+ /css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
camelize: 1.0.1
@@ -1310,7 +1940,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -1318,125 +1948,107 @@ packages:
source-map: 0.6.1
dev: true
- /css-vendor/2.0.8:
+ /css-vendor@2.0.8:
resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
dependencies:
'@babel/runtime': 7.21.5
is-in-browser: 1.1.3
dev: false
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /cssnano-preset-default/5.2.14_postcss@8.4.14:
+ /cssnano-preset-default@5.2.14(postcss@8.4.23):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.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.1_postcss@8.4.14
- postcss-convert-values: 5.1.3_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.7_postcss@8.4.14
- postcss-merge-rules: 5.1.4_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.4_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.1_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.2_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:
+ css-declaration-sorter: 6.4.0(postcss@8.4.23)
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
+ postcss-calc: 8.2.4(postcss@8.4.23)
+ postcss-colormin: 5.3.1(postcss@8.4.23)
+ postcss-convert-values: 5.1.3(postcss@8.4.23)
+ postcss-discard-comments: 5.1.2(postcss@8.4.23)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.23)
+ postcss-discard-empty: 5.1.1(postcss@8.4.23)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.23)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.23)
+ postcss-merge-rules: 5.1.4(postcss@8.4.23)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.23)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.23)
+ postcss-minify-params: 5.1.4(postcss@8.4.23)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.23)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.23)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.23)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.23)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.23)
+ postcss-normalize-string: 5.1.0(postcss@8.4.23)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.23)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.23)
+ postcss-normalize-url: 5.1.0(postcss@8.4.23)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.23)
+ postcss-ordered-values: 5.1.3(postcss@8.4.23)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.23)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.23)
+ postcss-svgo: 5.1.0(postcss@8.4.23)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.23)
+ dev: true
+
+ /cssnano-utils@3.1.0(postcss@8.4.23):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /cssnano/5.1.11_postcss@8.4.14:
+ /cssnano@5.1.11(postcss@8.4.23):
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.14_postcss@8.4.14
+ cssnano-preset-default: 5.2.14(postcss@8.4.23)
lilconfig: 2.1.0
- postcss: 8.4.14
+ postcss: 8.4.23
yaml: 1.10.2
dev: true
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
dev: true
- /csstype/2.6.21:
- resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
- dev: false
-
- /csstype/3.1.2:
+ /csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- /damerau-levenshtein/1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
+ /cyclist@1.0.1:
+ resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==}
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
- dependencies:
- ms: 2.0.0
- dev: false
-
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- dependencies:
- ms: 2.1.3
- dev: true
-
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
- ms: 2.1.2
+ ms: 2.0.0
- /debug/4.3.4_supports-color@5.5.0:
+ /debug@4.3.4(supports-color@5.5.0):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -1447,105 +2059,128 @@ packages:
dependencies:
ms: 2.1.2
supports-color: 5.5.0
- dev: false
- /decode-named-character-reference/1.0.2:
+ /decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dependencies:
character-entities: 2.0.2
dev: false
- /decode-uri-component/0.2.2:
+ /decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- dev: false
- /deep-equal/2.2.1:
- resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==}
- dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.2
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.0
- is-arguments: 1.1.1
- is-array-buffer: 3.0.2
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- isarray: 2.0.5
- object-is: 1.1.5
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.9
- dev: true
-
- /deep-is/0.1.4:
- resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
+ /decompress-response@3.3.0:
+ resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
+ engines: {node: '>=4'}
+ dependencies:
+ mimic-response: 1.0.1
+ dev: false
- /define-properties/1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
- engines: {node: '>= 0.4'}
+ /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: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==}
+ 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:
- has-property-descriptors: 1.0.0
- object-keys: 1.1.1
+ decompress-tar: 4.1.1
+ decompress-tarbz2: 4.1.1
+ decompress-targz: 4.1.1
+ decompress-unzip: 4.0.1
+ graceful-fs: 4.2.11
+ 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-property/0.2.5:
+ /define-property@0.2.5:
resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
- dev: false
- /define-property/1.0.0:
+ /define-property@1.0.0:
resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
- dev: false
- /define-property/2.0.2:
+ /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: false
- /defined/1.0.1:
- resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- dev: true
-
- /dequal/2.0.3:
+ /dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
dev: false
- /detective/5.2.1:
- resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
- engines: {node: '>=0.8.0'}
- hasBin: true
+ /des.js@1.0.1:
+ resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
dependencies:
- acorn-node: 1.8.2
- defined: 1.0.1
- minimist: 1.2.8
- dev: true
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
- /didyoumean/1.2.2:
+ /didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
dev: true
- /diff/5.1.0:
+ /diff@5.1.0:
resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
dev: false
- /dir-glob/2.0.0:
+ /diffie-hellman@5.0.3:
+ resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
+ dependencies:
+ bn.js: 4.12.0
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+
+ /dir-glob@2.0.0:
resolution: {integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==}
engines: {node: '>=4'}
dependencies:
@@ -1553,39 +2188,32 @@ packages:
path-type: 3.0.0
dev: false
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
dev: true
- /dlv/1.1.3:
+ /dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: true
- /doctrine/2.1.0:
- resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
-
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
dev: true
- /dom-helpers/5.2.1:
+ /dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
'@babel/runtime': 7.21.5
csstype: 3.1.2
dev: false
- /dom-serializer/1.4.1:
+ /dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
domelementtype: 2.3.0
@@ -1593,18 +2221,22 @@ packages:
entities: 2.2.0
dev: true
- /domelementtype/2.3.0:
+ /domain-browser@1.2.0:
+ resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==}
+ engines: {node: '>=0.4', npm: '>=1.2'}
+
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
- /domhandler/4.3.1:
+ /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:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.4.1
@@ -1612,318 +2244,123 @@ packages:
domhandler: 4.3.1
dev: true
- /electron-to-chromium/1.4.384:
+ /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.5:
+ resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
+ dev: false
+
+ /duplexify@3.7.1:
+ resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ stream-shift: 1.0.1
+
+ /electron-to-chromium@1.4.384:
resolution: {integrity: sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==}
dev: true
- /emoji-regex/9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: true
+ /elliptic@6.5.4:
+ resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
- /emojis-list/3.0.0:
+ /emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /enhanced-resolve/5.13.0:
- resolution: {integrity: sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==}
- engines: {node: '>=10.13.0'}
+ /end-of-stream@1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ dependencies:
+ once: 1.4.0
+
+ /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.11
- tapable: 2.2.1
- dev: true
+ memory-fs: 0.5.0
+ tapable: 1.1.3
- /entities/2.2.0:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
- /es-abstract/1.21.2:
- resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.0
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.10
- is-weakref: 1.0.2
- object-inspect: 1.12.3
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.7
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
- dev: true
-
- /es-get-iterator/1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
- dev: true
-
- /es-set-tostringtag/2.0.1:
- resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- has-tostringtag: 1.0.0
- dev: true
-
- /es-shim-unscopables/1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ /errno@0.1.8:
+ resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
+ hasBin: true
dependencies:
- has: 1.0.3
- dev: true
+ prr: 1.0.1
- /es-to-primitive/1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
- dev: true
+ is-arrayish: 0.2.1
+ dev: false
- /escalade/3.1.1:
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
dev: true
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
dev: false
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- dev: true
-
- /eslint-config-important-stuff/1.1.0:
- resolution: {integrity: sha512-CsV6QFsjNDTZTDEgE1XxhTKph4YJUh5XFMdsWv3p+9DuMyvfy40fsnZiwqXZHBVEUNMHf+zfPGk6s6b4fS9Erw==}
- dev: true
-
- /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'
- typescript: '>=3.3.1'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@next/eslint-plugin-next': 12.1.6
- '@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 5.59.2_eslint@8.17.0+typescript@4.7.3
- eslint: 8.17.0
- eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 2.7.1_91105fc1db1d17927eadebb405eda456
- eslint-plugin-import: 2.27.5_eslint@8.17.0
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.17.0
- eslint-plugin-react: 7.32.2_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.17.0:
- resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
- dependencies:
- eslint: 8.17.0
- dev: true
-
- /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.7.1_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.17.0:
- resolution: {integrity: sha512-MX5mgE+GGO/QL14GzA0IDPC9aDyMCMS3GllCwTl6FmtmC7jRXxXn33oJux6RwTlt3Z9mcxHlSnjqC6uDBrQKxA==}
- dependencies:
- eslint-config-react-important-stuff: 3.0.0_eslint@8.17.0
- transitivePeerDependencies:
- - eslint
- dev: true
-
- /eslint-import-resolver-node/0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.12.0
- resolve: 1.22.2
- dev: true
-
- /eslint-import-resolver-typescript/2.7.1_91105fc1db1d17927eadebb405eda456:
- resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: '*'
- eslint-plugin-import: '*'
- dependencies:
- debug: 4.3.4
- eslint: 8.17.0
- eslint-plugin-import: 2.27.5_eslint@8.17.0
- glob: 7.2.3
- is-glob: 4.0.3
- resolve: 1.22.2
- tsconfig-paths: 3.14.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint-module-utils/2.8.0_eslint@8.17.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: '*'
- peerDependenciesMeta:
- eslint:
- optional: true
- dependencies:
- debug: 3.2.7
- eslint: 8.17.0
- dev: true
-
- /eslint-plugin-import/2.27.5_eslint@8.17.0:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.17.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0_eslint@8.17.0
- has: 1.0.3
- is-core-module: 2.12.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.2
- semver: 6.3.0
- tsconfig-paths: 3.14.2
- dev: true
-
- /eslint-plugin-jsx-a11y/6.7.1_eslint@8.17.0:
- resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
- engines: {node: '>=4.0'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- dependencies:
- '@babel/runtime': 7.21.5
- aria-query: 5.1.3
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- ast-types-flow: 0.0.7
- axe-core: 4.7.0
- axobject-query: 3.1.1
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 8.17.0
- has: 1.0.3
- jsx-ast-utils: 3.3.3
- language-tags: 1.0.5
- minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- semver: 6.3.0
- dev: true
-
- /eslint-plugin-prettier/4.0.0_ec1e505292ae08396b4b1e71ab408299:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- eslint: '>=7.28.0'
- eslint-config-prettier: '*'
- prettier: '>=2.0.0'
- peerDependenciesMeta:
- eslint-config-prettier:
- optional: true
- dependencies:
- 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.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.17.0
- dev: true
-
- /eslint-plugin-react/7.32.2_eslint@8.17.0:
- resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ /eslint-scope@4.0.3:
+ resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==}
+ engines: {node: '>=4.0.0'}
dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- array.prototype.tosorted: 1.1.1
- doctrine: 2.1.0
- eslint: 8.17.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
- minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
- prop-types: 15.8.1
- resolve: 2.0.0-next.4
- semver: 6.3.0
- string.prototype.matchall: 4.0.8
- dev: true
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
- /eslint-scope/7.2.0:
+ /eslint-scope@7.2.0:
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -1931,7 +2368,7 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.17.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:
@@ -1941,17 +2378,17 @@ packages:
eslint-visitor-keys: 2.1.0
dev: true
- /eslint-visitor-keys/2.1.0:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
dev: true
- /eslint-visitor-keys/3.4.0:
+ /eslint-visitor-keys@3.4.0:
resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.17.0:
+ /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
@@ -1961,11 +2398,11 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.0
- eslint-utils: 3.0.0_eslint@8.17.0
+ eslint-utils: 3.0.0(eslint@8.17.0)
eslint-visitor-keys: 3.4.0
espree: 9.5.1
esquery: 1.5.0
@@ -1995,40 +2432,156 @@ packages:
- supports-color
dev: true
- /espree/9.5.1:
+ /espree@9.5.1:
resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.0
dev: true
- /esquery/1.5.0:
+ /esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
dev: true
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- dev: true
- /estraverse/5.3.0:
+ /estraverse@4.3.0:
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
+
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- dev: true
- /esutils/2.0.3:
+ /estree-util-attach-comments@2.1.1:
+ resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
+ dependencies:
+ '@types/estree': 1.0.1
+ dev: false
+
+ /estree-util-build-jsx@2.2.2:
+ resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ estree-util-is-identifier-name: 2.1.0
+ estree-walker: 3.0.3
+ dev: false
+
+ /estree-util-is-identifier-name@2.1.0:
+ resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
+ dev: false
+
+ /estree-util-to-js@1.2.0:
+ resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ astring: 1.8.4
+ source-map: 0.7.4
+ dev: false
+
+ /estree-util-visit@1.2.1:
+ resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ '@types/unist': 2.0.6
+ dev: false
+
+ /estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ dependencies:
+ '@types/estree': 1.0.1
+ dev: false
+
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: true
- /expand-brackets/2.1.4:
+ /events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+
+ /evp_bytestokey@1.0.3:
+ resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.1
+
+ /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: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==}
+ 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: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -2039,28 +2592,42 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+
+ /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:
+ /extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
- dev: false
- /extend-shallow/3.0.2:
+ /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: false
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: false
- /extglob/2.0.4:
+ /extglob@2.0.4:
resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -2072,16 +2639,13 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /fast-deep-equal/3.1.3:
+ /fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff/1.2.0:
- resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
- dev: true
-
- /fast-glob/2.2.7:
+ /fast-glob@2.2.7:
resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==}
engines: {node: '>=4.0.0'}
dependencies:
@@ -2091,9 +2655,11 @@ packages:
is-glob: 4.0.3
merge2: 1.4.1
micromatch: 3.1.10
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /fast-glob/3.2.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -2104,34 +2670,43 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
dev: true
- /figures/3.2.0:
+ /fd-slicer@1.1.0:
+ resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+ dependencies:
+ pend: 1.2.0
+ dev: false
+
+ /figgy-pudding@3.5.2:
+ resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==}
+
+ /figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
dev: false
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
dev: true
- /file-loader/3.0.1:
+ /file-loader@3.0.1(webpack@4.46.0):
resolution: {integrity: sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==}
engines: {node: '>= 6.9.0'}
peerDependencies:
@@ -2139,14 +2714,78 @@ packages:
dependencies:
loader-utils: 1.4.2
schema-utils: 1.0.0
+ webpack: 4.46.0
dev: false
- /file-type/10.11.0:
+ /file-loader@6.2.0(webpack@4.46.0):
+ resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.1.2
+ webpack: 4.46.0
+
+ /file-type@10.11.0:
resolution: {integrity: sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==}
engines: {node: '>=6'}
dev: false
- /fill-range/4.0.0:
+ /file-type@16.5.4:
+ resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==}
+ engines: {node: '>=10'}
+ dependencies:
+ readable-web-to-node-stream: 3.0.2
+ strtok3: 6.3.0
+ token-types: 4.2.1
+ dev: true
+
+ /file-type@3.9.0:
+ resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /file-type@4.4.0:
+ resolution: {integrity: sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /file-type@5.2.0:
+ resolution: {integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==}
+ 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
+
+ /file-uri-to-path@1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ requiresBuild: true
+ optional: true
+
+ /filename-reserved-regex@2.0.0:
+ resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==}
+ 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: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -2154,16 +2793,39 @@ packages:
is-number: 3.0.0
repeat-string: 1.6.1
to-regex-range: 2.1.1
- dev: false
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- dev: true
- /flat-cache/3.0.4:
+ /find-cache-dir@2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+
+ /find-root@1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
+ dev: false
+
+ /find-up@3.0.0:
+ resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
+ engines: {node: '>=6'}
+ dependencies:
+ locate-path: 3.0.0
+
+ /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:
@@ -2171,117 +2833,143 @@ packages:
rimraf: 3.0.2
dev: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
dev: true
- /for-each/0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ /flush-write-stream@1.1.1:
+ resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
dependencies:
- is-callable: 1.2.7
- dev: true
+ inherits: 2.0.4
+ readable-stream: 2.3.8
- /for-in/1.0.2:
+ /for-in@1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
- /fragment-cache/0.2.1:
+ /fragment-cache@0.2.1:
resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
engines: {node: '>=0.10.0'}
dependencies:
map-cache: 0.2.2
+
+ /from2@2.3.0:
+ resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+
+ /fs-constants@1.0.0:
+ resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: false
- /fs.realpath/1.0.0:
+ /fs-write-stream-atomic@1.0.10:
+ resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==}
+ dependencies:
+ graceful-fs: 4.2.11
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.8
+
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fs/0.0.1-security:
+ /fs@0.0.1-security:
resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==}
dev: false
- /fsevents/2.3.2:
+ /fsevents@1.2.13:
+ resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
+ engines: {node: '>= 4.0'}
+ os: [darwin]
+ deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
+ requiresBuild: true
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.17.0
+ optional: true
+
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
- dev: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+
+ /functional-red-black-tree@1.0.1:
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
dev: true
- /function.prototype.name/1.1.5:
- resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
- engines: {node: '>= 0.4'}
+ /get-proxy@2.1.0:
+ resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==}
+ engines: {node: '>=4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- functions-have-names: 1.2.3
- dev: true
+ npm-conf: 1.1.3
+ dev: false
- /functional-red-black-tree/1.0.1:
- resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- dev: true
+ /get-stream@2.3.1:
+ resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-assign: 4.1.1
+ pinkie-promise: 2.0.1
+ dev: false
- /functions-have-names/1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- dev: true
+ /get-stream@3.0.0:
+ resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
+ engines: {node: '>=4'}
+ dev: false
- /get-intrinsic/1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
+ /get-stream@4.1.0:
+ resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
+ engines: {node: '>=6'}
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-symbols: 1.0.3
- dev: true
+ pump: 3.0.0
+ dev: false
- /get-symbol-description/1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
- engines: {node: '>= 0.4'}
+ /get-stream@5.2.0:
+ resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
+ engines: {node: '>=8'}
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- dev: true
+ pump: 3.0.0
+ dev: false
- /get-value/2.0.6:
+ /get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
- dev: false
- /glob-parent/3.1.0:
+ /glob-parent@3.1.0:
resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
dependencies:
is-glob: 3.1.0
path-dirname: 1.0.2
- dev: false
- /glob-parent/5.1.2:
+ /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:
+ /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.3.0:
+ /glob-to-regexp@0.3.0:
resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
dev: false
- /glob/7.1.7:
- resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
+ /glob@7.1.6:
+ resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -2291,7 +2979,7 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -2301,38 +2989,31 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
dev: false
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
dev: true
- /globalthis/1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.0
- dev: true
-
- /globby/11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
+ /globby@12.2.0:
+ resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- array-union: 2.1.0
+ array-union: 3.0.1
dir-glob: 3.0.1
fast-glob: 3.2.12
ignore: 5.2.4
merge2: 1.4.1
- slash: 3.0.0
+ slash: 4.0.0
dev: true
- /globby/8.0.2:
+ /globby@8.0.2:
resolution: {integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==}
engines: {node: '>=4'}
dependencies:
@@ -2343,129 +3024,237 @@ packages:
ignore: 3.3.10
pify: 3.0.0
slash: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /gopd/1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ /got@7.1.0:
+ resolution: {integrity: sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==}
+ engines: {node: '>=4'}
dependencies:
- get-intrinsic: 1.2.0
- dev: true
+ '@types/keyv': 3.1.4
+ '@types/responselike': 1.0.0
+ decompress-response: 3.3.0
+ duplexer3: 0.1.5
+ 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
+ '@types/keyv': 3.1.4
+ '@types/responselike': 1.0.0
+ cacheable-request: 2.1.4
+ decompress-response: 3.3.0
+ duplexer3: 0.1.5
+ 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.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- dev: true
- /has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
+ /gray-matter@4.0.3:
+ resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
+ engines: {node: '>=6.0'}
+ dependencies:
+ js-yaml: 3.14.1
+ kind-of: 6.0.3
+ section-matter: 1.0.0
+ strip-bom-string: 1.0.0
+ dev: false
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- dev: false
- /has-flag/4.0.0:
+ /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.2.0
- dev: true
-
- /has-proto/1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /has-symbols/1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
- dev: true
+ /has-symbol-support-x@1.4.2:
+ resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==}
+ dev: false
- /has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
- engines: {node: '>= 0.4'}
+ /has-to-string-tag-x@1.4.1:
+ resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==}
dependencies:
- has-symbols: 1.0.3
- dev: true
+ has-symbol-support-x: 1.4.2
+ dev: false
- /has-value/0.3.1:
+ /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: false
- /has-value/1.0.0:
+ /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: false
- /has-values/0.1.4:
+ /has-values@0.1.4:
resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /has-values/1.0.0:
+ /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: false
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- dev: true
- /hast-util-whitespace/2.0.1:
+ /hash-base@3.1.0:
+ resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
+ engines: {node: '>=4'}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+
+ /hash.js@1.1.7:
+ resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+
+ /hast-util-to-estree@2.3.2:
+ resolution: {integrity: sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==}
+ dependencies:
+ '@types/estree': 1.0.1
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 2.3.4
+ '@types/unist': 2.0.6
+ comma-separated-tokens: 2.0.3
+ estree-util-attach-comments: 2.1.1
+ estree-util-is-identifier-name: 2.1.0
+ hast-util-whitespace: 2.0.1
+ mdast-util-mdx-expression: 1.3.2
+ mdast-util-mdxjs-esm: 1.3.1
+ property-information: 6.2.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 0.4.1
+ unist-util-position: 4.0.4
+ zwitch: 2.0.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /hast-util-whitespace@2.0.1:
resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
dev: false
- /hoist-non-react-statics/3.3.2:
+ /hmac-drbg@1.0.1:
+ resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
dev: false
- /hyphenate-style-name/1.0.4:
+ /http-cache-semantics@3.8.1:
+ resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
+ dev: false
+
+ /https-browserify@1.0.0:
+ resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
+
+ /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.4:
+ /i18next-browser-languagedetector@6.1.4:
resolution: {integrity: sha512-wukWnFeU7rKIWT66VU5i8I+3Zc4wReGcuDK2+kuFhtoxBRGWGdvYI9UQmqNL/yQH1KogWwh+xGEaIPH8V/i2Zg==}
dependencies:
'@babel/runtime': 7.21.5
dev: false
- /i18next/21.8.9:
+ /i18next@21.8.9:
resolution: {integrity: sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==}
dependencies:
'@babel/runtime': 7.21.5
dev: false
- /ignore/3.3.10:
+ /ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+ /iferr@0.1.5:
+ resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==}
+
+ /ignore@3.3.10:
resolution: {integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==}
dev: false
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
dev: true
- /imagemin/6.1.0:
+ /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'}
dependencies:
@@ -2475,9 +3264,24 @@ packages:
p-pipe: 1.2.0
pify: 4.0.1
replace-ext: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /img-loader/3.0.2_imagemin@6.1.0:
+ /imagemin@8.0.1:
+ resolution: {integrity: sha512-Q/QaPi+5HuwbZNtQRqUVk6hKacI6z9iWiCSQBisAv7uBynZwO7t1svkryKl7+iSQbkU/6t9DWnHz04cFs2WY7w==}
+ engines: {node: '>=12'}
+ dependencies:
+ file-type: 16.5.4
+ globby: 12.2.0
+ graceful-fs: 4.2.11
+ junk: 3.1.0
+ p-pipe: 4.0.0
+ replace-ext: 2.0.0
+ slash: 3.0.0
+ dev: true
+
+ /img-loader@3.0.2(imagemin@6.1.0):
resolution: {integrity: sha512-rSriLKgvi85Km7ppSF+AEAM3nU4fxpvCkaXtC/IoCEU7jfks55bEANFs0bB9YXYkxY9JurZQIZFtXh5Gue3upw==}
peerDependencies:
imagemin: ^5.0.0 || ^6.0.0 || ^7.0.0
@@ -2486,362 +3290,342 @@ packages:
loader-utils: 1.4.2
dev: false
- /img-loader/4.0.0:
+ /img-loader@4.0.0(imagemin@8.0.1):
resolution: {integrity: sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ==}
engines: {node: '>=12'}
peerDependencies:
imagemin: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
+ imagemin: 8.0.1
loader-utils: 1.4.2
dev: true
- /import-fresh/3.3.0:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- dev: true
- /imurmurhash/0.1.4:
+ /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: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
- /inflight/1.0.6:
+ /infer-owner@1.0.4:
+ resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.3:
+ /inherits@2.0.1:
+ resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==}
+
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- dev: false
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /inline-style-parser/0.1.1:
+ /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
- /internal-slot/1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- side-channel: 1.0.4
- dev: true
+ /into-stream@3.1.0:
+ resolution: {integrity: sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ from2: 2.3.0
+ p-is-promise: 1.1.0
+ dev: false
- /is-accessor-descriptor/0.1.6:
+ /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: false
- /is-accessor-descriptor/1.0.0:
+ /is-accessor-descriptor@1.0.0:
resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 6.0.3
+
+ /is-alphabetical@2.0.1:
+ resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
dev: false
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
+ /is-alphanumerical@2.0.1:
+ resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
+ is-alphabetical: 2.0.1
+ is-decimal: 2.0.1
+ dev: false
- /is-array-buffer/3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-typed-array: 1.1.10
- dev: true
+ /is-arrayish@0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ dev: false
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ /is-binary-path@1.0.1:
+ resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
+ engines: {node: '>=0.10.0'}
dependencies:
- has-bigints: 1.0.2
- dev: true
+ binary-extensions: 1.13.1
+ optional: true
- /is-binary-path/2.1.0:
+ /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'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: false
- /is-buffer/2.0.5:
+ /is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
dev: false
- /is-callable/1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /is-core-module/2.12.0:
+ /is-core-module@2.12.0:
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
dependencies:
has: 1.0.3
- dev: true
- /is-data-descriptor/0.1.4:
+ /is-data-descriptor@0.1.4:
resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
- dev: false
- /is-data-descriptor/1.0.0:
+ /is-data-descriptor@1.0.0:
resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 6.0.3
- dev: false
- /is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
+ /is-decimal@2.0.1:
+ resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
+ dev: false
- /is-descriptor/0.1.6:
+ /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: false
- /is-descriptor/1.0.2:
+ /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: false
- /is-extendable/0.1.1:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
- dev: false
- /is-extendable/1.0.1:
+ /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: false
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-glob/3.1.0:
+ /is-glob@3.1.0:
resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- dev: false
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-in-browser/1.1.3:
- resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
+ /is-hexadecimal@2.0.1:
+ resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
dev: false
- /is-map/2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- dev: true
+ /is-in-browser@1.1.3:
+ resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
+ dev: false
- /is-negative-zero/2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
- engines: {node: '>= 0.4'}
- dev: true
+ /is-jpg@2.0.0:
+ resolution: {integrity: sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==}
+ engines: {node: '>=6'}
+ dev: false
- /is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
+ /is-natural-number@4.0.1:
+ resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==}
+ dev: false
- /is-number/3.0.0:
+ /is-number@3.0.0:
resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
- dev: false
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- dev: true
- /is-plain-obj/4.1.0:
+ /is-object@1.0.2:
+ resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==}
+ dev: false
+
+ /is-plain-obj@1.1.0:
+ resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
dev: false
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: false
-
- /is-regex/1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
- /is-set/2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- dev: true
-
- /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-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
- dev: true
- /is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: true
+ /is-png@2.0.0:
+ resolution: {integrity: sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==}
+ engines: {node: '>=8'}
+ dev: false
- /is-typed-array/1.1.10:
- resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
- engines: {node: '>= 0.4'}
+ /is-reference@3.0.1:
+ resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==}
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- dev: true
+ '@types/estree': 1.0.1
+ dev: false
- /is-weakmap/2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
- dev: true
+ /is-retry-allowed@1.2.0:
+ resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- /is-weakref/1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- dependencies:
- call-bind: 1.0.2
- dev: true
+ /is-stream@1.1.0:
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- /is-weakset/2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- dev: true
+ /is-stream@2.0.1:
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
+ dev: false
- /is-windows/1.0.2:
+ /is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- dev: false
- /isarray/1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- dev: false
+ /is-wsl@1.1.0:
+ resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
+ engines: {node: '>=4'}
- /isarray/2.0.5:
- resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- dev: true
+ /isarray@1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
- /isobject/2.1.0:
+ /isobject@2.1.0:
resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
engines: {node: '>=0.10.0'}
dependencies:
isarray: 1.0.0
- dev: false
- /isobject/3.0.1:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
+
+ /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:
+ /jiti@1.18.2:
+ resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
+ hasBin: true
+ dev: true
+
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ dev: false
+
+ /js-yaml@3.14.1:
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: false
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
dev: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
dev: false
- /json-schema-traverse/0.4.1:
+ /json-buffer@3.0.0:
+ resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=}
+ dev: false
+
+ /json-parse-better-errors@1.0.2:
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+
+ /json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ dev: false
+
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
- /json5/1.0.2:
+ /json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
minimist: 1.2.8
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- dev: true
- /jss-plugin-camel-case/10.10.0:
+ /jss-plugin-camel-case@10.10.0:
resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
dependencies:
'@babel/runtime': 7.21.5
@@ -2849,21 +3633,21 @@ packages:
jss: 10.10.0
dev: false
- /jss-plugin-default-unit/10.10.0:
+ /jss-plugin-default-unit@10.10.0:
resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==}
dependencies:
'@babel/runtime': 7.21.5
jss: 10.10.0
dev: false
- /jss-plugin-global/10.10.0:
+ /jss-plugin-global@10.10.0:
resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==}
dependencies:
'@babel/runtime': 7.21.5
jss: 10.10.0
dev: false
- /jss-plugin-nested/10.10.0:
+ /jss-plugin-nested@10.10.0:
resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==}
dependencies:
'@babel/runtime': 7.21.5
@@ -2871,14 +3655,14 @@ packages:
tiny-warning: 1.0.3
dev: false
- /jss-plugin-props-sort/10.10.0:
+ /jss-plugin-props-sort@10.10.0:
resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==}
dependencies:
'@babel/runtime': 7.21.5
jss: 10.10.0
dev: false
- /jss-plugin-rule-value-function/10.10.0:
+ /jss-plugin-rule-value-function@10.10.0:
resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==}
dependencies:
'@babel/runtime': 7.21.5
@@ -2886,7 +3670,7 @@ packages:
tiny-warning: 1.0.3
dev: false
- /jss-plugin-vendor-prefixer/10.10.0:
+ /jss-plugin-vendor-prefixer@10.10.0:
resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==}
dependencies:
'@babel/runtime': 7.21.5
@@ -2894,7 +3678,7 @@ packages:
jss: 10.10.0
dev: false
- /jss/10.10.0:
+ /jss@10.10.0:
resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==}
dependencies:
'@babel/runtime': 7.21.5
@@ -2903,54 +3687,43 @@ packages:
tiny-warning: 1.0.3
dev: false
- /jsx-ast-utils/3.3.3:
- resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
- engines: {node: '>=4.0'}
- dependencies:
- array-includes: 3.1.6
- object.assign: 4.1.4
+ /junk@3.1.0:
+ resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
+ engines: {node: '>=8'}
dev: true
- /kind-of/3.2.2:
+ /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: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
- dev: false
- /kind-of/4.0.0:
+ /kind-of@4.0.0:
resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
- dev: false
- /kind-of/5.1.0:
+ /kind-of@5.1.0:
resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
engines: {node: '>=0.10.0'}
- dev: false
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: false
- /kleur/4.1.5:
+ /kleur@4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
dev: false
- /language-subtag-registry/0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
- dev: true
-
- /language-tags/1.0.5:
- resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
- dependencies:
- language-subtag-registry: 0.3.22
- dev: true
-
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -2958,12 +3731,19 @@ packages:
type-check: 0.4.0
dev: true
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
dev: true
- /loader-utils/1.4.2:
+ /lines-and-columns@1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+ /loader-runner@2.4.0:
+ resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+
+ /loader-utils@1.4.2:
resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
dependencies:
@@ -2971,64 +3751,107 @@ packages:
emojis-list: 3.0.0
json5: 1.0.2
- /loader-utils/2.0.4:
+ /loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
json5: 2.2.3
- dev: true
- /lodash.memoize/4.1.2:
+ /locate-path@3.0.0:
+ resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: false
- /loose-envify/1.4.0:
+ /longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+ dev: false
+
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
+ dev: false
- /lru-cache/6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
+ /lowercase-keys@1.0.0:
+ resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==}
+ 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:
- yallist: 4.0.0
- dev: true
+ pseudomap: 1.0.2
+ yallist: 2.1.2
+ dev: false
- /make-dir/1.3.0:
+ /lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ dependencies:
+ yallist: 3.1.1
+
+ /make-dir@1.3.0:
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
engines: {node: '>=4'}
dependencies:
pify: 3.0.0
dev: false
- /map-cache/0.2.2:
+ /make-dir@2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.1
+
+ /map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
- dev: false
- /map-visit/1.0.0:
+ /map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
dependencies:
object-visit: 1.0.1
+
+ /markdown-extensions@1.1.1:
+ resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
+ engines: {node: '>=0.10.0'}
dev: false
- /mdast-util-definitions/5.1.2:
+ /md5.js@1.3.5:
+ resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ /mdast-util-definitions@5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
'@types/mdast': 3.0.11
@@ -3036,7 +3859,7 @@ packages:
unist-util-visit: 4.1.2
dev: false
- /mdast-util-from-markdown/1.3.0:
+ /mdast-util-from-markdown@1.3.0:
resolution: {integrity: sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==}
dependencies:
'@types/mdast': 3.0.11
@@ -3055,7 +3878,69 @@ packages:
- supports-color
dev: false
- /mdast-util-to-hast/12.3.0:
+ /mdast-util-mdx-expression@1.3.2:
+ resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 2.3.4
+ '@types/mdast': 3.0.11
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-mdx-jsx@2.1.2:
+ resolution: {integrity: sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 2.3.4
+ '@types/mdast': 3.0.11
+ '@types/unist': 2.0.6
+ ccount: 2.0.1
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
+ parse-entities: 4.0.1
+ stringify-entities: 4.0.3
+ unist-util-remove-position: 4.0.2
+ unist-util-stringify-position: 3.0.3
+ vfile-message: 3.1.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-mdx@2.0.1:
+ resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
+ dependencies:
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-mdx-expression: 1.3.2
+ mdast-util-mdx-jsx: 2.1.2
+ mdast-util-mdxjs-esm: 1.3.1
+ mdast-util-to-markdown: 1.5.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-mdxjs-esm@1.3.1:
+ resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 2.3.4
+ '@types/mdast': 3.0.11
+ mdast-util-from-markdown: 1.3.0
+ mdast-util-to-markdown: 1.5.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-phrasing@3.0.1:
+ resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
+ dependencies:
+ '@types/mdast': 3.0.11
+ unist-util-is: 5.2.1
+ dev: false
+
+ /mdast-util-to-hast@12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
'@types/hast': 2.3.4
@@ -3068,42 +3953,130 @@ packages:
unist-util-visit: 4.1.2
dev: false
- /mdast-util-to-string/3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ /mdast-util-to-markdown@1.5.0:
+ resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
+ dependencies:
+ '@types/mdast': 3.0.11
+ '@types/unist': 2.0.6
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 3.0.1
+ mdast-util-to-string: 3.2.0
+ micromark-util-decode-string: 1.0.2
+ unist-util-visit: 4.1.2
+ zwitch: 2.0.4
+ dev: false
+
+ /mdast-util-to-string@3.2.0:
+ resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ dependencies:
+ '@types/mdast': 3.0.11
+ dev: false
+
+ /mdn-data@2.0.14:
+ resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ dev: true
+
+ /memory-fs@0.4.1:
+ resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+
+ /memory-fs@0.5.0:
+ resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+
+ /merge-stream@2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ dev: false
+
+ /merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ /micromark-core-commonmark@1.0.6:
+ resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==}
+ dependencies:
+ 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
+ micromark-factory-title: 1.0.2
+ micromark-factory-whitespace: 1.0.0
+ 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.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.6
+ dev: false
+
+ /micromark-extension-mdx-expression@1.0.4:
+ resolution: {integrity: sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==}
+ dependencies:
+ micromark-factory-mdx-expression: 1.0.7
+ micromark-factory-space: 1.0.0
+ micromark-util-character: 1.1.0
+ micromark-util-events-to-acorn: 1.2.1
+ micromark-util-symbol: 1.0.1
+ micromark-util-types: 1.0.2
+ uvu: 0.5.6
+ dev: false
+
+ /micromark-extension-mdx-jsx@1.0.3:
+ resolution: {integrity: sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==}
+ dependencies:
+ '@types/acorn': 4.0.6
+ estree-util-is-identifier-name: 2.1.0
+ micromark-factory-mdx-expression: 1.0.7
+ micromark-factory-space: 1.0.0
+ micromark-util-character: 1.1.0
+ micromark-util-symbol: 1.0.1
+ micromark-util-types: 1.0.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
+ dev: false
+
+ /micromark-extension-mdx-md@1.0.1:
+ resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
dependencies:
- '@types/mdast': 3.0.11
+ micromark-util-types: 1.0.2
dev: false
- /mdn-data/2.0.14:
- resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
- dev: true
-
- /merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
-
- /micromark-core-commonmark/1.0.6:
- resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==}
+ /micromark-extension-mdxjs-esm@1.0.3:
+ resolution: {integrity: sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==}
dependencies:
- 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
- micromark-factory-title: 1.0.2
- micromark-factory-whitespace: 1.0.0
+ micromark-core-commonmark: 1.0.6
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.1.0
- micromark-util-normalize-identifier: 1.0.0
- micromark-util-resolve-all: 1.0.0
- micromark-util-subtokenize: 1.0.2
+ micromark-util-events-to-acorn: 1.2.1
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
+ unist-util-position-from-estree: 1.1.2
uvu: 0.5.6
+ vfile-message: 3.1.4
dev: false
- /micromark-factory-destination/1.0.0:
+ /micromark-extension-mdxjs@1.0.0:
+ resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==}
+ dependencies:
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
+ micromark-extension-mdx-expression: 1.0.4
+ micromark-extension-mdx-jsx: 1.0.3
+ micromark-extension-mdx-md: 1.0.1
+ micromark-extension-mdxjs-esm: 1.0.3
+ micromark-util-combine-extensions: 1.0.0
+ micromark-util-types: 1.0.2
+ dev: false
+
+ /micromark-factory-destination@1.0.0:
resolution: {integrity: sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==}
dependencies:
micromark-util-character: 1.1.0
@@ -3111,7 +4084,7 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-factory-label/1.0.2:
+ /micromark-factory-label@1.0.2:
resolution: {integrity: sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==}
dependencies:
micromark-util-character: 1.1.0
@@ -3120,14 +4093,27 @@ packages:
uvu: 0.5.6
dev: false
- /micromark-factory-space/1.0.0:
+ /micromark-factory-mdx-expression@1.0.7:
+ resolution: {integrity: sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==}
+ dependencies:
+ micromark-factory-space: 1.0.0
+ micromark-util-character: 1.1.0
+ micromark-util-events-to-acorn: 1.2.1
+ micromark-util-symbol: 1.0.1
+ micromark-util-types: 1.0.2
+ unist-util-position-from-estree: 1.1.2
+ uvu: 0.5.6
+ vfile-message: 3.1.4
+ dev: false
+
+ /micromark-factory-space@1.0.0:
resolution: {integrity: sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==}
dependencies:
micromark-util-character: 1.1.0
micromark-util-types: 1.0.2
dev: false
- /micromark-factory-title/1.0.2:
+ /micromark-factory-title@1.0.2:
resolution: {integrity: sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==}
dependencies:
micromark-factory-space: 1.0.0
@@ -3137,7 +4123,7 @@ packages:
uvu: 0.5.6
dev: false
- /micromark-factory-whitespace/1.0.0:
+ /micromark-factory-whitespace@1.0.0:
resolution: {integrity: sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==}
dependencies:
micromark-factory-space: 1.0.0
@@ -3146,20 +4132,20 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-character/1.1.0:
+ /micromark-util-character@1.1.0:
resolution: {integrity: sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==}
dependencies:
micromark-util-symbol: 1.0.1
micromark-util-types: 1.0.2
dev: false
- /micromark-util-chunked/1.0.0:
+ /micromark-util-chunked@1.0.0:
resolution: {integrity: sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-classify-character/1.0.0:
+ /micromark-util-classify-character@1.0.0:
resolution: {integrity: sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==}
dependencies:
micromark-util-character: 1.1.0
@@ -3167,20 +4153,20 @@ packages:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-combine-extensions/1.0.0:
+ /micromark-util-combine-extensions@1.0.0:
resolution: {integrity: sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==}
dependencies:
micromark-util-chunked: 1.0.0
micromark-util-types: 1.0.2
dev: false
- /micromark-util-decode-numeric-character-reference/1.0.0:
+ /micromark-util-decode-numeric-character-reference@1.0.0:
resolution: {integrity: sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-decode-string/1.0.2:
+ /micromark-util-decode-string@1.0.2:
resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==}
dependencies:
decode-named-character-reference: 1.0.2
@@ -3189,27 +4175,39 @@ packages:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-encode/1.0.1:
+ /micromark-util-encode@1.0.1:
resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==}
dev: false
- /micromark-util-html-tag-name/1.1.0:
+ /micromark-util-events-to-acorn@1.2.1:
+ resolution: {integrity: sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==}
+ dependencies:
+ '@types/acorn': 4.0.6
+ '@types/estree': 1.0.1
+ estree-util-visit: 1.2.1
+ micromark-util-types: 1.0.2
+ uvu: 0.5.6
+ vfile-location: 4.1.0
+ vfile-message: 3.1.4
+ dev: false
+
+ /micromark-util-html-tag-name@1.1.0:
resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==}
dev: false
- /micromark-util-normalize-identifier/1.0.0:
+ /micromark-util-normalize-identifier@1.0.0:
resolution: {integrity: sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==}
dependencies:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-resolve-all/1.0.0:
+ /micromark-util-resolve-all@1.0.0:
resolution: {integrity: sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==}
dependencies:
micromark-util-types: 1.0.2
dev: false
- /micromark-util-sanitize-uri/1.1.0:
+ /micromark-util-sanitize-uri@1.1.0:
resolution: {integrity: sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==}
dependencies:
micromark-util-character: 1.1.0
@@ -3217,7 +4215,7 @@ packages:
micromark-util-symbol: 1.0.1
dev: false
- /micromark-util-subtokenize/1.0.2:
+ /micromark-util-subtokenize@1.0.2:
resolution: {integrity: sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==}
dependencies:
micromark-util-chunked: 1.0.0
@@ -3226,19 +4224,19 @@ packages:
uvu: 0.5.6
dev: false
- /micromark-util-symbol/1.0.1:
+ /micromark-util-symbol@1.0.1:
resolution: {integrity: sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==}
dev: false
- /micromark-util-types/1.0.2:
+ /micromark-util-types@1.0.2:
resolution: {integrity: sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==}
dev: false
- /micromark/3.1.0:
+ /micromark@3.1.0:
resolution: {integrity: sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==}
dependencies:
'@types/debug': 4.1.7
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.0.6
micromark-factory-space: 1.0.0
@@ -3258,7 +4256,7 @@ packages:
- supports-color
dev: false
- /micromatch/3.1.10:
+ /micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3275,9 +4273,10 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
@@ -3285,62 +4284,131 @@ packages:
picomatch: 2.3.1
dev: true
- /mime-db/1.52.0:
+ /miller-rabin@4.0.1:
+ resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
+ hasBin: true
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- dev: true
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- dev: true
- /mime/2.6.0:
+ /mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
dev: false
- /minimatch/3.1.2:
+ /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
+
+ /minimalistic-assert@1.0.1:
+ resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+
+ /minimalistic-crypto-utils@1.0.1:
+ resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
+
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /mixin-deep/1.3.2:
+ /mississippi@3.0.0:
+ resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+
+ /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
+
+ /mkdirp@0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+
+ /move-concurrently@1.0.1:
+ resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==}
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+
+ /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:
+ /mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
dev: false
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: false
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ /mz@2.7.0:
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ dependencies:
+ any-promise: 1.3.0
+ object-assign: 4.1.1
+ thenify-all: 1.6.0
dev: true
- /nanoid/3.3.6:
+ /nan@2.17.0:
+ resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==}
+ requiresBuild: true
+ optional: true
+
+ /nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nanomatch/1.2.13:
+ /nanomatch@1.2.13:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -3355,49 +4423,71 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
- /next-compose-plugins/2.2.1:
+ /neo-async@2.6.2:
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+
+ /next-compose-plugins@2.2.1:
resolution: {integrity: sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg==}
dev: false
- /next-optimized-images/2.6.2:
+ /next-images@1.8.5(webpack@4.46.0):
+ resolution: {integrity: sha512-YLBERp92v+Nu2EVxI9+wa32KRuxyxTC8ItbiHUWVPlatUoTl0yRqsNtP39c2vYv27VRvY4LlYcUGjNRBSMUIZA==}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ file-loader: 6.2.0(webpack@4.46.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.46.0)
+ webpack: 4.46.0
+ dev: false
+
+ /next-optimized-images@2.6.2(webpack@4.46.0):
resolution: {integrity: sha512-yH/f3eLmoQ/TxvWRiSuM6AuF3tR1s4nePdHPTm9gl4lAaGEKxTGaSuUL+ZxE5j/c/ITrnHVHibQzOz1Jl8euQw==}
dependencies:
chalk: 2.4.2
figures: 3.2.0
- file-loader: 3.0.1
+ file-loader: 3.0.1(webpack@4.46.0)
imagemin: 6.1.0
- img-loader: 3.0.2_imagemin@6.1.0
- raw-loader: 2.0.0
- url-loader: 1.1.2
+ img-loader: 3.0.2(imagemin@6.1.0)
+ raw-loader: 2.0.0(webpack@4.46.0)
+ url-loader: 1.1.2(webpack@4.46.0)
transitivePeerDependencies:
+ - supports-color
- webpack
dev: false
- /next-transpile-modules/9.0.0:
- resolution: {integrity: sha512-VCNFOazIAnXn1hvgYYSTYMnoWgKgwlYh4lm1pKbSfiB3kj5ZYLcKVhfh3jkPOg1cnd9DP+pte9yCUocdPEUBTQ==}
- deprecated: All features of next-transpile-modules are now natively built-in Next.js 13.1. Please use Next's transpilePackages option :)
+ /next-themes@0.2.1(next@13.4.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
+ peerDependencies:
+ next: '*'
+ react: '*'
+ react-dom: '*'
dependencies:
- enhanced-resolve: 5.13.0
- escalade: 3.1.1
- dev: true
+ next: 13.4.1(react-dom@18.2.0)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
- /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'}
+ /next@13.4.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-JBw2kAIyhKDpjhEWvNVoFeIzNp9xNxg8wrthDOtMctfn3EpqGCmW0FSviNyGgOSOSn6zDaX48pmvbdf6X2W9xA==}
+ engines: {node: '>=16.8.0'}
hasBin: true
peerDependencies:
+ '@opentelemetry/api': ^1.1.0
fibers: '>= 3.1.0'
node-sass: ^6.0.0 || ^7.0.0
- react: ^17.0.2 || ^18.0.0-0
- react-dom: ^17.0.2 || ^18.0.0-0
+ react: ^18.2.0
+ react-dom: ^18.2.0
sass: ^1.3.0
peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
fibers:
optional: true
node-sass:
@@ -3405,154 +4495,165 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 12.1.6
+ '@next/env': 13.4.1
+ '@swc/helpers': 0.5.1
+ busboy: 1.6.0
caniuse-lite: 1.0.30001482
- postcss: 8.4.5
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- styled-jsx: 5.0.2_react@17.0.2
+ postcss: 8.4.14
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ styled-jsx: 5.1.1(react@18.2.0)
+ zod: 3.21.4
optionalDependencies:
- '@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
+ '@next/swc-darwin-arm64': 13.4.1
+ '@next/swc-darwin-x64': 13.4.1
+ '@next/swc-linux-arm64-gnu': 13.4.1
+ '@next/swc-linux-arm64-musl': 13.4.1
+ '@next/swc-linux-x64-gnu': 13.4.1
+ '@next/swc-linux-x64-musl': 13.4.1
+ '@next/swc-win32-arm64-msvc': 13.4.1
+ '@next/swc-win32-ia32-msvc': 13.4.1
+ '@next/swc-win32-x64-msvc': 13.4.1
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
dev: false
- /node-releases/2.0.10:
+ /nice-try@1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+ dev: false
+
+ /node-libs-browser@2.2.1:
+ resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==}
+ dependencies:
+ assert: 1.5.0
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.3.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.8
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.12
+ tty-browserify: 0.0.0
+ url: 0.11.0
+ util: 0.11.1
+ vm-browserify: 1.1.2
+
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
dev: true
- /normalize-path/3.0.0:
+ /normalize-path@2.1.1:
+ resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ optional: true
+
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- dev: true
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: true
- /normalize-url/6.1.0:
+ /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
- /nth-check/2.1.1:
+ /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: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
+ 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.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: true
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-copy/0.1.0:
+ /object-copy@0.1.0:
resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
engines: {node: '>=0.10.0'}
dependencies:
copy-descriptor: 0.1.1
define-property: 0.2.5
kind-of: 3.2.2
- dev: false
- /object-hash/3.0.0:
+ /object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
dev: true
- /object-inspect/1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- 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.2.0
- dev: true
-
- /object-keys/1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
- dev: true
-
- /object-visit/1.0.1:
+ /object-visit@1.0.1:
resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: false
-
- /object.assign/4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: true
-
- /object.entries/1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.fromentries/2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.hasown/1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
- dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /object.pick/1.3.0:
+ /object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: false
-
- /object.values/1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /optionator/0.9.1:
+ /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'}
dependencies:
@@ -3564,96 +4665,293 @@ packages:
word-wrap: 1.2.3
dev: true
- /p-pipe/1.2.0:
+ /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-browserify@0.3.0:
+ resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
+
+ /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: sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==}
+ 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: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-is-promise@1.1.0:
+ resolution: {integrity: sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-limit@2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+
+ /p-locate@3.0.0:
+ resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-limit: 2.3.0
+
+ /p-map-series@1.0.0:
+ resolution: {integrity: sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==}
+ engines: {node: '>=4'}
+ dependencies:
+ p-reduce: 1.0.0
+ dev: false
+
+ /p-pipe@1.2.0:
resolution: {integrity: sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==}
engines: {node: '>=4'}
dev: false
- /parent-module/1.0.1:
+ /p-pipe@4.0.0:
+ resolution: {integrity: sha512-HkPfFklpZQPUKBFXzKFB6ihLriIHxnmuQdK9WmLDwe4hf2PdhhfWT/FJa+pc3bA1ywvKXtedxIRmd4Y7BTXE4w==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /p-reduce@1.0.0:
+ resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-timeout@1.2.1:
+ resolution: {integrity: sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==}
+ 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@2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+
+ /pako@1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+
+ /parallel-transform@1.2.0:
+ resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
+ dependencies:
+ cyclist: 1.0.1
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- dev: true
- /pascalcase/0.1.1:
+ /parse-asn1@5.1.6:
+ resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
+ dependencies:
+ asn1.js: 5.4.1
+ browserify-aes: 1.2.0
+ evp_bytestokey: 1.0.3
+ pbkdf2: 3.1.2
+ safe-buffer: 5.2.1
+
+ /parse-entities@4.0.1:
+ resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
+ dependencies:
+ '@types/unist': 2.0.6
+ character-entities: 2.0.2
+ character-entities-legacy: 3.0.0
+ character-reference-invalid: 2.0.1
+ decode-named-character-reference: 1.0.2
+ is-alphanumerical: 2.0.1
+ is-decimal: 2.0.1
+ is-hexadecimal: 2.0.1
+ dev: false
+
+ /parse-json@5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/code-frame': 7.21.4
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+ dev: false
+
+ /pascalcase@0.1.1:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
- dev: false
- /path-dirname/1.0.2:
+ /path-browserify@0.0.1:
+ resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==}
+
+ /path-dirname@1.0.2:
resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
- dev: false
- /path-is-absolute/1.0.1:
+ /path-exists@3.0.0:
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
+
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key/3.1.1:
+ /path-key@2.0.1:
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ 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:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- dev: true
- /path-type/3.0.0:
+ /path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
engines: {node: '>=4'}
dependencies:
pify: 3.0.0
dev: false
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- dev: true
- /path/0.12.7:
+ /path@0.12.7:
resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
dependencies:
process: 0.11.10
util: 0.10.4
dev: false
- /picocolors/1.0.0:
+ /pbkdf2@3.1.2:
+ resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
+ engines: {node: '>=0.12'}
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+
+ /peek-readable@4.1.0:
+ resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /pend@1.2.0:
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+ dev: false
+
+ /periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
+ dependencies:
+ '@types/estree': 1.0.1
+ estree-walker: 3.0.3
+ is-reference: 3.0.1
+ dev: false
+
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/3.0.0:
+ /pify@2.3.0:
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
+
+ /pify@3.0.0:
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
engines: {node: '>=4'}
dev: false
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
+
+ /pinkie-promise@2.0.1:
+ resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie: 2.0.4
dev: false
- /popper.js/1.16.1-lts:
- resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
+ /pinkie@2.0.4:
+ resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
+ engines: {node: '>=0.10.0'}
dev: false
- /posix-character-classes/0.1.1:
+ /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: 3.0.0
+
+ /posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
- dev: false
- /postcss-calc/8.2.4_postcss@8.4.14:
+ /postcss-calc@8.2.4(postcss@8.4.23):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.1_postcss@8.4.14:
+ /postcss-colormin@5.3.1(postcss@8.4.23):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -3662,70 +4960,82 @@ packages:
browserslist: 4.21.5
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.3_postcss@8.4.14:
+ /postcss-convert-values@5.1.3(postcss@8.4.23):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.2_postcss@8.4.14:
+ /postcss-discard-comments@5.1.2(postcss@8.4.23):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-discard-duplicates/5.1.0_postcss@8.4.14:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-discard-empty/5.1.1_postcss@8.4.14:
+ /postcss-discard-empty@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-discard-overridden/5.1.0_postcss@8.4.14:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
+ dev: true
+
+ /postcss-import@15.1.0(postcss@8.4.23):
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.23
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.2
dev: true
- /postcss-js/4.0.1_postcss@8.4.14:
+ /postcss-js@4.0.1(postcss@8.4.23):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-load-config/3.1.4_postcss@8.4.14:
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
+ /postcss-load-config@4.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
ts-node: '>=9.0.0'
@@ -3736,22 +5046,22 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.14
- yaml: 1.10.2
+ postcss: 8.4.23
+ yaml: 2.2.2
dev: true
- /postcss-merge-longhand/5.1.7_postcss@8.4.14:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.23):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.14
+ stylehacks: 5.1.1(postcss@8.4.23)
dev: true
- /postcss-merge-rules/5.1.4_postcss@8.4.14:
+ /postcss-merge-rules@5.1.4(postcss@8.4.23):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -3759,168 +5069,168 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.14
- postcss: 8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
dev: true
- /postcss-minify-font-values/5.1.0_postcss@8.4.14:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients/5.1.1_postcss@8.4.14:
+ /postcss-minify-gradients@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.14
- postcss: 8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.1.4_postcss@8.4.14:
+ /postcss-minify-params@5.1.4(postcss@8.4.23):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.14
- postcss: 8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-selectors/5.2.1_postcss@8.4.14:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.23):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
dev: true
- /postcss-nested/5.0.6_postcss@8.4.14:
- resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
+ /postcss-nested@6.0.1(postcss@8.4.23):
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
dev: true
- /postcss-normalize-charset/5.1.0_postcss@8.4.14:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-normalize-display-values/5.1.0_postcss@8.4.14:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.1.1_postcss@8.4.14:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.14:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string/5.1.0_postcss@8.4.14:
+ /postcss-normalize-string@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14:
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.1.1_postcss@8.4.14:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url/5.1.0_postcss@8.4.14:
+ /postcss-normalize-url@5.1.0(postcss@8.4.23):
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.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.14:
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.1.3_postcss@8.4.14:
+ /postcss-ordered-values@5.1.3(postcss@8.4.23):
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.14
- postcss: 8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.23)
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.1.2_postcss@8.4.14:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.23):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -3928,20 +5238,20 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- postcss: 8.4.14
+ postcss: 8.4.23
dev: true
- /postcss-reduce-transforms/5.1.0_postcss@8.4.14:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
dev: true
- /postcss-selector-parser/6.0.12:
+ /postcss-selector-parser@6.0.12:
resolution: {integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==}
engines: {node: '>=4'}
dependencies:
@@ -3949,90 +5259,234 @@ packages:
util-deprecate: 1.0.2
dev: true
- /postcss-svgo/5.1.0_postcss@8.4.14:
+ /postcss-svgo@5.1.0(postcss@8.4.23):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: true
- /postcss-unique-selectors/5.1.1_postcss@8.4.14:
+ /postcss-unique-selectors@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
dev: true
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.14:
+ /postcss@8.4.14:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: true
+ dev: false
- /postcss/8.4.5:
- resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==}
+ /postcss@8.4.23:
+ resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: false
+ dev: true
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
dev: true
- /prettier-linter-helpers/1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
+ /prepend-http@1.0.4:
+ resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /prepend-http@2.0.0:
+ resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /prettier-plugin-tailwindcss@0.2.8(prettier@2.8.8):
+ resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
+ engines: {node: '>=12.17.0'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@shufo/prettier-plugin-blade': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: '>=2.2.0'
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@shufo/prettier-plugin-blade':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
dependencies:
- fast-diff: 1.2.0
+ prettier: 2.8.8
+ dev: true
+
+ /prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
dev: true
- /process/0.11.10:
+ /process-nextick-args@2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+
+ /process@0.11.10:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- dev: false
- /prop-types/15.8.1:
+ /promise-inflight@1.0.1(bluebird@3.7.2):
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dependencies:
+ bluebird: 3.7.2
+
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
+ dev: false
- /property-information/6.2.0:
+ /property-information@6.2.0:
resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
dev: false
- /punycode/2.3.0:
+ /proto-list@1.2.4:
+ resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
+ dev: false
+
+ /prr@1.0.1:
+ resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
+
+ /pseudomap@1.0.2:
+ resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
+ dev: false
+
+ /public-encrypt@4.0.3:
+ resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
+ dependencies:
+ bn.js: 4.12.0
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ parse-asn1: 5.1.6
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+
+ /pump@2.0.1:
+ resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+
+ /pump@3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+
+ /pumpify@1.5.1:
+ resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+
+ /punycode@1.3.2:
+ resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
+
+ /punycode@1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- /queue-microtask/1.2.3:
+ /query-string@5.1.1:
+ resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ decode-uri-component: 0.2.2
+ object-assign: 4.1.1
+ strict-uri-encode: 1.1.0
+ dev: false
+
+ /querystring-es3@0.2.1:
+ resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
+ engines: {node: '>=0.4.x'}
+
+ /querystring@0.2.0:
+ resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
+ engines: {node: '>=0.4.x'}
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+
+ /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
+
+ /randomfill@1.0.4:
+ resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
- /raw-loader/2.0.0:
+ /raw-loader@2.0.0(webpack@4.46.0):
resolution: {integrity: sha512-kZnO5MoIyrojfrPWqrhFNLZemIAX8edMOCp++yC5RKxzFB3m92DqKNhKlU6+FvpOhWtvyh3jOaD7J6/9tpdIKg==}
engines: {node: '>= 6.9.0'}
peerDependencies:
@@ -4040,9 +5494,10 @@ packages:
dependencies:
loader-utils: 1.4.2
schema-utils: 1.0.0
+ webpack: 4.46.0
dev: false
- /raw-loader/4.0.2:
+ /raw-loader@4.0.2(webpack@4.46.0):
resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -4050,31 +5505,32 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.2
+ webpack: 4.46.0
dev: true
- /react-dom/17.0.2_react@17.0.2:
- resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
+ /react-dom@18.2.0(react@18.2.0):
+ resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
- react: 17.0.2
+ react: ^18.2.0
dependencies:
loose-envify: 1.4.0
- object-assign: 4.1.1
- react: 17.0.2
- scheduler: 0.20.2
+ react: 18.2.0
+ scheduler: 0.23.0
dev: false
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ dev: false
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: false
- /react-is/18.2.0:
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: false
- /react-markdown/8.0.3_a0c521d4794c7ad97f5f4c1c4a7d5818:
+ /react-markdown@8.0.3(@types/react@17.0.39)(react@18.2.0):
resolution: {integrity: sha512-We36SfqaKoVNpN1QqsZwWSv/OZt5J15LNgTLWynwAN5b265hrQrsjMtlRNwUvS+YyR3yDM8HpTNc4pK9H/Gc0A==}
peerDependencies:
'@types/react': '>=16'
@@ -4088,7 +5544,7 @@ packages:
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
property-information: 6.2.0
- react: 17.0.2
+ react: 18.2.0
react-is: 18.2.0
remark-parse: 10.0.1
remark-rehype: 10.1.0
@@ -4101,7 +5557,7 @@ packages:
- supports-color
dev: false
- /react-transition-group/4.4.5_react-dom@17.0.2+react@17.0.2:
+ /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
@@ -4111,51 +5567,92 @@ packages:
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
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /react/17.0.2:
- resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
+ /react@18.2.0:
+ resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
- object-assign: 4.1.1
dev: false
- /readdirp/3.6.0:
+ /read-cache@1.0.0:
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
+ dependencies:
+ pify: 2.3.0
+ dev: true
+
+ /readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+ 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
+
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+
+ /readable-web-to-node-stream@3.0.2:
+ resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==}
+ engines: {node: '>=8'}
+ dependencies:
+ readable-stream: 3.6.2
+ dev: true
+
+ /readdirp@2.2.1:
+ resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10
+ readable-stream: 2.3.8
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- dev: true
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ dev: false
- /regex-not/1.0.2:
+ /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: false
-
- /regexp.prototype.flags/1.5.0:
- resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- functions-have-names: 1.2.3
- dev: true
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
dev: true
- /remark-parse/10.0.1:
+ /remark-mdx@2.3.0:
+ resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
+ dependencies:
+ mdast-util-mdx: 2.0.1
+ micromark-extension-mdxjs: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /remark-parse@10.0.1:
resolution: {integrity: sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==}
dependencies:
'@types/mdast': 3.0.11
@@ -4165,7 +5662,7 @@ packages:
- supports-color
dev: false
- /remark-rehype/10.1.0:
+ /remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
'@types/hast': 2.3.4
@@ -4174,132 +5671,169 @@ packages:
unified: 10.1.2
dev: false
- /repeat-element/1.1.4:
+ /remove-trailing-separator@1.1.0:
+ resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
+ optional: true
+
+ /repeat-element@1.1.4:
resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /repeat-string/1.6.1:
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- dev: false
- /replace-ext/1.0.1:
+ /replace-ext@1.0.1:
resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==}
engines: {node: '>= 0.10'}
dev: false
- /resolve-from/4.0.0:
+ /replace-ext@2.0.0:
+ resolution: {integrity: sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==}
+ engines: {node: '>= 10'}
+ dev: true
+
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- dev: true
- /resolve-url/0.2.1:
+ /resolve-url@0.2.1:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- dev: false
- /resolve/1.22.2:
+ /resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
is-core-module: 2.12.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- dev: true
- /resolve/2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
- hasBin: true
+ /responselike@1.0.2:
+ resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
dependencies:
- is-core-module: 2.12.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
+ lowercase-keys: 1.0.1
+ dev: false
- /ret/0.1.15:
+ /ret@0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
- dev: false
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
- /rimraf/3.0.2:
+ /rimraf@2.7.1:
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
dev: true
- /run-parallel/1.2.0:
+ /ripemd160@2.0.2:
+ resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
dev: true
- /sade/1.8.1:
+ /run-queue@1.0.3:
+ resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==}
+ dependencies:
+ aproba: 1.2.0
+
+ /sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
dependencies:
mri: 1.2.0
dev: false
- /safe-regex-test/1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-regex: 1.1.4
- dev: true
+ /safe-buffer@5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-regex/1.1.0:
+ /safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+
+ /safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
- dev: false
- /scheduler/0.20.2:
- resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
+ /safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+ /scheduler@0.23.0:
+ resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- object-assign: 4.1.1
dev: false
- /schema-utils/1.0.0:
+ /schema-utils@1.0.0:
resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
engines: {node: '>= 4'}
dependencies:
ajv: 6.12.6
- ajv-errors: 1.0.1_ajv@6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- dev: false
+ ajv-errors: 1.0.1(ajv@6.12.6)
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/3.1.2:
+ /schema-utils@3.1.2:
resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==}
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
+ ajv-keywords: 3.5.2(ajv@6.12.6)
+
+ /section-matter@1.0.0:
+ resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
+ engines: {node: '>=4'}
+ dependencies:
+ extend-shallow: 2.0.1
+ kind-of: 6.0.3
+ dev: false
- /semver/6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ /seek-bzip@1.0.6:
+ resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
hasBin: true
- dev: true
+ dependencies:
+ commander: 2.20.3
+ dev: false
- /semver/7.5.0:
- resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
- engines: {node: '>=10'}
+ /semver-regex@2.0.0:
+ resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /semver-truncate@1.1.2:
+ resolution: {integrity: sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ semver: 5.7.1
+ dev: false
+
+ /semver@5.7.1:
+ resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
+
+ /serialize-javascript@4.0.0:
+ resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
- lru-cache: 6.0.0
- dev: true
+ randombytes: 2.1.0
- /set-value/2.0.1:
+ /set-value@2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4307,77 +5841,120 @@ packages:
is-extendable: 0.1.1
is-plain-object: 2.0.4
split-string: 3.1.0
- dev: false
- /shallowequal/1.1.0:
+ /setimmediate@1.0.5:
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+
+ /sha.js@2.4.11:
+ resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
+ hasBin: true
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
dev: false
- /shebang-command/2.0.0:
+ /shebang-command@1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ 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
- dev: true
- /shebang-regex/3.0.0:
+ /shebang-regex@1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /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.2.0
- object-inspect: 1.12.3
- dev: true
+ /signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ dev: false
- /slash/1.0.0:
+ /slash@1.0.0:
resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
engines: {node: '>=0.10.0'}
dev: false
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
dev: true
- /snapdragon-node/2.1.1:
+ /slash@4.0.0:
+ resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /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: false
- /snapdragon-util/3.0.1:
+ /snapdragon-util@3.0.1:
resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+
+ /snapdragon@0.8.2:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ 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
+ transitivePeerDependencies:
+ - supports-color
+
+ /sort-keys-length@1.0.1:
+ resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ sort-keys: 1.1.2
+ dev: false
+
+ /sort-keys@1.1.2:
+ resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-obj: 1.1.0
dev: false
- /snapdragon/0.8.2:
- resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
- engines: {node: '>=0.10.0'}
+ /sort-keys@2.0.0:
+ resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
+ engines: {node: '>=4'}
dependencies:
- 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
+ is-plain-obj: 1.1.0
dev: false
- /source-map-js/1.0.2:
+ /source-list-map@2.0.1:
+ resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
+
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-resolve/0.5.3:
+ /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:
@@ -4386,116 +5963,173 @@ packages:
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
- dev: false
- /source-map-url/0.4.1:
+ /source-map-support@0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+
+ /source-map-url@0.4.1:
resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
deprecated: See https://github.com/lydell/source-map-url#deprecated
- dev: false
- /source-map/0.5.7:
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- dev: true
- /space-separated-tokens/2.0.2:
+ /source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+ dev: false
+
+ /space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
dev: false
- /split-string/3.1.0:
+ /split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 3.0.2
+
+ /sprintf-js@1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: false
- /stable/0.1.8:
+ /ssri@6.0.2:
+ resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==}
+ dependencies:
+ figgy-pudding: 3.5.2
+
+ /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:
+ /static-extend@0.1.2:
resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
engines: {node: '>=0.10.0'}
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
- dev: false
- /stop-iteration-iterator/1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
+ /stream-browserify@2.0.2:
+ resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
dependencies:
- internal-slot: 1.0.5
- dev: true
+ inherits: 2.0.4
+ readable-stream: 2.3.8
- /string.prototype.matchall/4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
+ /stream-each@1.2.3:
+ resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
- dev: true
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.1
- /string.prototype.trim/1.2.7:
- resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
- engines: {node: '>= 0.4'}
+ /stream-http@2.8.3:
+ resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
+
+ /stream-shift@1.0.1:
+ resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
+
+ /streamsearch@1.1.0:
+ resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
+ engines: {node: '>=10.0.0'}
+ dev: false
+
+ /strict-uri-encode@1.1.0:
+ resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- /string.prototype.trimend/1.0.6:
- resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
+ /string_decoder@1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
+ safe-buffer: 5.1.2
- /string.prototype.trimstart/1.0.6:
- resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
+ /string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
+ safe-buffer: 5.2.1
+
+ /stringify-entities@4.0.3:
+ resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
+ dependencies:
+ character-entities-html4: 2.1.0
+ character-entities-legacy: 3.0.0
+ dev: false
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
dev: true
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
+ /strip-bom-string@1.0.0:
+ resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /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: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
+ 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:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: true
- /style-to-object/0.3.0:
+ /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
+
+ /strtok3@6.3.0:
+ resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@tokenizer/token': 0.3.0
+ peek-readable: 4.1.0
+ dev: true
+
+ /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.5_react-dom@17.0.2+react@17.0.2:
+ /style-to-object@0.4.1:
+ resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==}
+ dependencies:
+ inline-style-parser: 0.1.1
+ dev: false
+
+ /styled-components@5.3.5(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==}
engines: {node: '>=10'}
requiresBuild: true
@@ -4505,21 +6139,22 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.21.4
- '@babel/traverse': 7.21.5_supports-color@5.5.0
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.0
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.1_styled-components@5.3.5
+ babel-plugin-styled-components: 2.1.1(styled-components@5.3.5)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-is: 18.2.0
shallowequal: 1.1.0
supports-color: 5.5.0
dev: false
- /styled-jsx/5.0.2_react@17.0.2:
- resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==}
+ /styled-jsx@5.1.1(react@18.2.0):
+ resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
@@ -4531,40 +6166,57 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- react: 17.0.2
+ client-only: 0.0.1
+ react: 18.2.0
dev: false
- /stylehacks/5.1.1_postcss@8.4.14:
+ /stylehacks@5.1.1(postcss@8.4.23):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- postcss: 8.4.14
+ postcss: 8.4.23
postcss-selector-parser: 6.0.12
dev: true
- /supports-color/5.5.0:
+ /stylis@4.1.4:
+ resolution: {integrity: sha512-USf5pszRYwuE6hg9by0OkKChkQYEXfkeTtm0xKw+jqQhwyjCVLdYyMBK7R+n7dhzsblAWJnGxju4vxq5eH20GQ==}
+ dev: false
+
+ /sucrase@3.32.0:
+ resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.3
+ commander: 4.1.1
+ glob: 7.1.6
+ lines-and-columns: 1.2.4
+ mz: 2.7.0
+ pirates: 4.0.5
+ ts-interface-checker: 0.1.13
+ dev: true
+
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- dev: false
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- dev: true
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -4578,77 +6230,169 @@ packages:
stable: 0.1.8
dev: true
- /tailwindcss/3.0.24:
- resolution: {integrity: sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==}
- engines: {node: '>=12.13.0'}
+ /tailwindcss@3.3.2:
+ resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
+ engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
+ '@alloc/quick-lru': 5.2.0
arg: 5.0.2
chokidar: 3.5.3
- color-name: 1.1.4
- detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.12
glob-parent: 6.0.2
is-glob: 4.0.3
+ jiti: 1.18.2
lilconfig: 2.1.0
+ micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.14
- postcss-js: 4.0.1_postcss@8.4.14
- postcss-load-config: 3.1.4_postcss@8.4.14
- postcss-nested: 5.0.6_postcss@8.4.14
+ postcss: 8.4.23
+ postcss-import: 15.1.0(postcss@8.4.23)
+ postcss-js: 4.0.1(postcss@8.4.23)
+ postcss-load-config: 4.0.1(postcss@8.4.23)
+ postcss-nested: 6.0.1(postcss@8.4.23)
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
- quick-lru: 5.1.1
resolve: 1.22.2
+ sucrase: 3.32.0
transitivePeerDependencies:
- ts-node
dev: true
- /tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ /tapable@1.1.3:
+ resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
- dev: true
- /text-table/0.2.0:
+ /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.8
+ to-buffer: 1.1.1
+ xtend: 4.0.2
+ dev: false
+
+ /temp-dir@1.0.0:
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /tempfile@2.0.0:
+ resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==}
+ engines: {node: '>=4'}
+ dependencies:
+ temp-dir: 1.0.0
+ uuid: 3.4.0
+ dev: false
+
+ /terser-webpack-plugin@1.4.5(webpack@4.46.0):
+ resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
+ engines: {node: '>= 6.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ cacache: 12.0.4
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 4.0.0
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.46.0
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
+
+ /terser@4.8.1:
+ resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ acorn: 8.8.2
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
- /tiny-warning/1.0.3:
+ /thenify-all@1.6.0:
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
+ dependencies:
+ thenify: 3.3.1
+ dev: true
+
+ /thenify@3.3.1:
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
+ dependencies:
+ any-promise: 1.3.0
+ dev: true
+
+ /through2@2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ dependencies:
+ readable-stream: 2.3.8
+ xtend: 4.0.2
+
+ /through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: false
+
+ /timed-out@4.0.1:
+ resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /timers-browserify@2.0.12:
+ resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ setimmediate: 1.0.5
+
+ /tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /to-fast-properties/2.0.0:
+ /to-arraybuffer@1.0.1:
+ resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
+
+ /to-buffer@1.1.1:
+ resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==}
+ dev: false
+
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
dev: false
- /to-object-path/0.3.0:
+ /to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
- dev: false
- /to-regex-range/2.1.1:
+ /to-regex-range@2.1.1:
resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
repeat-string: 1.6.1
- dev: false
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- dev: true
- /to-regex/3.0.2:
+ /to-regex@3.0.2:
resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4656,75 +6400,76 @@ packages:
extend-shallow: 3.0.2
regex-not: 1.0.2
safe-regex: 1.1.0
- dev: false
- /trim-lines/3.0.1:
+ /token-types@4.2.1:
+ resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@tokenizer/token': 0.3.0
+ ieee754: 1.2.1
+ dev: true
+
+ /trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
dev: false
- /trough/2.1.0:
+ /trim-repeated@1.0.0:
+ resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: false
+
+ /trough@2.1.0:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
- /tsconfig-paths/3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
+ /ts-interface-checker@0.1.13:
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: true
- /tslib/1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- dev: true
+ /tslib@2.5.0:
+ resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
+ dev: false
- /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'
+ /tty-browserify@0.0.0:
+ resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=}
+
+ /tunnel-agent@0.6.0:
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
- tslib: 1.14.1
- typescript: 4.7.3
- dev: true
+ safe-buffer: 5.2.1
+ dev: false
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
dev: true
- /typed-array-length/1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- dependencies:
- call-bind: 1.0.2
- for-each: 0.3.3
- is-typed-array: 1.1.10
- dev: true
+ /typedarray@0.0.6:
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- /typescript/4.7.3:
+ /typescript@4.7.3:
resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /unbox-primitive/1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ /unbzip2-stream@1.4.3:
+ resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
dependencies:
- call-bind: 1.0.2
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
- dev: true
+ buffer: 5.7.1
+ through: 2.3.8
+ dev: false
- /unified/10.1.2:
+ /unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
'@types/unist': 2.0.6
@@ -4736,7 +6481,7 @@ packages:
vfile: 5.3.7
dev: false
- /union-value/1.0.1:
+ /union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4744,38 +6489,60 @@ packages:
get-value: 2.0.6
is-extendable: 0.1.1
set-value: 2.0.1
- dev: false
- /unist-util-generated/2.0.1:
+ /unique-filename@1.1.1:
+ resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
+ dependencies:
+ unique-slug: 2.0.2
+
+ /unique-slug@2.0.2:
+ resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
+ dependencies:
+ imurmurhash: 0.1.4
+
+ /unist-util-generated@2.0.1:
resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
dev: false
- /unist-util-is/5.2.1:
+ /unist-util-is@5.2.1:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-position/4.0.4:
+ /unist-util-position-from-estree@1.1.2:
+ resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
+ dependencies:
+ '@types/unist': 2.0.6
+ dev: false
+
+ /unist-util-position@4.0.4:
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-stringify-position/3.0.3:
+ /unist-util-remove-position@4.0.2:
+ resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
+ dependencies:
+ '@types/unist': 2.0.6
+ unist-util-visit: 4.1.2
+ dev: false
+
+ /unist-util-stringify-position@3.0.3:
resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-visit-parents/5.1.3:
+ /unist-util-visit-parents@5.1.3:
resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 5.2.1
dev: false
- /unist-util-visit/4.1.2:
+ /unist-util-visit@4.1.2:
resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
'@types/unist': 2.0.6
@@ -4783,15 +6550,19 @@ packages:
unist-util-visit-parents: 5.1.3
dev: false
- /unset-value/1.0.0:
+ /unset-value@1.0.0:
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.11_browserslist@4.21.5:
+ /upath@1.2.0:
+ resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
+ engines: {node: '>=4'}
+ optional: true
+
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
@@ -4802,17 +6573,16 @@ packages:
picocolors: 1.0.0
dev: true
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
- /urix/0.1.0:
+ /urix@0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
- dev: false
- /url-loader/1.1.2:
+ /url-loader@1.1.2(webpack@4.46.0):
resolution: {integrity: sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==}
engines: {node: '>= 6.9.0'}
peerDependencies:
@@ -4821,9 +6591,10 @@ packages:
loader-utils: 1.4.2
mime: 2.6.0
schema-utils: 1.0.0
+ webpack: 4.46.0
dev: false
- /url-loader/4.1.1:
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@4.46.0):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -4833,27 +6604,67 @@ packages:
file-loader:
optional: true
dependencies:
+ file-loader: 6.2.0(webpack@4.46.0)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.2
- dev: true
+ webpack: 4.46.0
- /use/3.1.1:
- resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ /url-parse-lax@1.0.0:
+ resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ prepend-http: 1.0.4
+ dev: false
+
+ /url-parse-lax@3.0.0:
+ resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ prepend-http: 2.0.0
+ dev: false
+
+ /url-to-options@1.0.1:
+ resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==}
+ engines: {node: '>= 4'}
dev: false
- /util-deprecate/1.0.2:
+ /url@0.11.0:
+ resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
+ dependencies:
+ punycode: 1.3.2
+ querystring: 0.2.0
+
+ /use@3.1.1:
+ resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ engines: {node: '>=0.10.0'}
+
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: true
- /util/0.10.4:
+ /util@0.10.3:
+ resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==}
+ dependencies:
+ inherits: 2.0.1
+
+ /util@0.10.4:
resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
dependencies:
inherits: 2.0.3
dev: false
- /uvu/0.5.6:
+ /util@0.11.1:
+ resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==}
+ dependencies:
+ inherits: 2.0.3
+
+ /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.6:
resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
engines: {node: '>=8'}
hasBin: true
@@ -4864,18 +6675,25 @@ packages:
sade: 1.8.1
dev: false
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /vfile-message/3.1.4:
+ /vfile-location@4.1.0:
+ resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
+ dependencies:
+ '@types/unist': 2.0.6
+ vfile: 5.3.7
+ dev: false
+
+ /vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
'@types/unist': 2.0.6
unist-util-stringify-position: 3.0.3
dev: false
- /vfile/5.3.7:
+ /vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
'@types/unist': 2.0.6
@@ -4884,63 +6702,135 @@ packages:
vfile-message: 3.1.4
dev: false
- /which-boxed-primitive/1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ /vm-browserify@1.1.2:
+ resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
+
+ /watchpack-chokidar2@2.0.1:
+ resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==}
+ requiresBuild: true
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
- dev: true
+ chokidar: 2.1.8
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
- /which-collection/1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ /watchpack@1.7.5:
+ resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
dependencies:
- is-map: 2.0.2
- is-set: 2.0.2
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
- dev: true
+ graceful-fs: 4.2.11
+ neo-async: 2.6.2
+ optionalDependencies:
+ chokidar: 3.5.3
+ watchpack-chokidar2: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
- /which-typed-array/1.1.9:
- resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
- engines: {node: '>= 0.4'}
+ /webpack-sources@1.4.3:
+ resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- is-typed-array: 1.1.10
- dev: true
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+
+ /webpack@4.46.0:
+ resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==}
+ engines: {node: '>=6.11.5'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ webpack-command: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ webpack-command:
+ optional: true
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/wasm-edit': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ acorn: 6.4.2
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 4.5.0
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.4.2
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.6
+ neo-async: 2.6.2
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.5(webpack@4.46.0)
+ watchpack: 1.7.5
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ /which@1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: false
- /which/2.0.2:
+ /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:
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
dev: true
- /wrappy/1.0.2:
+ /worker-farm@1.7.0:
+ resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
+ dependencies:
+ errno: 0.1.8
+
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- dev: true
- /yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: true
+ /y18n@4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+
+ /yallist@2.1.2:
+ resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
+ dev: false
+
+ /yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
+
+ /yaml@2.2.2:
+ resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==}
+ engines: {node: '>= 14'}
dev: true
+
+ /yauzl@2.10.0:
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+ dependencies:
+ buffer-crc32: 0.2.13
+ fd-slicer: 1.1.0
+ dev: false
+
+ /zod@3.21.4:
+ resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
+ dev: false
+
+ /zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
+ dev: false
diff --git a/apps/feeds/styles/feed.css b/apps/feeds/styles/feed.css
index 144156691..13628e345 100644
--- a/apps/feeds/styles/feed.css
+++ b/apps/feeds/styles/feed.css
@@ -104,7 +104,7 @@
}
.dark .feedWrapper .markdownWrapper p {
- color: #D7D7D7;
+ color: #d7d7d7;
}
.dark .feedWrapper .markdownWrapper p em {
@@ -138,4 +138,4 @@
.feedWrapper .ampImgContainer {
height: 200px;
}
-}
\ No newline at end of file
+}
diff --git a/apps/feeds/styles/globals.css b/apps/feeds/styles/globals.css
index c20e66fc2..4f7df1b84 100644
--- a/apps/feeds/styles/globals.css
+++ b/apps/feeds/styles/globals.css
@@ -39,6 +39,11 @@ a {
box-sizing: border-box;
}
-h1, h2, h3, h4, h5, h6 {
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
font-family: Lato, Yu Gothic Medium, Segoe UI;
}
diff --git a/apps/feeds/tailwind.config.js b/apps/feeds/tailwind.config.js
index 427b8729a..504948bfa 100644
--- a/apps/feeds/tailwind.config.js
+++ b/apps/feeds/tailwind.config.js
@@ -1,4 +1,4 @@
-const colors = require("@bit/wasedatime.core.theme.colors");
+const colors = require("wasedatime-ui/colors");
module.exports = {
darkMode: "class",
diff --git a/apps/feeds/tsconfig.json b/apps/feeds/tsconfig.json
index e6bb8eb43..4e3f057a8 100644
--- a/apps/feeds/tsconfig.json
+++ b/apps/feeds/tsconfig.json
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
- "lib": [
- "dom",
- "dom.iterable",
- "esnext"
- ],
+ "lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -17,14 +13,13 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
- "incremental": true
+ "incremental": true,
+ "baseUrl": ".",
+ "plugins": [{ "name": "next" }],
+ "paths": {
+ "@/*": ["./*"]
+ }
},
- "include": [
- "next-env.d.ts",
- "**/*.ts",
- "**/*.tsx"
- ],
- "exclude": [
- "node_modules"
- ]
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
}
diff --git a/apps/feeds/typings.d.ts b/apps/feeds/typings.d.ts
index 47a895344..17c119abf 100644
--- a/apps/feeds/typings.d.ts
+++ b/apps/feeds/typings.d.ts
@@ -1,4 +1,4 @@
-declare module '!!raw-loader!*' {
+declare module "!!raw-loader!*" {
const contents: string;
export = contents;
-}
\ No newline at end of file
+}
diff --git a/apps/root/.eslintrc.js b/apps/root/.eslintrc.js
new file mode 100644
index 000000000..93f071807
--- /dev/null
+++ b/apps/root/.eslintrc.js
@@ -0,0 +1,8 @@
+module.exports = {
+ env: {
+ browser: true,
+ es2021: true,
+ es6: true,
+ },
+ extends: ["custom"],
+};
diff --git a/apps/root/.eslintrc.json b/apps/root/.eslintrc.json
deleted file mode 100644
index 4347967c3..000000000
--- a/apps/root/.eslintrc.json
+++ /dev/null
@@ -1,163 +0,0 @@
-{
- "env": {
- "browser": true,
- "es2021": true,
- "es6": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:jsx-a11y/recommended",
- "airbnb",
- "plugin:import/errors",
- "plugin:import/warnings",
- "plugin:import/typescript",
- "plugin:prettier/recommended",
- "prettier"
- ],
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module",
- "project": ["./tsconfig.json"],
- "ecmaFeatures": {
- "arrowFunctions": true,
- "jsx": true
- }
- },
- "plugins": [
- "import",
- "jsx-a11y",
- "prefer-arrow",
- "react",
- "react-hooks"
- ],
- // "ignorePatterns": [".eslintrc.js"],
- "rules": {
- "react/function-component-definition": [
- 2,
- { "namedComponents": "arrow-function" }
- ],
- "no-use-before-define": "off",
- "@typescript-eslint/no-use-before-define": ["error"],
- "react/jsx-uses-react": "error",
- "react/jsx-uses-vars": "error",
- // "@typescript-eslint/rule-name": "error",
- "operator-linebreak": [
- "error",
- "after",
- { "overrides": { "?": "ignore", ":": "ignore" } }
- ],
- "quotes": ["error", "double"],
- "newline-before-return": "error",
- "no-console": "warn",
- "no-continue": "warn",
- "require-yield": "warn",
- "spaced-comment": ["error", "always", { "markers": ["/"] }],
- "prefer-arrow/prefer-arrow-functions": [
- "error",
- {
- "disallowPrototype": true,
- "singleReturnOnly": true,
- "classPropertiesAllowed": false
- }
- ],
- "react/jsx-filename-extension": [
- "error",
- {
- "extensions": ["jsx", "tsx"]
- }
- ],
- "react/jsx-props-no-spreading": "off",
- "react/jsx-fragments": ["off", "element"],
- "react/prop-types": "off",
- "react/prefer-stateless-function": "off",
-
- "react-hooks/exhaustive-deps": "error",
-
- "import/extensions": "off",
- "import/prefer-default-export": "off",
- "import/no-extraneous-dependencies": [
- "error",
- { "devDependencies": [], "peerDependencies": true }
- ]
- },
- "overrides": [
- {
- "files": ["**\\*.{ts,tsx}"],
- "extends": [
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "sourceType": "module",
- "project": "**/tsconfig.json"
- },
- "plugins": ["@typescript-eslint"],
- "rules": {
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/explicit-member-accessibility": "off",
- "indent": "off",
- "@typescript-eslint/indent": "off",
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
- "react-hooks/exhaustive-deps": "off",
- "import/no-unresolved": "off",
- "comma-dangle": ["error", "only-multiline"],
- "@typescript-eslint/no-unsafe-assignment": "off",
- "@typescript-eslint/no-unsafe-member-access": 1,
- "@typescript-eslint/no-unsafe-return": 1,
- "@typescript-eslint/no-unused-vars": "off",
- "no-unused-vars": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-namespace": "off",
- "react/require-default-props": "off",
- "import/order": [
- "error",
- {
- "pathGroups": [
- {
- "pattern": "react",
- "group": "builtin",
- "position": "before"
- },
- {
- "pattern": "@app/**",
- "group": "type",
- "position": "after"
- }
- ],
- "alphabetize": {
- "order": "asc",
- "caseInsensitive": true
- },
- "pathGroupsExcludedImportTypes": ["builtin", "react"],
- "newlines-between": "always"
- }
- ]
- }
- },
- {
- "files": ["**\\*.js"],
- "rules": {
- "camelcase": ["error", { "allow": ["sc_pageName", "sc_c2", "sc_c27"] }],
- "func-names": ["error", "never"]
- }
- }
- ],
- "settings": {
- "import/extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "import/parsers": {
- "@typescript-eslint/parser": [".ts", ".d.ts", ".tsx"]
- },
- "import/resolver": {
- "node": {
- "extensions": [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
- "paths": ["src", "node_modules"]
- }
- },
- "react": {
- "version": "detect"
- }
- }
-}
diff --git a/apps/root/.prettierrc.js b/apps/root/.prettierrc.js
index 54058aad8..8c55273ee 100644
--- a/apps/root/.prettierrc.js
+++ b/apps/root/.prettierrc.js
@@ -1,17 +1,7 @@
module.exports = {
- printWidth: 80,
+ plugins: [require("prettier-plugin-tailwindcss")],
+ trailingComma: "es5",
tabWidth: 2,
- useTabs: false,
- semi: true,
- htmlWhitespaceSensitivity: "css",
- endOfLine: "lf",
-
- overrides: [
- {
- files: ["*.html", "*ejs"],
- options: {
- printWidth: 200,
- },
- },
- ],
+ semi: false,
+ singleQuote: false,
};
diff --git a/apps/root/package.json b/apps/root/package.json
index b3e306e1c..4f9028421 100644
--- a/apps/root/package.json
+++ b/apps/root/package.json
@@ -12,7 +12,8 @@
"preview-dev": "vite preview --port 9000",
"tsc": "tsc",
"fix": "pnpm run format && pnpm run lint:fix",
- "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" && prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
+ "lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"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"
},
@@ -28,8 +29,6 @@
"@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",
@@ -37,26 +36,18 @@
"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.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.30.0",
- "eslint-plugin-react-hooks": "4.5.0",
+ "eslint-config-custom": "workspace:*",
"i18next": "21.8.9",
"postcss": "8.4.14",
"prettier": "2.6.2",
- "prettier-eslint": "15.0.1",
+ "prettier-plugin-tailwindcss": "^0.2.8",
"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": "4.3.5",
"vite-plugin-dynamic-import": "0.9.6",
"vite-plugin-ejs": "1.4.4",
"vite-plugin-html": "3.2.0",
@@ -67,19 +58,6 @@
"dependencies": {
"@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.21",
- "@bit/wasedatime.core.ts.ui.language-menu": "0.1.2",
- "@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": "6.1.1",
@@ -110,6 +88,7 @@
"single-spa-layout": "2.1.0",
"single-spa-react": "4.6.1",
"styled-components": "5.3.5",
+ "wasedatime-ui": "*",
"workbox-cacheable-response": "6.5.3",
"workbox-core": "6.5.3",
"workbox-expiration": "6.5.3",
diff --git a/apps/root/pnpm-lock.yaml b/apps/root/pnpm-lock.yaml
index de9c41b66..996fa4028 100644
--- a/apps/root/pnpm-lock.yaml
+++ b/apps/root/pnpm-lock.yaml
@@ -1,216 +1,245 @@
-lockfileVersion: 5.3
-
-specifiers:
- '@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.21
- '@bit/wasedatime.core.ts.ui.language-menu': 0.1.2
- '@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': 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.25
- '@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
- 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.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.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
- postcss: 8.4.14
- prettier: 2.6.2
- prettier-eslint: 15.0.1
- prop-types: 15.8.1
- react: 17.0.2
- react-dom: 17.0.2
- react-error-boundary: 3.1.4
- react-ga: 3.3.0
- react-helmet: 6.1.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.4
- single-spa-layout: 2.1.0
- single-spa-react: 4.6.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
+lockfileVersion: '6.0'
dependencies:
- '@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': 0.0.4
- '@bit/wasedatime.core.ts.constants.langs': 0.0.5_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.styles.overlay': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@bit/wasedatime.core.ts.styles.wrapper': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@bit/wasedatime.core.ts.ui.header': 0.2.21_a6a614d057c08015d57b9942d6d0f07b
- '@bit/wasedatime.core.ts.ui.language-menu': 0.1.2_a6a614d057c08015d57b9942d6d0f07b
- '@bit/wasedatime.core.ts.ui.loading-spinner': 0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@bit/wasedatime.core.ts.ui.logo': 0.1.2_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.ui.modal': 0.0.8_react-dom@17.0.2
- '@bit/wasedatime.core.ts.ui.sign-in-modal': 0.1.6_44372ad526450f77d720d3fe51751afb
- '@bit/wasedatime.core.ts.utils.i18n': 0.0.4_9724892b3df2999a6ee0ebb64e8fe4b0
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@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.25
- daisyui: 2.15.2_a191cbaa25c4a0a9f05cc78eac153be7
- history: 5.3.0
- 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_prop-types@15.8.1+react@17.0.2
- react-helmet: 6.1.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.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
+ '@aws-amplify/auth':
+ specifier: 4.5.6
+ version: 4.5.6(react-native@0.68.2)
+ '@aws-amplify/core':
+ specifier: 4.5.6
+ version: 4.5.6(react-native@0.68.2)
+ '@emotion/react':
+ specifier: 11.9.0
+ version: 11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2)
+ '@emotion/styled':
+ specifier: 11.8.1
+ version: 11.8.1(@babel/core@7.18.2)(@emotion/react@11.9.0)(@types/react@18.0.12)(react@17.0.2)
+ '@fortawesome/fontawesome-svg-core':
+ specifier: 6.1.1
+ version: 6.1.1
+ '@fortawesome/free-brands-svg-icons':
+ specifier: 6.1.1
+ version: 6.1.1
+ '@fortawesome/free-solid-svg-icons':
+ specifier: 6.1.1
+ version: 6.1.1
+ '@fortawesome/react-fontawesome':
+ specifier: 0.1.18
+ version: 0.1.18(@fortawesome/fontawesome-svg-core@6.1.1)(react@17.0.2)
+ '@mui/icons-material':
+ specifier: 5.8.3
+ version: 5.8.3(@mui/material@5.8.3)(@types/react@18.0.12)(react@17.0.2)
+ '@mui/material':
+ specifier: 5.8.3
+ version: 5.8.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@18.0.12)(react-dom@17.0.2)(react@17.0.2)
+ '@types/react':
+ specifier: 18.0.12
+ version: 18.0.12
+ '@types/react-dom':
+ specifier: 18.0.5
+ version: 18.0.5
+ '@types/react-router-dom':
+ specifier: 5.3.3
+ version: 5.3.3
+ '@types/styled-components':
+ specifier: 5.1.25
+ version: 5.1.25
+ daisyui:
+ specifier: 2.15.2
+ version: 2.15.2(autoprefixer@10.4.7)(postcss@8.4.14)
+ eslint-plugin-react-hooks:
+ specifier: 4.5.0
+ version: 4.5.0(eslint@8.17.0)
+ history:
+ specifier: 5.3.0
+ version: 5.3.0
+ i18next:
+ specifier: 21.8.9
+ version: 21.8.9
+ localforage:
+ specifier: 1.10.0
+ version: 1.10.0
+ lodash:
+ specifier: 4.17.21
+ version: 4.17.21
+ react:
+ specifier: 17.0.2
+ version: 17.0.2
+ react-dom:
+ specifier: 17.0.2
+ version: 17.0.2(react@17.0.2)
+ react-error-boundary:
+ specifier: 3.1.4
+ version: 3.1.4(react@17.0.2)
+ react-ga:
+ specifier: 3.3.0
+ version: 3.3.0(prop-types@15.8.1)(react@17.0.2)
+ react-helmet:
+ specifier: 6.1.0
+ version: 6.1.0(react@17.0.2)
+ react-i18next:
+ specifier: 11.17.0
+ version: 11.17.0(i18next@21.8.9)(react-dom@17.0.2)(react-native@0.68.2)(react@17.0.2)
+ react-responsive:
+ specifier: 9.0.0-beta.10
+ version: 9.0.0-beta.10(react@17.0.2)
+ react-router-dom:
+ specifier: 6.3.0
+ version: 6.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-vertical-timeline-component:
+ specifier: 3.5.2
+ version: 3.5.2(react@17.0.2)
+ single-spa:
+ specifier: 5.9.4
+ version: 5.9.4
+ single-spa-layout:
+ specifier: 2.1.0
+ version: 2.1.0
+ single-spa-react:
+ specifier: 4.6.1
+ version: 4.6.1(@types/react-dom@18.0.5)(@types/react@18.0.12)(react@17.0.2)
+ styled-components:
+ specifier: 5.3.5
+ version: 5.3.5(react-dom@17.0.2)(react-is@18.1.0)(react@17.0.2)
+ wasedatime-ui:
+ specifier: '*'
+ version: link:../../packages/ui
+ workbox-cacheable-response:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-core:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-expiration:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-precaching:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-routing:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-strategies:
+ specifier: 6.5.3
+ version: 6.5.3
+ workbox-window:
+ specifier: 6.5.3
+ version: 6.5.3
devDependencies:
- '@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
+ '@babel/core':
+ specifier: 7.18.2
+ version: 7.18.2
+ '@babel/eslint-parser':
+ specifier: 7.18.2
+ version: 7.18.2(@babel/core@7.18.2)(eslint@8.17.0)
+ '@babel/plugin-syntax-flow':
+ specifier: 7.17.12
+ version: 7.17.12(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-jsx':
+ specifier: 7.17.12
+ version: 7.17.12(@babel/core@7.18.2)
+ '@babel/plugin-transform-runtime':
+ specifier: 7.18.2
+ version: 7.18.2(@babel/core@7.18.2)
+ '@babel/preset-env':
+ specifier: 7.18.2
+ version: 7.18.2(@babel/core@7.18.2)
+ '@babel/preset-typescript':
+ specifier: 7.17.12
+ version: 7.17.12(@babel/core@7.18.2)
+ '@babel/runtime':
+ specifier: 7.18.3
+ version: 7.18.3
+ '@types/node':
+ specifier: 17.0.41
+ version: 17.0.41
+ '@vitejs/plugin-react':
+ specifier: 1.3.2
+ version: 1.3.2
+ autoprefixer:
+ specifier: 10.4.7
+ version: 10.4.7(postcss@8.4.14)
+ babel-plugin-styled-components:
+ specifier: 2.0.7
+ version: 2.0.7(styled-components@5.3.5)
+ concurrently:
+ specifier: 7.2.1
+ version: 7.2.1
+ cssnano:
+ specifier: 5.1.11
+ version: 5.1.11(postcss@8.4.14)
+ dotenv:
+ specifier: 16.0.1
+ version: 16.0.1
+ eslint:
+ specifier: 8.17.0
+ version: 8.17.0
+ eslint-config-custom:
+ specifier: workspace:*
+ version: link:../../packages/eslint-config-custom
+ postcss:
+ specifier: 8.4.14
+ version: 8.4.14
+ prettier:
+ specifier: 2.6.2
+ version: 2.6.2
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.8
+ version: 0.2.8(prettier@2.6.2)
+ prop-types:
+ specifier: 15.8.1
+ version: 15.8.1
+ react-is:
+ specifier: 18.1.0
+ version: 18.1.0
+ react-native:
+ specifier: 0.68.2
+ version: 0.68.2(@babel/core@7.18.2)(@babel/preset-env@7.18.2)(react@17.0.2)
+ tailwindcss:
+ specifier: 3.0.24
+ version: 3.0.24(postcss@8.4.14)
+ ts-config-single-spa:
+ specifier: 3.0.0
+ version: 3.0.0
+ typescript:
+ specifier: 4.7.3
+ version: 4.7.3
+ vite:
+ specifier: 4.3.5
+ version: 4.3.5(@types/node@17.0.41)
+ vite-plugin-dynamic-import:
+ specifier: 0.9.6
+ version: 0.9.6
+ vite-plugin-ejs:
+ specifier: 1.4.4
+ version: 1.4.4
+ vite-plugin-html:
+ specifier: 3.2.0
+ version: 3.2.0(vite@4.3.5)
+ vite-plugin-html-env:
+ specifier: 1.1.2
+ version: 1.1.2(vite@4.3.5)
+ vite-plugin-import-maps:
+ specifier: 0.1.2
+ version: 0.1.2(vite@4.3.5)
+ vite-plugin-pwa:
+ specifier: 0.12.0
+ version: 0.12.0(vite@4.3.5)(workbox-build@6.5.4)(workbox-window@6.5.3)
packages:
- /@adobe/css-tools/4.2.0:
+ /@adobe/css-tools@4.2.0:
resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==}
dev: true
- /@ampproject/remapping/2.2.1:
+ /@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
- dev: true
- /@apideck/better-ajv-errors/0.3.6_ajv@8.12.0:
+ /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0):
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
@@ -222,11 +251,11 @@ packages:
leven: 3.1.0
dev: true
- /@aws-amplify/auth/4.5.6_react-native@0.68.2:
+ /@aws-amplify/auth@4.5.6(react-native@0.68.2):
resolution: {integrity: sha512-G0pxqKaVouuhVK6qH0EBHG5ziNVRT7AzKSj8jN2I7klHtFJHnY/F6NEEjr/e99IgbyzspjWX5xFRBAQecgF44A==}
dependencies:
- '@aws-amplify/cache': 4.0.44_react-native@0.68.2
- '@aws-amplify/core': 4.5.6_react-native@0.68.2
+ '@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:
@@ -234,21 +263,21 @@ packages:
- react-native
dev: false
- /@aws-amplify/cache/4.0.44_react-native@0.68.2:
+ /@aws-amplify/cache@4.0.44(react-native@0.68.2):
resolution: {integrity: sha512-lfybDAXaJWzHPprPJILPcSNCfow9xkgskP5tkNdG2/dlkgTwN2aUJVkQdguO5q5zUxgM0xoS7bbVY3kvoQ2b6Q==}
dependencies:
- '@aws-amplify/core': 4.5.6_react-native@0.68.2
+ '@aws-amplify/core': 4.5.6(react-native@0.68.2)
transitivePeerDependencies:
- react-native
dev: false
- /@aws-amplify/core/4.5.6_react-native@0.68.2:
+ /@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_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/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
@@ -257,13 +286,13 @@ packages:
- react-native
dev: false
- /@aws-crypto/ie11-detection/1.0.0:
+ /@aws-crypto/ie11-detection@1.0.0:
resolution: {integrity: sha512-kCKVhCF1oDxFYgQrxXmIrS5oaWulkvRcPz+QBDMsUr2crbF4VGgGT6+uQhSwJFdUAQ2A//Vq+uT83eJrkzFgXA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-browser/1.2.2:
+ /@aws-crypto/sha256-browser@1.2.2:
resolution: {integrity: sha512-0tNR4kBtJp+9S0kis4+JLab3eg6QWuIeuPhzaYoYwNUXGBgsWIkktA2mnilet+EGWzf3n1zknJXC4X4DVyyXbg==}
dependencies:
'@aws-crypto/ie11-detection': 1.0.0
@@ -275,7 +304,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-js/1.0.0-alpha.0:
+ /@aws-crypto/sha256-js@1.0.0-alpha.0:
resolution: {integrity: sha512-GidX2lccEtHZw8mXDKJQj6tea7qh3pAnsNSp1eZNxsN4MMu2OvSraPSqiB1EihsQkZBMg0IiZPpZHoACUX/QMQ==}
dependencies:
'@aws-sdk/types': 1.0.0-rc.10
@@ -283,7 +312,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-js/1.2.2:
+ /@aws-crypto/sha256-js@1.2.2:
resolution: {integrity: sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g==}
dependencies:
'@aws-crypto/util': 1.2.2
@@ -291,13 +320,13 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-crypto/supports-web-crypto/1.0.0:
+ /@aws-crypto/supports-web-crypto@1.0.0:
resolution: {integrity: sha512-IHLfv+WmVH89EW4n6a5eE8/hUlz6qkWGMn/v4r5ZgzcXdTC5nolii2z3k46y01hWRiC2PPhOdeSLzMUCUMco7g==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-crypto/util/1.2.2:
+ /@aws-crypto/util@1.2.2:
resolution: {integrity: sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg==}
dependencies:
'@aws-sdk/types': 3.6.1
@@ -305,7 +334,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/abort-controller/3.6.1:
+ /@aws-sdk/abort-controller@3.6.1:
resolution: {integrity: sha512-X81XkxX/2Tvv9YNcEto/rcQzPIdKJHFSnl9hBl/qkSdCFV/GaQ2XNWfKm5qFXMLlZNFS0Fn5CnBJ83qnBm47vg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -313,7 +342,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/client-cloudwatch-logs/3.6.1_react-native@0.68.2:
+ /@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:
@@ -327,7 +356,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_react-native@0.68.2
+ '@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
@@ -352,7 +381,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/client-cognito-identity/3.6.1_react-native@0.68.2:
+ /@aws-sdk/client-cognito-identity@3.6.1(react-native@0.68.2):
resolution: {integrity: sha512-FMj2GR9R5oCKb3/NI16GIvWeHcE4uX42fBAaQKPbjg2gALFDx9CcJYsdOtDP37V89GtPyZilLv6GJxrwJKzYGg==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -366,7 +395,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_react-native@0.68.2
+ '@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
@@ -391,7 +420,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/config-resolver/3.6.1:
+ /@aws-sdk/config-resolver@3.6.1:
resolution: {integrity: sha512-qjP1g3jLIm+XvOIJ4J7VmZRi87vsDmTRzIFePVeG+EFWwYQLxQjTGMdIj3yKTh1WuZ0HByf47mGcpiS4HZLm1Q==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -400,11 +429,11 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-cognito-identity/3.6.1_react-native@0.68.2:
+ /@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_react-native@0.68.2
+ '@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
@@ -412,7 +441,7 @@ packages:
- react-native
dev: false
- /@aws-sdk/credential-provider-env/3.6.1:
+ /@aws-sdk/credential-provider-env@3.6.1:
resolution: {integrity: sha512-coeFf/HnhpGidcAN1i1NuFgyFB2M6DeN1zNVy4f6s4mAh96ftr9DgWM1CcE3C+cLHEdpNqleVgC/2VQpyzOBLQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -421,7 +450,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-imds/3.6.1:
+ /@aws-sdk/credential-provider-imds@3.6.1:
resolution: {integrity: sha512-bf4LMI418OYcQbyLZRAW8Q5AYM2IKrNqOnIcfrFn2f17ulG7TzoWW3WN/kMOw4TC9+y+vIlCWOv87GxU1yP0Bg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -430,7 +459,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-ini/3.6.1:
+ /@aws-sdk/credential-provider-ini@3.6.1:
resolution: {integrity: sha512-3jguW6+ttRNddRZvbrs1yb3F1jrUbqyv0UfRoHuOGthjTt+L9sDpJaJGugYnT3bS9WBu1NydLVE2kDV++mJGVw==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -440,7 +469,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-node/3.6.1:
+ /@aws-sdk/credential-provider-node@3.6.1:
resolution: {integrity: sha512-VAHOcsqkPrF1k/fA62pv9c75lUWe5bHpcbFX83C3EUPd2FXV10Lfkv6bdWhyZPQy0k8T+9/yikHH3c7ZQeFE5A==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -454,7 +483,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/credential-provider-process/3.6.1:
+ /@aws-sdk/credential-provider-process@3.6.1:
resolution: {integrity: sha512-d0/TpMoEV4qMYkdpyyjU2Otse9X2jC1DuxWajHOWZYEw8oejMvXYTZ10hNaXZvAcNM9q214rp+k4mkt6gIcI6g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -465,7 +494,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/fetch-http-handler/3.6.1:
+ /@aws-sdk/fetch-http-handler@3.6.1:
resolution: {integrity: sha512-N8l6ZbwhINuWG5hsl625lmIQmVjzsqRPmlgh061jm5D90IhsM5/3A3wUxpB/k0av1dmuMRw/m0YtBU5w4LOwvw==}
dependencies:
'@aws-sdk/protocol-http': 3.6.1
@@ -475,7 +504,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/hash-node/3.6.1:
+ /@aws-sdk/hash-node@3.6.1:
resolution: {integrity: sha512-iKEpzpyaG9PYCnaOGwTIf0lffsF/TpsXrzAfnBlfeOU/3FbgniW2z/yq5xBbtMDtLobtOYC09kUFwDnDvuveSA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -484,21 +513,21 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/invalid-dependency/3.6.1:
+ /@aws-sdk/invalid-dependency@3.6.1:
resolution: {integrity: sha512-d0RLqK7yeDCZJKopnGmGXo2rYkQNE7sGKVmBHQD1j1kKZ9lWwRoJeWqo834JNPZzY5XRvZG5SuIjJ1kFy8LpyQ==}
dependencies:
'@aws-sdk/types': 3.6.1
tslib: 1.14.1
dev: false
- /@aws-sdk/is-array-buffer/3.6.1:
+ /@aws-sdk/is-array-buffer@3.6.1:
resolution: {integrity: sha512-qm2iDJmCrxlQE2dsFG+TujPe7jw4DF+4RTrsFMhk/e3lOl3MAzQ6Fc2kXtgeUcVrZVFTL8fQvXE1ByYyI6WbCw==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-content-length/3.6.1:
+ /@aws-sdk/middleware-content-length@3.6.1:
resolution: {integrity: sha512-QRcocG9f5YjYzbjs2HjKla6ZIjvx8Y8tm1ZSFOPey81m18CLif1O7M3AtJXvxn+0zeSck9StFdhz5gfjVNYtDg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -507,7 +536,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-host-header/3.6.1:
+ /@aws-sdk/middleware-host-header@3.6.1:
resolution: {integrity: sha512-nwq8R2fGBRZQE0Fr/jiOgqfppfiTQCUoD8hyX3qSS7Qc2uqpsDOt2TnnoZl56mpQYkF/344IvMAkp+ew6wR73w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -516,7 +545,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-logger/3.6.1:
+ /@aws-sdk/middleware-logger@3.6.1:
resolution: {integrity: sha512-zxaSLpwKlja7JvK20UsDTxPqBZUo3rbDA1uv3VWwpxzOrEWSlVZYx/KLuyGWGkx9V71ZEkf6oOWWJIstS0wyQQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -524,21 +553,21 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-retry/3.6.1_react-native@0.68.2:
+ /@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.8.0_react-native@0.68.2
+ react-native-get-random-values: 1.8.0(react-native@0.68.2)
tslib: 1.14.1
uuid: 3.4.0
transitivePeerDependencies:
- react-native
dev: false
- /@aws-sdk/middleware-serde/3.6.1:
+ /@aws-sdk/middleware-serde@3.6.1:
resolution: {integrity: sha512-EdQCFZRERfP3uDuWcPNuaa2WUR3qL1WFDXafhcx+7ywQxagdYqBUWKFJlLYi6njbkOKXFM+eHBzoXGF0OV3MJA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -546,7 +575,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-signing/3.6.1:
+ /@aws-sdk/middleware-signing@3.6.1:
resolution: {integrity: sha512-1woKq+1sU3eausdl8BNdAMRZMkSYuy4mxhLsF0/qAUuLwo1eJLLUCOQp477tICawgu4O4q2OAyUHk7wMqYnQCg==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -556,14 +585,14 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-stack/3.6.1:
+ /@aws-sdk/middleware-stack@3.6.1:
resolution: {integrity: sha512-EPsIxMi8LtCt7YwTFpWGlVGYJc0q4kwFbOssY02qfqdCnyqi2y5wo089dH7OdxUooQ0D7CPsXM1zTTuzvm+9Fw==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/middleware-user-agent/3.6.1:
+ /@aws-sdk/middleware-user-agent@3.6.1:
resolution: {integrity: sha512-YvXvwllNDVvxQ30vIqLsx+P6jjnfFEQUmhlv64n98gOme6h2BqoyQDcC3yHRGctuxRZEsR7W/H1ASTKC+iabbQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -572,7 +601,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/node-config-provider/3.6.1:
+ /@aws-sdk/node-config-provider@3.6.1:
resolution: {integrity: sha512-x2Z7lm0ZhHYqMybvkaI5hDKfBkaLaXhTDfgrLl9TmBZ3QHO4fIHgeL82VZ90Paol+OS+jdq2AheLmzbSxv3HrA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -582,7 +611,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/node-http-handler/3.6.1:
+ /@aws-sdk/node-http-handler@3.6.1:
resolution: {integrity: sha512-6XSaoqbm9ZF6T4UdBCcs/Gn2XclwBotkdjj46AxO+9vRAgZDP+lH/8WwZsvfqJhhRhS0qxWrks98WGJwmaTG8g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -593,7 +622,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/property-provider/3.6.1:
+ /@aws-sdk/property-provider@3.6.1:
resolution: {integrity: sha512-2gR2DzDySXKFoj9iXLm1TZBVSvFIikEPJsbRmAZx5RBY+tp1IXWqZM6PESjaLdLg/ZtR0QhW2ZcRn0fyq2JfnQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -601,7 +630,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/protocol-http/3.6.1:
+ /@aws-sdk/protocol-http@3.6.1:
resolution: {integrity: sha512-WkQz7ncVYTLvCidDfXWouDzqxgSNPZDz3Bql+7VhZeITnzAEcr4hNMyEqMAVYBVugGmkG2W6YiUqNNs1goOcDA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -609,7 +638,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/querystring-builder/3.6.1:
+ /@aws-sdk/querystring-builder@3.6.1:
resolution: {integrity: sha512-ESe255Yl6vB1AMNqaGSQow3TBYYnpw0AFjE40q2VyiNrkbaqKmW2EzjeCy3wEmB1IfJDHy3O12ZOMUMOnjFT8g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -618,7 +647,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/querystring-parser/3.6.1:
+ /@aws-sdk/querystring-parser@3.6.1:
resolution: {integrity: sha512-hh6dhqamKrWWaDSuO2YULci0RGwJWygoy8hpCRxs/FpzzHIcbm6Cl6Jhrn5eKBzOBv+PhCcYwbfad0kIZZovcQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -626,19 +655,19 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/service-error-classification/3.6.1:
+ /@aws-sdk/service-error-classification@3.6.1:
resolution: {integrity: sha512-kZ7ZhbrN1f+vrSRkTJvXsu7BlOyZgym058nPA745+1RZ1Rtv4Ax8oknf2RvJyj/1qRUi8LBaAREjzQ3C8tmLBA==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/shared-ini-file-loader/3.6.1:
+ /@aws-sdk/shared-ini-file-loader@3.6.1:
resolution: {integrity: sha512-BnLHtsNLOoow6rPV+QVi6jnovU5g1m0YzoUG0BQYZ1ALyVlWVr0VvlUX30gMDfdYoPMp+DHvF8GXdMuGINq6kQ==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/signature-v4/3.6.1:
+ /@aws-sdk/signature-v4@3.6.1:
resolution: {integrity: sha512-EAR0qGVL4AgzodZv4t+BSuBfyOXhTNxDxom50IFI1MqidR9vI6avNZKcPHhgXbm7XVcsDGThZKbzQ2q7MZ2NTA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -649,7 +678,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/smithy-client/3.6.1:
+ /@aws-sdk/smithy-client@3.6.1:
resolution: {integrity: sha512-AVpRK4/iUxNeDdAm8UqP0ZgtgJMQeWcagTylijwelhWXyXzHUReY1sgILsWcdWnoy6gq845W7K2VBhBleni8+w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -658,17 +687,17 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/types/1.0.0-rc.10:
+ /@aws-sdk/types@1.0.0-rc.10:
resolution: {integrity: sha512-9gwhYnkTNuYZ+etCtM4T8gjpZ0SWSXbzQxY34UjSS+dt3C/UnbX0J22tMahp/9Z1yCa9pihtXrkD+nO2xn7nVQ==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/types/3.6.1:
+ /@aws-sdk/types@3.6.1:
resolution: {integrity: sha512-4Dx3eRTrUHLxhFdLJL8zdNGzVsJfAxtxPYYGmIddUkO2Gj3WA1TGjdfG4XN/ClI6e1XonCHafQX3UYO/mgnH3g==}
engines: {node: '>= 10.0.0'}
dev: false
- /@aws-sdk/url-parser-native/3.6.1:
+ /@aws-sdk/url-parser-native@3.6.1:
resolution: {integrity: sha512-3O+ktsrJoE8YQCho9L41YXO8EWILXrSeES7amUaV3mgIV5w4S3SB/r4RkmylpqRpQF7Ry8LFiAnMqH1wa4WBPA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -678,7 +707,7 @@ packages:
url: 0.11.0
dev: false
- /@aws-sdk/url-parser/3.6.1:
+ /@aws-sdk/url-parser@3.6.1:
resolution: {integrity: sha512-pWFIePDx0PMCleQRsQDWoDl17YiijOLj0ZobN39rQt+wv5PhLSZDz9PgJsqS48nZ6hqsKgipRcjiBMhn5NtFcQ==}
dependencies:
'@aws-sdk/querystring-parser': 3.6.1
@@ -686,13 +715,13 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-base64-browser/3.6.1:
+ /@aws-sdk/util-base64-browser@3.6.1:
resolution: {integrity: sha512-+DHAIgt0AFARDVC7J0Z9FkSmJhBMlkYdOPeAAgO0WaQoKj7rtsLQJ7P3v3aS1paKN5/sk5xNY7ziVB6uHtOvHA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-base64-node/3.6.1:
+ /@aws-sdk/util-base64-node@3.6.1:
resolution: {integrity: sha512-oiqzpsvtTSS92+cL3ykhGd7t3qBJKeHvrgOwUyEf1wFWHQ2DPJR+dIMy5rMFRXWLKCl3w7IddY2rJCkLYMjaqQ==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -700,20 +729,20 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-body-length-browser/3.6.1:
+ /@aws-sdk/util-body-length-browser@3.6.1:
resolution: {integrity: sha512-IdWwE3rm/CFDk2F+IwTZOFTnnNW5SB8y1lWiQ54cfc7y03hO6jmXNnpZGZ5goHhT+vf1oheNQt1J47m0pM/Irw==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-body-length-node/3.6.1:
+ /@aws-sdk/util-body-length-node@3.6.1:
resolution: {integrity: sha512-CUG3gc18bSOsqViQhB3M4AlLpAWV47RE6yWJ6rLD0J6/rSuzbwbjzxM39q0YTAVuSo/ivdbij+G9c3QCirC+QQ==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-buffer-from/3.6.1:
+ /@aws-sdk/util-buffer-from@3.6.1:
resolution: {integrity: sha512-OGUh2B5NY4h7iRabqeZ+EgsrzE1LUmNFzMyhoZv0tO4NExyfQjxIYXLQQvydeOq9DJUbCw+yrRZrj8vXNDQG+g==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -721,28 +750,28 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-hex-encoding/3.6.1:
+ /@aws-sdk/util-hex-encoding@3.6.1:
resolution: {integrity: sha512-pzsGOHtU2eGca4NJgFg94lLaeXDOg8pcS9sVt4f9LmtUGbrqRveeyBv0XlkHeZW2n0IZBssPHipVYQFlk7iaRA==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-locate-window/3.310.0:
+ /@aws-sdk/util-locate-window@3.310.0:
resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
engines: {node: '>=14.0.0'}
dependencies:
tslib: 2.5.0
dev: false
- /@aws-sdk/util-uri-escape/3.6.1:
+ /@aws-sdk/util-uri-escape@3.6.1:
resolution: {integrity: sha512-tgABiT71r0ScRJZ1pMX0xO0QPMMiISCtumph50IU5VDyZWYgeIxqkMhIcrL1lX0QbNCMgX0n6rZxGrrbjDNavA==}
engines: {node: '>= 10.0.0'}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-user-agent-browser/3.6.1:
+ /@aws-sdk/util-user-agent-browser@3.6.1:
resolution: {integrity: sha512-KhJ4VED4QpuBVPXoTjb5LqspX1xHWJTuL8hbPrKfxj+cAaRRW2CNEe7PPy2CfuHtPzP3dU3urtGTachbwNb0jg==}
dependencies:
'@aws-sdk/types': 3.6.1
@@ -750,7 +779,7 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-user-agent-node/3.6.1:
+ /@aws-sdk/util-user-agent-node@3.6.1:
resolution: {integrity: sha512-PWwL5EDRwhkXX40m5jjgttlBmLA7vDhHBen1Jcle0RPIDFRVPSE7GgvLF3y4r3SNH0WD6hxqadT50bHQynXW6w==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -759,19 +788,19 @@ packages:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-browser/1.0.0-rc.8:
+ /@aws-sdk/util-utf8-browser@1.0.0-rc.8:
resolution: {integrity: sha512-clncPMJ23rxCIkZ9LoUC8SowwZGxWyN2TwRb0XvW/Cv9EavkRgRCOrCpneGyC326lqtMKx36onnpaSRHxErUYw==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-browser/3.6.1:
+ /@aws-sdk/util-utf8-browser@3.6.1:
resolution: {integrity: sha512-gZPySY6JU5gswnw3nGOEHl3tYE7vPKvtXGYoS2NRabfDKRejFvu+4/nNW6SSpoOxk6LSXsrWB39NO51k+G4PVA==}
dependencies:
tslib: 1.14.1
dev: false
- /@aws-sdk/util-utf8-node/3.6.1:
+ /@aws-sdk/util-utf8-node@3.6.1:
resolution: {integrity: sha512-4s0vYfMUn74XLn13rUUhNsmuPMh0j1d4rF58wXtjlVUU78THxonnN8mbCLC48fI3fKDHTmDDkeEqy7+IWP9VyA==}
engines: {node: '>= 10.0.0'}
dependencies:
@@ -779,41 +808,39 @@ packages:
tslib: 1.14.1
dev: false
- /@babel/code-frame/7.21.4:
+ /@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.21.7:
+ /@babel/compat-data@7.21.7:
resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/core/7.18.2:
+ /@babel/core@7.18.2:
resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.21.4
'@babel/generator': 7.21.5
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-module-transforms': 7.21.5
'@babel/helpers': 7.21.5
'@babel/parser': 7.21.8
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
convert-source-map: 1.9.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/eslint-parser/7.18.2_@babel+core@7.18.2+eslint@8.17.0:
+ /@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:
@@ -827,7 +854,7 @@ packages:
semver: 6.3.0
dev: true
- /@babel/generator/7.21.5:
+ /@babel/generator@7.21.5:
resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -836,20 +863,19 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-builder-binary-assignment-operator-visitor/7.21.5:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-compilation-targets/7.21.5_@babel+core@7.18.2:
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -861,9 +887,8 @@ packages:
browserslist: 4.21.5
lru-cache: 5.1.1
semver: 6.3.0
- dev: true
- /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.18.2:
+ /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.18.2):
resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -881,9 +906,8 @@ packages:
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.18.2:
+ /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.18.2):
resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -893,55 +917,52 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.2
semver: 6.3.0
- dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.18.2:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.18.2):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.2
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-environment-visitor/7.21.5:
+ /@babel/helper-environment-visitor@7.21.5:
resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
'@babel/types': 7.21.5
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-member-expression-to-functions/7.21.5:
+ /@babel/helper-member-expression-to-functions@7.21.5:
resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-module-imports/7.21.4:
+ /@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- /@babel/helper-module-transforms/7.21.5:
+ /@babel/helper-module-transforms@7.21.5:
resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -951,25 +972,22 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-plugin-utils/7.21.5:
+ /@babel/helper-plugin-utils@7.21.5:
resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.2:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -982,9 +1000,8 @@ packages:
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-replace-supers/7.21.5:
+ /@babel/helper-replace-supers@7.21.5:
resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -992,69 +1009,63 @@ packages:
'@babel/helper-member-expression-to-functions': 7.21.5
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-simple-access/7.21.5:
+ /@babel/helper-simple-access@7.21.5:
resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.5
- dev: true
- /@babel/helper-split-export-declaration/7.18.6:
+ /@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.21.5
- /@babel/helper-string-parser/7.21.5:
+ /@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helpers/7.21.5:
+ /@babel/helpers@7.21.5:
resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1062,12 +1073,14 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.21.8:
+ /@babel/parser@7.21.8:
resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.21.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1075,9 +1088,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1086,10 +1098,9 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.2)
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1098,56 +1109,37 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.18.2:
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.2
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-replace-supers': 7.21.5
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.18.2
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1155,10 +1147,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.18.2:
+ /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.18.2):
resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1166,10 +1157,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.18.2)
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1177,10 +1167,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1188,10 +1177,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1199,10 +1187,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.2)
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1210,10 +1197,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1221,10 +1207,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.2)
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1232,13 +1217,12 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.18.2
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1246,10 +1230,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1258,23 +1241,21 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.2)
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1282,43 +1263,39 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2
+ '@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.18.6_@babel+core@7.18.2:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.2:
+ /@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:
@@ -1326,28 +1303,16 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
-
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.18.2:
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.2
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1355,18 +1320,16 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.2:
+ /@babel/plugin-syntax-flow@7.17.12(@babel/core@7.18.2):
resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1374,9 +1337,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-flow/7.21.4_@babel+core@7.18.2:
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.18.2):
resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1384,9 +1346,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.18.2:
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.18.2):
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1394,18 +1355,16 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.18.2:
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.18.2):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1413,63 +1372,56 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.2:
+ /@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:
@@ -1477,9 +1429,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.2:
+ /@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:
@@ -1487,9 +1438,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.18.2:
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.18.2):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1497,9 +1447,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1507,9 +1456,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1518,12 +1466,11 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.2
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1531,9 +1478,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1541,9 +1487,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1551,7 +1496,7 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-environment-visitor': 7.21.5
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -1561,9 +1506,8 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1572,9 +1516,8 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/template': 7.20.7
- dev: true
- /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.18.2:
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.18.2):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1582,20 +1525,18 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1603,9 +1544,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1614,9 +1554,8 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1624,10 +1563,9 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.2)
- /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1635,21 +1573,19 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1657,9 +1593,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1667,9 +1602,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.18.2:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.18.2):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1680,9 +1614,8 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1694,9 +1627,8 @@ packages:
'@babel/helper-simple-access': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.18.2:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.18.2):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1709,9 +1641,8 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1722,20 +1653,18 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.18.2):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1743,9 +1672,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-object-assign/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-object-assign@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-mQisZ3JfqWh2gVXvfqYCAAyRs6+7oev+myBsTwW5RnPhYXOTuCEw2oe3YgxlXMViXUS53lG8koulI7mJ+8JE+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1753,9 +1681,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1766,9 +1693,8 @@ packages:
'@babel/helper-replace-supers': 7.21.5
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.18.2:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.18.2):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1776,9 +1702,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1786,9 +1711,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1796,19 +1720,18 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.18.2
+ '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.2)
dev: true
- /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1816,9 +1739,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.18.2):
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1826,9 +1748,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-jsx@7.17.12(@babel/core@7.18.2):
resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1838,11 +1759,10 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.18.2)
'@babel/types': 7.21.5
- dev: true
- /@babel/plugin-transform-react-jsx/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1852,22 +1772,11 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.18.2)
'@babel/types': 7.21.5
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.2:
- resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.2
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
-
- /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1876,9 +1785,8 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
regenerator-transform: 0.15.1
- dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1886,9 +1794,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-runtime/7.18.2_@babel+core@7.18.2:
+ /@babel/plugin-transform-runtime@7.18.2(@babel/core@7.18.2):
resolution: {integrity: sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1897,15 +1804,14 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.18.2
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.2
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.2)
+ babel-plugin-polyfill-corejs3: 0.5.3(@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.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1913,9 +1819,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.18.2:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.18.2):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1924,9 +1829,8 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1934,9 +1838,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1944,9 +1847,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.2:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.18.2):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1954,9 +1856,8 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.18.2:
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.18.2):
resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1964,14 +1865,13 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.18.2
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.18.2:
+ /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.18.2):
resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1979,20 +1879,18 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.2:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.2):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.18.2
+ '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
- dev: true
- /@babel/preset-env/7.18.2_@babel+core@7.18.2:
+ /@babel/preset-env@7.18.2(@babel/core@7.18.2):
resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2000,85 +1898,84 @@ packages:
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.18.2
- '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.18.2
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.18.2)
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@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.20.0_@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.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.18.2
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.18.2
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.18.2
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-unicode-escapes': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.2
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.2
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@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.20.0(@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.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.2)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.18.2)
'@babel/types': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.18.2
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.2
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.2
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.2)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.18.2)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.18.2)
core-js-compat: 3.30.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/preset-flow/7.21.4_@babel+core@7.18.2:
+ /@babel/preset-flow@7.21.4(@babel/core@7.18.2):
resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2087,38 +1984,21 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.18.2
- dev: true
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.2)
- /@babel/preset-modules/0.1.5_@babel+core@7.18.2:
+ /@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.18.2
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.2
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.2)
'@babel/types': 7.21.5
esutils: 2.0.3
- dev: true
-
- /@babel/preset-react/7.18.6_@babel+core@7.18.2:
- resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.18.2
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.2
- dev: true
- /@babel/preset-typescript/7.17.12_@babel+core@7.18.2:
+ /@babel/preset-typescript@7.17.12(@babel/core@7.18.2):
resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2127,12 +2007,11 @@ packages:
'@babel/core': 7.18.2
'@babel/helper-plugin-utils': 7.21.5
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.18.2
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/register/7.21.0_@babel+core@7.18.2:
+ /@babel/register@7.21.0(@babel/core@7.18.2):
resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2144,33 +2023,23 @@ packages:
make-dir: 2.1.0
pirates: 4.0.5
source-map-support: 0.5.21
- dev: true
- /@babel/regjsgen/0.8.0:
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- dev: true
-
- /@babel/runtime-corejs3/7.21.5:
- resolution: {integrity: sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- core-js-pure: 3.30.1
- regenerator-runtime: 0.13.11
- dev: true
- /@babel/runtime/7.18.3:
+ /@babel/runtime@7.18.3:
resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/runtime/7.21.5:
+ /@babel/runtime@7.21.5:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2178,25 +2047,7 @@ packages:
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- /@babel/traverse/7.21.5:
- resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.21.5
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.21.8
- '@babel/types': 7.21.5
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/traverse/7.21.5_supports-color@5.5.0:
+ /@babel/traverse@7.21.5(supports-color@5.5.0):
resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2208,13 +2059,12 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- debug: 4.3.4_supports-color@5.5.0
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/types/7.21.5:
+ /@babel/types@7.21.5:
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2222,415 +2072,134 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@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=, tarball: wasedatime.core.assets.locales.en/-/wasedatime.core.assets.locales.en-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/babel-plugin@11.10.8:
+ resolution: {integrity: sha512-gxNky50AJL3AlkbjvTARiwAqei6/tNUxDZPSKd+3jqWVM3AmdVTTdpjHorR/an/M0VJqdsuq5oGcFH+rjtyujQ==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/runtime': 7.18.3
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/serialize': 1.1.1
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.1.4
dev: false
- /@bit/wasedatime.core.assets.locales.ja/0.0.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-q3GVnjO0kmRflqwouUeS5dFCHHU=, tarball: wasedatime.core.assets.locales.ja/-/wasedatime.core.assets.locales.ja-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/cache@11.10.8:
+ resolution: {integrity: sha512-5fyqGHi51LU95o7qQ/vD1jyvC4uCY5GcBT+UgP4LHdpO9jPDlXqhrRr9/wCKmfoAvh5G/F7aOh4MwQa+8uEqhA==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- dev: false
-
- /@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}
+ '@emotion/memoize': 0.8.0
+ '@emotion/sheet': 1.2.1
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.3.0
+ stylis: 4.1.4
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}
+ /@emotion/hash@0.9.0:
+ resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
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
+ /@emotion/is-prop-valid@1.2.0:
+ resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
+ dependencies:
+ '@emotion/memoize': 0.8.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
+ /@emotion/memoize@0.8.0:
+ resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
- /@bit/wasedatime.core.ts.constants.langs/0.0.5_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-Bp87IFStXHsG1iyN/PONMyD5IyM=, tarball: wasedatime.core.ts.constants.langs/-/wasedatime.core.ts.constants.langs-0.0.5.tgz}
+ /@emotion/react@11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2):
+ resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==}
peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ '@babel/core': ^7.0.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
dependencies:
+ '@babel/core': 7.18.2
+ '@babel/runtime': 7.18.3
+ '@emotion/babel-plugin': 11.10.8
+ '@emotion/cache': 11.10.8
+ '@emotion/serialize': 1.1.1
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.2.5
+ '@types/react': 18.0.12
+ hoist-non-react-statics: 3.3.2
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
dev: false
- /@bit/wasedatime.core.ts.styles.overlay/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
- resolution: {integrity: sha1-eXYMnbkdhymg3EBNS9RBSuz1Wbk=, tarball: wasedatime.core.ts.styles.overlay/-/wasedatime.core.ts.styles.overlay-0.0.1.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ /@emotion/serialize@1.1.1:
+ resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==}
dependencies:
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
- transitivePeerDependencies:
- - react-is
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/unitless': 0.8.0
+ '@emotion/utils': 1.2.0
+ csstype: 3.1.2
dev: false
- /@bit/wasedatime.core.ts.styles.wrapper/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
- resolution: {integrity: sha1-cszBxS3eDqwoxe9Tl162+7hc9Og=, tarball: wasedatime.core.ts.styles.wrapper/-/wasedatime.core.ts.styles.wrapper-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.5_a2a2181cfa9fa3a87be5c14ec7e31da3
- transitivePeerDependencies:
- - react-is
+ /@emotion/sheet@1.2.1:
+ resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
dev: false
- /@bit/wasedatime.core.ts.ui.header/0.2.21_a6a614d057c08015d57b9942d6d0f07b:
- resolution: {integrity: sha1-G11o7+B0VeSU/zNXhfpuxw2gG3A=, tarball: wasedatime.core.ts.ui.header/-/wasedatime.core.ts.ui.header-0.2.21.tgz}
+ /@emotion/styled@11.8.1(@babel/core@7.18.2)(@emotion/react@11.9.0)(@types/react@18.0.12)(react@17.0.2):
+ resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
+ '@babel/core': ^7.0.0
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@bit/wasedatime.core.ts.ui.language-menu': 0.1.6_c0aea0a160bb4fb0c5f59d54bc1aba2c
- '@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': 0.1.3_352eb6157a1f58478b9bf80697aee5a8
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
+ '@babel/core': 7.18.2
+ '@babel/runtime': 7.18.3
+ '@emotion/babel-plugin': 11.10.8
+ '@emotion/is-prop-valid': 1.2.0
+ '@emotion/react': 11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2)
+ '@emotion/serialize': 1.1.1
+ '@emotion/utils': 1.2.0
+ '@types/react': 18.0.12
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-dom@17.0.2+react@17.0.2
- transitivePeerDependencies:
- - '@fortawesome/fontawesome-svg-core'
- - '@types/react'
- - react-is
dev: false
- /@bit/wasedatime.core.ts.ui.language-menu/0.1.2_a6a614d057c08015d57b9942d6d0f07b:
- resolution: {integrity: sha1-MUvE8RKQdx5JD3r7R/OPTdMgZes=, tarball: wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.2.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@fortawesome/free-solid-svg-icons': 5.15.4
- '@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'
- - '@types/react'
- - react-is
+ /@emotion/stylis@0.8.5:
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
+
+ /@emotion/unitless@0.7.5:
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+
+ /@emotion/unitless@0.8.0:
+ resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
dev: false
- /@bit/wasedatime.core.ts.ui.language-menu/0.1.6_c0aea0a160bb4fb0c5f59d54bc1aba2c:
- resolution: {integrity: sha1-2DVMCUn47JdgJXHQBIXv5GI6iUk=, tarball: wasedatime.core.ts.ui.language-menu/-/wasedatime.core.ts.ui.language-menu-0.1.6.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.theme.colors': 0.0.5
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@fortawesome/fontawesome-svg-core': 1.2.36
- '@fortawesome/free-solid-svg-icons': 5.15.4
- '@fortawesome/react-fontawesome': 0.1.18_f515edce028694561ceb456e3dba224c
- '@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
-
- /@bit/wasedatime.core.ts.ui.loading-spinner/0.1.5_a2a2181cfa9fa3a87be5c14ec7e31da3:
- resolution: {integrity: sha1-44SvUvzJtH0xwoEOvbiIFMpiSfU=, tarball: wasedatime.core.ts.ui.loading-spinner/-/wasedatime.core.ts.ui.loading-spinner-0.1.5.tgz}
- 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': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@bit/wasedatime.core.ts.styles.wrapper': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@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
-
- /@bit/wasedatime.core.ts.ui.logo/0.1.2_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha1-74P2D7rW83R16bst5QxwLAh4PKI=, tarball: wasedatime.core.ts.ui.logo/-/wasedatime.core.ts.ui.logo-0.1.2.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
- dev: false
-
- /@bit/wasedatime.core.ts.ui.modal/0.0.8_react-dom@17.0.2:
- resolution: {integrity: sha1-xkKmBXxGPJmAXzBQAeIqi71+V1E=, tarball: wasedatime.core.ts.ui.modal/-/wasedatime.core.ts.ui.modal-0.0.8.tgz}
- peerDependencies:
- react-dom: ^17.0.1
- dependencies:
- no-scroll: 2.1.1
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-modal: 3.16.1_react-dom@17.0.2+react@17.0.2
- dev: false
-
- /@bit/wasedatime.core.ts.ui.sign-in-modal/0.1.6_44372ad526450f77d720d3fe51751afb:
- resolution: {integrity: sha1-2AsM/+8z11HHHjRVHuMy8YjmyVk=, tarball: wasedatime.core.ts.ui.sign-in-modal/-/wasedatime.core.ts.ui.sign-in-modal-0.1.6.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.ts.ui.modal': 0.0.8_react-dom@17.0.2
- '@bit/wasedatime.core.ts.utils.responsive-utils': 0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3
- '@bit/wasedatime.core.ts.utils.user': 0.0.4_6e7d8002d9aed4660df23491d430a582
- '@fortawesome/free-brands-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
- react-i18next: 11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0
- react-responsive: 8.2.0_react@17.0.2
- transitivePeerDependencies:
- - '@fortawesome/fontawesome-svg-core'
- - encoding
- - i18next
- - react-is
- - react-native
- dev: false
-
- /@bit/wasedatime.core.ts.ui.theme-toggle/0.1.3_352eb6157a1f58478b9bf80697aee5a8:
- resolution: {integrity: sha1-YTDn/Cp/YgdPYdeR4APo2mVmyXo=, tarball: wasedatime.core.ts.ui.theme-toggle/-/wasedatime.core.ts.ui.theme-toggle-0.1.3.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@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
-
- /@bit/wasedatime.core.ts.utils.i18n/0.0.4_9724892b3df2999a6ee0ebb64e8fe4b0:
- resolution: {integrity: sha1-Mi/S9B83NRoFmQTS6EgSF8Ymqlo=, tarball: wasedatime.core.ts.utils.i18n/-/wasedatime.core.ts.utils.i18n-0.0.4.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@bit/wasedatime.core.assets.locales.en': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.assets.locales.ja': 0.0.1_react-dom@17.0.2+react@17.0.2
- '@bit/wasedatime.core.ts.constants.langs': 0.0.5_react-dom@17.0.2+react@17.0.2
- i18next-browser-languagedetector: 6.1.8
- i18next-http-backend: 1.4.5
- 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
-
- /@bit/wasedatime.core.ts.utils.responsive-utils/0.0.1_a2a2181cfa9fa3a87be5c14ec7e31da3:
- 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.5_a2a2181cfa9fa3a87be5c14ec7e31da3
- transitivePeerDependencies:
- - react-is
- dev: false
-
- /@bit/wasedatime.core.ts.utils.user/0.0.4_6e7d8002d9aed4660df23491d430a582:
- resolution: {integrity: sha1-oXb9G56lFH2zi1fg1GCWAJpy1xU=, tarball: wasedatime.core.ts.utils.user/-/wasedatime.core.ts.utils.user-0.0.4.tgz}
- peerDependencies:
- react: ^17.0.1
- react-dom: ^17.0.1
- dependencies:
- '@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
- dev: false
-
- /@emotion/babel-plugin/11.10.8:
- resolution: {integrity: sha512-gxNky50AJL3AlkbjvTARiwAqei6/tNUxDZPSKd+3jqWVM3AmdVTTdpjHorR/an/M0VJqdsuq5oGcFH+rjtyujQ==}
- dependencies:
- '@babel/helper-module-imports': 7.21.4
- '@babel/runtime': 7.21.5
- '@emotion/hash': 0.9.0
- '@emotion/memoize': 0.8.0
- '@emotion/serialize': 1.1.1
- babel-plugin-macros: 3.1.0
- convert-source-map: 1.9.0
- escape-string-regexp: 4.0.0
- find-root: 1.1.0
- source-map: 0.5.7
- stylis: 4.1.4
- dev: false
-
- /@emotion/cache/11.10.8:
- resolution: {integrity: sha512-5fyqGHi51LU95o7qQ/vD1jyvC4uCY5GcBT+UgP4LHdpO9jPDlXqhrRr9/wCKmfoAvh5G/F7aOh4MwQa+8uEqhA==}
- dependencies:
- '@emotion/memoize': 0.8.0
- '@emotion/sheet': 1.2.1
- '@emotion/utils': 1.2.0
- '@emotion/weak-memoize': 0.3.0
- stylis: 4.1.4
- dev: false
-
- /@emotion/hash/0.8.0:
- resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
- dev: false
-
- /@emotion/hash/0.9.0:
- resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
- dev: false
-
- /@emotion/is-prop-valid/1.2.0:
- resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
- dependencies:
- '@emotion/memoize': 0.8.0
- dev: false
-
- /@emotion/memoize/0.8.0:
- resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
- dev: false
-
- /@emotion/react/11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf:
- resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@types/react':
- optional: true
- dependencies:
- '@babel/core': 7.18.2
- '@babel/runtime': 7.18.3
- '@emotion/babel-plugin': 11.10.8
- '@emotion/cache': 11.10.8
- '@emotion/serialize': 1.1.1
- '@emotion/utils': 1.2.0
- '@emotion/weak-memoize': 0.2.5
- '@types/react': 18.0.12
- hoist-non-react-statics: 3.3.2
- react: 17.0.2
- dev: false
-
- /@emotion/serialize/1.1.1:
- resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==}
- dependencies:
- '@emotion/hash': 0.9.0
- '@emotion/memoize': 0.8.0
- '@emotion/unitless': 0.8.0
- '@emotion/utils': 1.2.0
- csstype: 3.1.2
- dev: false
-
- /@emotion/sheet/1.2.1:
- resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
- dev: false
-
- /@emotion/styled/11.8.1_79d5ab1fe20874d4cd362f25b796a196:
- resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@emotion/react': ^11.0.0-rc.0
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@types/react':
- optional: true
- dependencies:
- '@babel/core': 7.18.2
- '@babel/runtime': 7.18.3
- '@emotion/babel-plugin': 11.10.8
- '@emotion/is-prop-valid': 1.2.0
- '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
- '@emotion/serialize': 1.1.1
- '@emotion/utils': 1.2.0
- '@types/react': 18.0.12
- react: 17.0.2
- dev: false
-
- /@emotion/stylis/0.8.5:
- resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
- dev: false
-
- /@emotion/unitless/0.7.5:
- resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
- dev: false
-
- /@emotion/unitless/0.8.0:
- resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
- dev: false
-
- /@emotion/utils/1.2.0:
+ /@emotion/utils@1.2.0:
resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
dev: false
- /@emotion/weak-memoize/0.2.5:
+ /@emotion/weak-memoize@0.2.5:
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
dev: false
- /@emotion/weak-memoize/0.3.0:
+ /@emotion/weak-memoize@0.3.0:
resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
dev: false
- /@esbuild/linux-loong64/0.14.54:
- resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@eslint-community/eslint-utils/4.4.0_eslint@8.17.0:
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.17.0
- eslint-visitor-keys: 3.4.0
- dev: true
-
- /@eslint/eslintrc/1.4.1:
+ /@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
espree: 9.5.1
globals: 13.20.0
ignore: 5.2.4
@@ -2640,29 +2209,14 @@ packages:
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /@fortawesome/fontawesome-common-types/0.2.36:
- resolution: {integrity: sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg==}
- engines: {node: '>=6'}
- requiresBuild: true
- dev: false
-
- /@fortawesome/fontawesome-common-types/6.1.1:
+ /@fortawesome/fontawesome-common-types@6.1.1:
resolution: {integrity: sha512-wVn5WJPirFTnzN6tR95abCx+ocH+3IFLXAgyavnf9hUmN0CfWoDjPT/BAWsUVwSlYYVBeCLJxaqi7ZGe4uSjBA==}
engines: {node: '>=6'}
requiresBuild: true
dev: false
- /@fortawesome/fontawesome-svg-core/1.2.36:
- resolution: {integrity: sha512-YUcsLQKYb6DmaJjIHdDWpBIGCcyE/W+p/LMGvjQem55Mm2XWVAP5kWTMKWLv9lwpCVjpLxPyOMOyUocP1GxrtA==}
- engines: {node: '>=6'}
- requiresBuild: true
- dependencies:
- '@fortawesome/fontawesome-common-types': 0.2.36
- dev: false
-
- /@fortawesome/fontawesome-svg-core/6.1.1:
+ /@fortawesome/fontawesome-svg-core@6.1.1:
resolution: {integrity: sha512-NCg0w2YIp81f4V6cMGD9iomfsIj7GWrqmsa0ZsPh59G7PKiGN1KymZNxmF00ssuAlo/VZmpK6xazsGOwzKYUMg==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2670,7 +2224,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.1.1
dev: false
- /@fortawesome/free-brands-svg-icons/6.1.1:
+ /@fortawesome/free-brands-svg-icons@6.1.1:
resolution: {integrity: sha512-mFbI/czjBZ+paUtw5NPr2IXjun5KAC8eFqh1hnxowjA4mMZxWz4GCIksq6j9ZSa6Uxj9JhjjDVEd77p2LN2Blg==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2678,15 +2232,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.1.1
dev: false
- /@fortawesome/free-solid-svg-icons/5.15.4:
- resolution: {integrity: sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==}
- engines: {node: '>=6'}
- requiresBuild: true
- dependencies:
- '@fortawesome/fontawesome-common-types': 0.2.36
- dev: false
-
- /@fortawesome/free-solid-svg-icons/6.1.1:
+ /@fortawesome/free-solid-svg-icons@6.1.1:
resolution: {integrity: sha512-0/5exxavOhI/D4Ovm2r3vxNojGZioPwmFrKg0ZUH69Q68uFhFPs6+dhAToh6VEQBntxPRYPuT5Cg1tpNa9JUPg==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2694,7 +2240,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.1.1
dev: false
- /@fortawesome/react-fontawesome/0.1.18_6909f5698ccb6b468185370814560628:
+ /@fortawesome/react-fontawesome@0.1.18(@fortawesome/fontawesome-svg-core@6.1.1)(react@17.0.2):
resolution: {integrity: sha512-RwLIB4TZw0M9gvy5u+TusAA0afbwM4JQIimNH/j3ygd6aIvYPQLqXMhC9ErY26J23rDPyDZldIfPq/HpTTJ/tQ==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ~1 || ~6
@@ -2705,50 +2251,34 @@ packages:
react: 17.0.2
dev: false
- /@fortawesome/react-fontawesome/0.1.18_f515edce028694561ceb456e3dba224c:
- resolution: {integrity: sha512-RwLIB4TZw0M9gvy5u+TusAA0afbwM4JQIimNH/j3ygd6aIvYPQLqXMhC9ErY26J23rDPyDZldIfPq/HpTTJ/tQ==}
- peerDependencies:
- '@fortawesome/fontawesome-svg-core': ~1 || ~6
- react: '>=16.x'
- dependencies:
- '@fortawesome/fontawesome-svg-core': 1.2.36
- prop-types: 15.8.1
- react: 17.0.2
- dev: false
-
- /@hapi/hoek/9.3.0:
+ /@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- dev: true
- /@hapi/topo/5.1.0:
+ /@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
- dev: true
- /@humanwhocodes/config-array/0.9.5:
+ /@humanwhocodes/config-array@0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- dev: true
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- dev: true
- /@jest/create-cache-key-function/27.5.1:
+ /@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
- /@jest/types/26.6.2:
+ /@jest/types@26.6.2:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
dependencies:
@@ -2757,9 +2287,8 @@ packages:
'@types/node': 17.0.41
'@types/yargs': 15.0.15
chalk: 4.1.2
- dev: true
- /@jest/types/27.5.1:
+ /@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:
@@ -2768,9 +2297,8 @@ packages:
'@types/node': 17.0.41
'@types/yargs': 16.0.5
chalk: 4.1.2
- dev: true
- /@jridgewell/gen-mapping/0.3.3:
+ /@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2778,141 +2306,34 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.18
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.3:
+ /@jridgewell/source-map@0.3.3:
resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
dev: true
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- /@jridgewell/sourcemap-codec/1.4.15:
+ /@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping/0.3.18:
+ /@jridgewell/trace-mapping@0.3.18:
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@material-ui/core/4.12.4_c89428357385a28c4f386227766bd512:
- resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@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.6
- clsx: 1.2.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.5_react-dom@17.0.2+react@17.0.2
- dev: false
-
- /@material-ui/styles/4.11.5_c89428357385a28c4f386227766bd512:
- resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
- engines: {node: '>=8.0.0'}
- deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@emotion/hash': 0.8.0
- '@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.2.1
- csstype: 2.6.21
- hoist-non-react-statics: 3.3.2
- jss: 10.10.0
- jss-plugin-camel-case: 10.10.0
- jss-plugin-default-unit: 10.10.0
- jss-plugin-global: 10.10.0
- jss-plugin-nested: 10.10.0
- jss-plugin-props-sort: 10.10.0
- jss-plugin-rule-value-function: 10.10.0
- jss-plugin-vendor-prefixer: 10.10.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_c89428357385a28c4f386227766bd512:
- resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
- engines: {node: '>=8.0.0'}
- peerDependencies:
- '@types/react': ^16.8.6 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@babel/runtime': 7.21.5
- '@material-ui/utils': 4.11.3_react-dom@17.0.2+react@17.0.2
- '@types/react': 18.0.12
- csstype: 2.6.21
- 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@18.0.12:
- resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==}
- peerDependencies:
- '@types/react': '*'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@types/react': 18.0.12
- dev: false
-
- /@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.21.5
- 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.84_c89428357385a28c4f386227766bd512:
+ /@mui/base@5.0.0-alpha.84(@types/react@18.0.12)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-uDx+wGVytS+ZHiWHyzUyijY83GSIXJpzSJ0PGc/8/s+8nBzeHvaPKrAyJz15ASLr52hYRA6PQGqn0eRAsB7syQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2923,20 +2344,20 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.18.3
'@emotion/is-prop-valid': 1.2.0
- '@mui/types': 7.2.4_@types+react@18.0.12
- '@mui/utils': 5.12.3_react@17.0.2
+ '@mui/types': 7.2.4(@types/react@18.0.12)
+ '@mui/utils': 5.12.3(react@17.0.2)
'@popperjs/core': 2.11.7
'@types/react': 18.0.12
clsx: 1.2.1
prop-types: 15.8.1
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-is: 17.0.2
dev: false
- /@mui/icons-material/5.8.3_8839cb9fb61448aa836a88f035666937:
+ /@mui/icons-material@5.8.3(@mui/material@5.8.3)(@types/react@18.0.12)(react@17.0.2):
resolution: {integrity: sha512-dAdhimSLKOV0Q8FR7AYGEaCrTUh9OV7zU4Ueo5REoUt4cC3Vy+UBKDjZk66x5ezaYb63AFgQIFwtnZj3B/QDbQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2948,12 +2369,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.18.3
- '@mui/material': 5.8.3_4999d578384e5752dd6357c6002e0ea9
+ '@mui/material': 5.8.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@18.0.12)(react-dom@17.0.2)(react@17.0.2)
'@types/react': 18.0.12
react: 17.0.2
dev: false
- /@mui/material/5.8.3_4999d578384e5752dd6357c6002e0ea9:
+ /@mui/material@5.8.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@18.0.12)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-8UecY/W9SMtEZm5PMCUcMbujajVP6fobu0BgBPiIWwwWRblZVEzqprY6v1P2me7qCyrve4L4V/rqAKPKhVHOSg==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2971,12 +2392,12 @@ packages:
optional: true
dependencies:
'@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.12.3_12e59eed2472cefdcd35b5d5484b3d11
- '@mui/types': 7.2.4_@types+react@18.0.12
- '@mui/utils': 5.12.3_react@17.0.2
+ '@emotion/react': 11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2)
+ '@emotion/styled': 11.8.1(@babel/core@7.18.2)(@emotion/react@11.9.0)(@types/react@18.0.12)(react@17.0.2)
+ '@mui/base': 5.0.0-alpha.84(@types/react@18.0.12)(react-dom@17.0.2)(react@17.0.2)
+ '@mui/system': 5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@18.0.12)(react@17.0.2)
+ '@mui/types': 7.2.4(@types/react@18.0.12)
+ '@mui/utils': 5.12.3(react@17.0.2)
'@types/react': 18.0.12
'@types/react-transition-group': 4.4.6
clsx: 1.2.1
@@ -2984,12 +2405,12 @@ packages:
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-dom: 17.0.2(react@17.0.2)
react-is: 17.0.2
- react-transition-group: 4.4.5_react-dom@17.0.2+react@17.0.2
+ react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2)
dev: false
- /@mui/private-theming/5.12.3_43bb65ad44624192eabf549bb184d850:
+ /@mui/private-theming@5.12.3(@types/react@18.0.12)(react@17.0.2):
resolution: {integrity: sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -3000,13 +2421,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.5
- '@mui/utils': 5.12.3_react@17.0.2
+ '@mui/utils': 5.12.3(react@17.0.2)
'@types/react': 18.0.12
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/styled-engine/5.12.3_09a0c9559c3e7c8c898f158921333fde:
+ /@mui/styled-engine@5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(react@17.0.2):
resolution: {integrity: sha512-AhZtiRyT8Bjr7fufxE/mLS+QJ3LxwX1kghIcM2B2dvJzSSg9rnIuXDXM959QfUVIM3C8U4x3mgVoPFMQJvc4/g==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -3021,14 +2442,14 @@ packages:
dependencies:
'@babel/runtime': 7.21.5
'@emotion/cache': 11.10.8
- '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
- '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
+ '@emotion/react': 11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2)
+ '@emotion/styled': 11.8.1(@babel/core@7.18.2)(@emotion/react@11.9.0)(@types/react@18.0.12)(react@17.0.2)
csstype: 3.1.2
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/system/5.12.3_12e59eed2472cefdcd35b5d5484b3d11:
+ /@mui/system@5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(@types/react@18.0.12)(react@17.0.2):
resolution: {integrity: sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -3045,12 +2466,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.5
- '@emotion/react': 11.9.0_16b116bd9c69f9e371f0d0c3c0037cbf
- '@emotion/styled': 11.8.1_79d5ab1fe20874d4cd362f25b796a196
- '@mui/private-theming': 5.12.3_43bb65ad44624192eabf549bb184d850
- '@mui/styled-engine': 5.12.3_09a0c9559c3e7c8c898f158921333fde
- '@mui/types': 7.2.4_@types+react@18.0.12
- '@mui/utils': 5.12.3_react@17.0.2
+ '@emotion/react': 11.9.0(@babel/core@7.18.2)(@types/react@18.0.12)(react@17.0.2)
+ '@emotion/styled': 11.8.1(@babel/core@7.18.2)(@emotion/react@11.9.0)(@types/react@18.0.12)(react@17.0.2)
+ '@mui/private-theming': 5.12.3(@types/react@18.0.12)(react@17.0.2)
+ '@mui/styled-engine': 5.12.3(@emotion/react@11.9.0)(@emotion/styled@11.8.1)(react@17.0.2)
+ '@mui/types': 7.2.4(@types/react@18.0.12)
+ '@mui/utils': 5.12.3(react@17.0.2)
'@types/react': 18.0.12
clsx: 1.2.1
csstype: 3.1.2
@@ -3058,7 +2479,7 @@ packages:
react: 17.0.2
dev: false
- /@mui/types/7.2.4_@types+react@18.0.12:
+ /@mui/types@7.2.4(@types/react@18.0.12):
resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==}
peerDependencies:
'@types/react': '*'
@@ -3069,7 +2490,7 @@ packages:
'@types/react': 18.0.12
dev: false
- /@mui/utils/5.12.3_react@17.0.2:
+ /@mui/utils@5.12.3(react@17.0.2):
resolution: {integrity: sha512-D/Z4Ub3MRl7HiUccid7sQYclTr24TqUAQFFlxHQF8FR177BrCTQ0JJZom7EqYjZCdXhwnSkOj2ph685MSKNtIA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -3083,35 +2504,36 @@ packages:
react-is: 18.2.0
dev: false
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@popperjs/core/2.11.7:
+ /@popperjs/core@2.11.7:
resolution: {integrity: sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==}
dev: false
- /@react-native-community/cli-debugger-ui/7.0.3:
+ /@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
+ transitivePeerDependencies:
+ - supports-color
- /@react-native-community/cli-hermes/6.3.1:
+ /@react-native-community/cli-hermes@6.3.1:
resolution: {integrity: sha512-+tMJsEsVX0WyylnoFE7uPoMu1aTAChaA62Y32dwWgAa1Fx6YrpPkC9d6wvYSBe9md/4mTtRher+ooBcuov6JHw==}
dependencies:
'@react-native-community/cli-platform-android': 6.3.1
@@ -3121,9 +2543,8 @@ packages:
ip: 1.1.8
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-android/6.3.1:
+ /@react-native-community/cli-platform-android@6.3.1:
resolution: {integrity: sha512-n5A64RI1ty4ScZCel/3JYY9Anl857dPsUZ86Dwc1GxrbflSB5/+hcCMg5DCNcnJRa4Hdv95SAR5pMmtAjOXApA==}
dependencies:
'@react-native-community/cli-tools': 6.2.1
@@ -3138,9 +2559,8 @@ packages:
xmldoc: 1.3.0
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-android/7.0.1:
+ /@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
@@ -3155,9 +2575,8 @@ packages:
xmldoc: 1.3.0
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-platform-ios/7.0.1:
+ /@react-native-community/cli-platform-ios@7.0.1:
resolution: {integrity: sha512-PLRIbzrCzSedmpjuFtQqcqUD45G8q7sEciI1lf5zUbVMXqjIBwJWS7iz8235PyWwj8J4MNHohLC+oyRueFtbGg==}
dependencies:
'@react-native-community/cli-tools': 7.0.1
@@ -3171,9 +2590,8 @@ packages:
xcode: 3.0.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-plugin-metro/7.0.4:
+ /@react-native-community/cli-plugin-metro@7.0.4(@babel/core@7.18.2):
resolution: {integrity: sha512-DEV9WwJ6mB8zWFvNe/Z/eGmtmQmsZcu9VIqjxT7e9xZr2csB9ZlOZiweAMFO5cuVWZZgfL+NYIaQiFi0E0DFXw==}
dependencies:
'@react-native-community/cli-server-api': 7.0.4
@@ -3182,18 +2600,18 @@ packages:
metro: 0.67.0
metro-config: 0.67.0
metro-core: 0.67.0
- metro-react-native-babel-transformer: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0(@babel/core@7.18.2)
metro-resolver: 0.67.0
metro-runtime: 0.67.0
readline: 1.3.0
transitivePeerDependencies:
+ - '@babel/core'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /@react-native-community/cli-server-api/7.0.4:
+ /@react-native-community/cli-server-api@7.0.4:
resolution: {integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==}
dependencies:
'@react-native-community/cli-debugger-ui': 7.0.3
@@ -3208,10 +2626,10 @@ packages:
transitivePeerDependencies:
- bufferutil
- encoding
+ - supports-color
- utf-8-validate
- dev: true
- /@react-native-community/cli-tools/6.2.1:
+ /@react-native-community/cli-tools@6.2.1:
resolution: {integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==}
dependencies:
appdirsjs: 1.2.7
@@ -3224,9 +2642,8 @@ packages:
shell-quote: 1.8.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-tools/7.0.1:
+ /@react-native-community/cli-tools@7.0.1:
resolution: {integrity: sha512-0xra4hKNA5PR2zYVXsDMNiXMGaDNoNRYMY6eTP2aVIxQbqIcVMDWSyCA8wMWX5iOpMWg0cZGaQ6a77f3Rlb34g==}
dependencies:
appdirsjs: 1.2.7
@@ -3240,15 +2657,13 @@ packages:
shell-quote: 1.8.1
transitivePeerDependencies:
- encoding
- dev: true
- /@react-native-community/cli-types/6.0.0:
+ /@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.4_react-native@0.68.2:
+ /@react-native-community/cli@7.0.4(@babel/core@7.18.2)(react-native@0.68.2):
resolution: {integrity: sha512-W9nACtHWaLJZIP48cQmhQOnl5/7maoWE1Aji67MrLeIoB+ScNTJxaHfV4fMcklD6B6XEhaKokPACRZWm36zAog==}
engines: {node: '>=12'}
hasBin: true
@@ -3257,7 +2672,7 @@ packages:
dependencies:
'@react-native-community/cli-debugger-ui': 7.0.3
'@react-native-community/cli-hermes': 6.3.1
- '@react-native-community/cli-plugin-metro': 7.0.4
+ '@react-native-community/cli-plugin-metro': 7.0.4(@babel/core@7.18.2)
'@react-native-community/cli-server-api': 7.0.4
'@react-native-community/cli-tools': 6.2.1
'@react-native-community/cli-types': 6.0.0
@@ -3281,32 +2696,29 @@ packages:
ora: 3.4.0
pretty-format: 26.6.2
prompts: 2.4.2
- react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
+ react-native: 0.68.2(@babel/core@7.18.2)(@babel/preset-env@7.18.2)(react@17.0.2)
semver: 6.3.0
serve-static: 1.15.0
strip-ansi: 5.2.0
sudo-prompt: 9.2.1
wcwidth: 1.0.1
transitivePeerDependencies:
+ - '@babel/core'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /@react-native/assets/1.0.0:
+ /@react-native/assets@1.0.0:
resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
- dev: true
- /@react-native/normalize-color/2.0.0:
+ /@react-native/normalize-color@2.0.0:
resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==}
- dev: true
- /@react-native/polyfills/2.0.0:
+ /@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.79.1:
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.18.2)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -3319,17 +2731,17 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/helper-module-imports': 7.21.4
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
dev: true
- /@rollup/plugin-node-resolve/11.2.1_rollup@2.79.1:
+ /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1):
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.79.1
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
'@types/resolve': 1.17.1
builtin-modules: 3.3.0
deepmerge: 4.3.1
@@ -3338,17 +2750,17 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/plugin-replace/2.4.2_rollup@2.79.1:
+ /@rollup/plugin-replace@2.4.2(rollup@2.79.1):
resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
magic-string: 0.25.9
rollup: 2.79.1
dev: true
- /@rollup/pluginutils/3.1.0_rollup@2.79.1:
+ /@rollup/pluginutils@3.1.0(rollup@2.79.1):
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
@@ -3360,7 +2772,7 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/pluginutils/4.2.1:
+ /@rollup/pluginutils@4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
dependencies:
@@ -3368,25 +2780,18 @@ packages:
picomatch: 2.3.1
dev: true
- /@rushstack/eslint-patch/1.2.0:
- resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
- dev: true
-
- /@sideway/address/4.1.4:
+ /@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
- dev: true
- /@sideway/formula/3.0.1:
+ /@sideway/formula@3.0.1:
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- dev: true
- /@sideway/pinpoint/2.0.0:
+ /@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: true
- /@surma/rollup-plugin-off-main-thread/2.2.3:
+ /@surma/rollup-plugin-off-main-thread@2.2.3:
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
dependencies:
ejs: 3.1.9
@@ -3395,103 +2800,76 @@ packages:
string.prototype.matchall: 4.0.8
dev: true
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: true
- /@types/cookie/0.3.3:
+ /@types/cookie@0.3.3:
resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
dev: false
- /@types/eslint/8.37.0:
- resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==}
- dependencies:
- '@types/estree': 1.0.1
- '@types/json-schema': 7.0.11
- dev: true
-
- /@types/estree/0.0.39:
+ /@types/estree@0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
- /@types/estree/1.0.1:
- resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
- dev: true
-
- /@types/graceful-fs/4.1.6:
+ /@types/graceful-fs@4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
'@types/node': 17.0.41
- dev: true
- /@types/history/4.7.11:
+ /@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
dev: false
- /@types/hoist-non-react-statics/3.3.1:
+ /@types/hoist-non-react-statics@3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
dependencies:
'@types/react': 18.0.12
hoist-non-react-statics: 3.3.2
dev: false
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
- dev: true
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- dev: true
- /@types/istanbul-reports/3.0.1:
+ /@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: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
-
- /@types/node/17.0.41:
+ /@types/node@17.0.41:
resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==}
- dev: true
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ dev: false
- /@types/parse5/6.0.3:
+ /@types/parse5@6.0.3:
resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
dev: false
- /@types/prettier/2.7.2:
- resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==}
- dev: true
-
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/react-dom/18.0.5:
+ /@types/react-dom@18.0.5:
resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==}
dependencies:
'@types/react': 18.0.12
dev: false
- /@types/react-is/17.0.4:
+ /@types/react-is@17.0.4:
resolution: {integrity: sha512-FLzd0K9pnaEvKz4D1vYxK9JmgQPiGk1lu23o1kqGsLeT0iPbRSF7b76+S5T9fD8aRa0B8bY7I/3DebEj+1ysBA==}
dependencies:
'@types/react': 17.0.58
dev: false
- /@types/react-router-dom/5.3.3:
+ /@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
@@ -3499,286 +2877,78 @@ packages:
'@types/react-router': 5.1.20
dev: false
- /@types/react-router/5.1.20:
+ /@types/react-router@5.1.20:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
'@types/react': 18.0.12
dev: false
- /@types/react-transition-group/4.4.6:
- resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==}
- dependencies:
- '@types/react': 18.0.12
- dev: false
-
- /@types/react/17.0.58:
- resolution: {integrity: sha512-c1GzVY97P0fGxwGxhYq989j4XwlcHQoto6wQISOC2v6wm3h0PORRWJFHlkRjfGsiG3y1609WdQ+J+tKxvrEd6A==}
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
- dev: false
-
- /@types/react/18.0.12:
- resolution: {integrity: sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==}
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
- dev: false
-
- /@types/resolve/1.17.1:
- resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
- dependencies:
- '@types/node': 17.0.41
- dev: true
-
- /@types/scheduler/0.16.3:
- resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- dev: false
-
- /@types/semver/7.3.13:
- resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
- dev: true
-
- /@types/styled-components/5.1.25:
- resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==}
- dependencies:
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 18.0.12
- csstype: 3.1.2
- dev: false
-
- /@types/trusted-types/2.0.3:
- resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==}
-
- /@types/yargs-parser/21.0.0:
- resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
- dev: true
-
- /@types/yargs/15.0.15:
- resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
- dependencies:
- '@types/yargs-parser': 21.0.0
- dev: true
-
- /@types/yargs/16.0.5:
- resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
- dependencies:
- '@types/yargs-parser': 21.0.0
- dev: true
-
- /@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
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@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.17.0
- functional-red-black-tree: 1.0.1
- ignore: 5.2.4
- regexpp: 3.2.0
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.7.3
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/experimental-utils/5.59.2_eslint@8.17.0+typescript@4.7.3:
- resolution: {integrity: sha512-JLw2UImsjHDuVukpA8Nt+UK7JKE/LQAeV3tU5f7wJo2/NNYVwcakzkWjoYzu/2qzWY/Z9c7zojngNDfecNt92g==}
- 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.59.2_eslint@8.17.0+typescript@4.7.3
- eslint: 8.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@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
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@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.17.0
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@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.27.1
- '@typescript-eslint/visitor-keys': 5.27.1
- dev: true
-
- /@typescript-eslint/scope-manager/5.59.2:
- resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- dev: true
-
- /@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: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/utils': 5.27.1_eslint@8.17.0+typescript@4.7.3
- debug: 4.3.4
- eslint: 8.17.0
- tsutils: 3.21.0_typescript@4.7.3
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@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/types/5.59.2:
- resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /@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: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@types/react-transition-group@4.4.6:
+ resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==}
dependencies:
- '@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.5.0
- tsutils: 3.21.0_typescript@4.7.3
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@types/react': 18.0.12
+ dev: false
- /@typescript-eslint/typescript-estree/5.59.2_typescript@4.7.3:
- resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@types/react@17.0.58:
+ resolution: {integrity: sha512-c1GzVY97P0fGxwGxhYq989j4XwlcHQoto6wQISOC2v6wm3h0PORRWJFHlkRjfGsiG3y1609WdQ+J+tKxvrEd6A==}
dependencies:
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/visitor-keys': 5.59.2
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.0
- tsutils: 3.21.0_typescript@4.7.3
- typescript: 4.7.3
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@types/prop-types': 15.7.5
+ '@types/scheduler': 0.16.3
+ csstype: 3.1.2
+ dev: false
- /@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
+ /@types/react@18.0.12:
+ resolution: {integrity: sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==}
dependencies:
- '@types/json-schema': 7.0.11
- '@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.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ '@types/prop-types': 15.7.5
+ '@types/scheduler': 0.16.3
+ csstype: 3.1.2
+ dev: false
- /@typescript-eslint/utils/5.59.2_eslint@8.17.0+typescript@4.7.3:
- resolution: {integrity: sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ /@types/resolve@1.17.1:
+ resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.17.0
- '@types/json-schema': 7.0.11
- '@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.59.2
- '@typescript-eslint/types': 5.59.2
- '@typescript-eslint/typescript-estree': 5.59.2_typescript@4.7.3
- eslint: 8.17.0
- eslint-scope: 5.1.1
- semver: 7.5.0
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@types/node': 17.0.41
dev: true
- /@typescript-eslint/visitor-keys/5.27.1:
- resolution: {integrity: sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@types/scheduler@0.16.3:
+ resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
+ dev: false
+
+ /@types/styled-components@5.1.25:
+ resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==}
dependencies:
- '@typescript-eslint/types': 5.27.1
- eslint-visitor-keys: 3.4.0
- dev: true
+ '@types/hoist-non-react-statics': 3.3.1
+ '@types/react': 18.0.12
+ csstype: 3.1.2
+ dev: false
- /@typescript-eslint/visitor-keys/5.59.2:
- resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@types/trusted-types@2.0.3:
+ resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==}
+
+ /@types/yargs-parser@21.0.0:
+ resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
+
+ /@types/yargs@15.0.15:
+ resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
dependencies:
- '@typescript-eslint/types': 5.59.2
- eslint-visitor-keys: 3.4.0
- dev: true
+ '@types/yargs-parser': 21.0.0
- /@vitejs/plugin-react/1.3.2:
+ /@types/yargs@16.0.5:
+ resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
+ dependencies:
+ '@types/yargs-parser': 21.0.0
+
+ /@vitejs/plugin-react@1.3.2:
resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
engines: {node: '>=12.0.0'}
dependencies:
'@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.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx-source': 7.19.6_@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.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.18.2)
'@rollup/pluginutils': 4.2.1
react-refresh: 0.13.0
resolve: 1.22.2
@@ -3786,70 +2956,64 @@ packages:
- supports-color
dev: true
- /abort-controller/3.0.0:
+ /abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
- dev: true
- /absolute-path/0.0.0:
+ /absolute-path@0.0.0:
resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
- dev: true
- /accepts/1.3.8:
+ /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-jsx/5.3.2_acorn@8.8.2:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.2
- dev: true
- /acorn-node/1.8.2:
+ /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
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- /acorn-walk/8.2.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:
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- dev: true
- /ajv/8.12.0:
+ /ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
fast-deep-equal: 3.1.3
@@ -3858,7 +3022,7 @@ packages:
uri-js: 4.4.1
dev: true
- /amazon-cognito-identity-js/5.2.9:
+ /amazon-cognito-identity-js@5.2.9:
resolution: {integrity: sha512-2ZLVOE1fb0eziAaV6kXCDMe35HNFkdz3HyMwb9i+lqm1G2q3SHrliL30MHbc2KwMeu5qu/ysw5BSU+b1Y5AIaQ==}
dependencies:
buffer: 4.9.2
@@ -3870,202 +3034,120 @@ packages:
- encoding
dev: false
- /anser/1.4.10:
+ /anser@1.4.10:
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
- dev: true
- /ansi-fragments/0.2.1:
+ /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: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /ansi-regex/3.0.1:
- resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
- engines: {node: '>=4'}
- dev: true
- /ansi-regex/4.1.1:
+ /ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
- dev: true
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- dev: true
- /ansi-styles/2.2.1:
- resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- dev: true
- /anymatch/3.1.3:
+ /anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /appdirsjs/1.2.7:
+ /appdirsjs@1.2.7:
resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
- dev: true
- /arg/5.0.2:
+ /arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- dev: true
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
-
- /aria-query/4.2.2:
- resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
- engines: {node: '>=6.0'}
- dependencies:
- '@babel/runtime': 7.21.5
- '@babel/runtime-corejs3': 7.21.5
- dev: true
- /arr-diff/4.0.0:
+ /arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
- dev: true
- /arr-flatten/1.1.0:
+ /arr-flatten@1.1.0:
resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
engines: {node: '>=0.10.0'}
- dev: true
- /arr-union/3.1.0:
+ /arr-union@3.1.0:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /array-buffer-byte-length/1.0.0:
+ /array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
dependencies:
call-bind: 1.0.2
is-array-buffer: 3.0.2
dev: true
- /array-includes/3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- get-intrinsic: 1.2.0
- is-string: 1.0.7
- dev: true
-
- /array-union/2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
- dev: true
-
- /array-unique/0.3.2:
+ /array-unique@0.3.2:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /array.prototype.flat/1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /array.prototype.flatmap/1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /asap/2.0.6:
+ /asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: true
- /assign-symbols/1.0.0:
+ /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: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
- dev: true
-
- /ast-types/0.14.2:
+ /ast-types@0.14.2:
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
tslib: 2.5.0
- dev: true
- /astral-regex/1.0.0:
+ /astral-regex@1.0.0:
resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
engines: {node: '>=4'}
- dev: true
- /async-limiter/1.0.1:
+ /async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- dev: true
- /async/2.6.4:
+ /async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
- dev: true
- /async/3.2.4:
+ /async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: true
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
dev: true
- /atob/2.1.2:
+ /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.7_postcss@8.4.14:
+ /autoprefixer@10.4.7(postcss@8.4.14):
resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -4079,75 +3161,62 @@ packages:
picocolors: 1.0.0
postcss: 8.4.14
postcss-value-parser: 4.2.0
- dev: true
- /available-typed-arrays/1.0.5:
+ /available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
dev: true
- /axe-core/4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
- engines: {node: '>=4'}
- dev: true
-
- /axobject-query/2.2.0:
- resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
- dev: true
-
- /babel-core/7.0.0-bridge.0_@babel+core@7.18.2:
+ /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-0
dependencies:
'@babel/core': 7.18.2
- dev: true
- /babel-plugin-macros/3.1.0:
+ /babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.18.3
cosmiconfig: 7.1.0
resolve: 1.22.2
+ dev: false
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.18.2:
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.18.2):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.7
'@babel/core': 7.18.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.2)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.2:
+ /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.18.2):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.2)
core-js-compat: 3.30.1
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.2:
+ /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.18.2
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.2
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.2)
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-styled-components/2.0.7_styled-components@5.3.5:
+ /babel-plugin-styled-components@2.0.7(styled-components@5.3.5):
resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==}
peerDependencies:
styled-components: '>= 2'
@@ -4157,84 +3226,57 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3
+ styled-components: 5.3.5(react-dom@17.0.2)(react-is@18.1.0)(react@17.0.2)
- /babel-plugin-syntax-jsx/6.18.0:
+ /babel-plugin-syntax-jsx@6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
- /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0:
+ /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:
+ /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.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2
- '@babel/plugin-syntax-flow': 7.21.4_@babel+core@7.18.2
- '@babel/plugin-syntax-jsx': 7.21.4_@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.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@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.21.4(@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.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-jsx': 7.17.12(@babel/core@7.18.2)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-transform-template-literals': 7.18.9(@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.18.2
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-react-display-name': 7.18.6_@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.18.6_@babel+core@7.18.2
- '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2
- '@babel/runtime': 7.21.5
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-react-remove-prop-types: 0.4.24
- transitivePeerDependencies:
- - supports-color
- dev: true
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- dev: true
- /base/0.11.2:
+ /base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ /base@0.11.2:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4245,63 +3287,54 @@ packages:
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==}
-
- /big-integer/1.6.51:
+ /big-integer@1.6.51:
resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
engines: {node: '>=0.6'}
- dev: true
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bl/4.1.0:
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
- dev: true
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /bowser/2.11.0:
+ /bowser@2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
dev: false
- /bplist-creator/0.1.0:
+ /bplist-creator@0.1.0:
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
dependencies:
stream-buffers: 2.2.0
- dev: true
- /bplist-parser/0.3.1:
+ /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:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- dev: true
- /brace-expansion/2.0.1:
+ /brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
dev: true
- /braces/2.3.2:
+ /braces@2.3.2:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4315,19 +3348,20 @@ packages:
snapdragon-node: 2.1.1
split-string: 3.1.0
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /browserslist-config-single-spa/1.0.1:
+ /browserslist-config-single-spa@1.0.1:
resolution: {integrity: sha512-nqOxTbatv6FcdgBvUTuH4MuojMZwvskspz5Y4dmpVcKd0uaQY8KEl3iALWus16+AwPVe3BIerBNEgELyaHZcQg==}
dev: false
- /browserslist/4.21.5:
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -4335,20 +3369,17 @@ packages:
caniuse-lite: 1.0.30001482
electron-to-chromium: 1.4.384
node-releases: 2.0.10
- update-browserslist-db: 1.0.11_browserslist@4.21.5
- dev: true
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
- /bser/2.1.1:
+ /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:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- dev: true
- /buffer/4.9.2:
+ /buffer@4.9.2:
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
dependencies:
base64-js: 1.5.1
@@ -4356,24 +3387,22 @@ packages:
isarray: 1.0.0
dev: false
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: true
- /builtin-modules/3.3.0:
+ /builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
dev: true
- /bytes/3.0.0:
+ /bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- dev: true
- /cache-base/1.0.1:
+ /cache-base@1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4386,64 +3415,57 @@ packages:
to-object-path: 0.3.0
union-value: 1.0.1
unset-value: 1.0.0
- dev: true
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.2.0
dev: true
- /caller-callsite/2.0.0:
+ /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:
+ /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:
+ /callsites@2.0.0:
resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
engines: {node: '>=4'}
- dev: true
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.5.0
dev: true
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- dev: true
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- dev: true
- /camelize/1.0.1:
+ /camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- dev: false
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -4452,22 +3474,10 @@ packages:
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001482:
+ /caniuse-lite@1.0.30001482:
resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==}
- dev: true
-
- /chalk/1.1.3:
- resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-styles: 2.2.1
- escape-string-regexp: 1.0.5
- has-ansi: 2.0.0
- strip-ansi: 3.0.1
- supports-color: 2.0.0
- dev: true
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -4475,15 +3485,14 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- dev: true
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -4497,16 +3506,14 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /ci-info/2.0.0:
+ /ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- dev: true
- /ci-info/3.8.0:
+ /ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
- dev: true
- /class-utils/0.3.6:
+ /class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -4514,47 +3521,42 @@ packages:
define-property: 0.2.5
isobject: 3.0.1
static-extend: 0.1.2
- dev: true
- /classnames/2.3.2:
+ /classnames@2.3.2:
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
dev: false
- /clean-css/5.3.2:
+ /clean-css@5.3.2:
resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
dev: true
- /cli-cursor/2.1.0:
+ /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:
+ /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.9.0:
+ /cli-spinners@2.9.0:
resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
engines: {node: '>=6'}
- dev: true
- /cliui/6.0.0:
+ /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/8.0.1:
+ /cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
dependencies:
@@ -4563,58 +3565,55 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-deep/4.0.1:
+ /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
- /clone/1.0.4:
+ /clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- dev: true
- /clsx/1.2.1:
+ /clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /collection-visit/1.0.0:
+ /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:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /color-string/1.9.1:
+ /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:
+ /color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
dependencies:
@@ -4622,61 +3621,54 @@ packages:
color-string: 1.9.1
dev: false
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: true
- /colorette/1.4.0:
+ /colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- dev: true
- /colorette/2.0.20:
+ /colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
dev: true
- /command-exists/1.2.9:
+ /command-exists@1.2.9:
resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
- dev: true
- /commander/2.13.0:
+ /commander@2.13.0:
resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
- dev: true
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- dev: true
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
dev: true
- /commander/8.3.0:
+ /commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
dev: true
- /common-tags/1.8.2:
+ /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:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- dev: true
- /component-emitter/1.3.0:
+ /component-emitter@1.3.0:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
- dev: true
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- dev: true
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -4687,13 +3679,13 @@ packages:
on-headers: 1.0.2
safe-buffer: 5.1.2
vary: 1.1.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- dev: true
- /concurrently/7.2.1:
+ /concurrently@7.2.1:
resolution: {integrity: sha512-7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
@@ -4709,16 +3701,12 @@ packages:
yargs: 17.7.2
dev: true
- /confusing-browser-globals/1.0.11:
- resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- dev: true
-
- /connect-history-api-fallback/1.6.0:
+ /connect-history-api-fallback@1.6.0:
resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
engines: {node: '>=0.8'}
dev: true
- /connect/3.7.0:
+ /connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -4726,47 +3714,40 @@ packages:
finalhandler: 1.1.2
parseurl: 1.3.3
utils-merge: 1.0.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /consola/2.15.3:
+ /consola@2.15.3:
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
dev: true
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- /cookie/0.4.2:
+ /cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
dev: false
- /copy-anything/2.0.6:
+ /copy-anything@2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
dependencies:
is-what: 3.14.1
dev: true
- /copy-descriptor/0.1.1:
+ /copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- dev: true
- /core-js-compat/3.30.1:
+ /core-js-compat@3.30.1:
resolution: {integrity: sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==}
dependencies:
browserslist: 4.21.5
- dev: true
-
- /core-js-pure/3.30.1:
- resolution: {integrity: sha512-nXBEVpmUnNRhz83cHd9JRQC52cTMcuXAmR56+9dSMpRdpeA4I1PX6yjmhd71Eyc/wXNsdBdUDIj1QTIeZpU5Tg==}
- requiresBuild: true
- dev: true
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- dev: true
- /cosmiconfig/5.2.1:
+ /cosmiconfig@5.2.1:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
engines: {node: '>=4'}
dependencies:
@@ -4774,9 +3755,8 @@ packages:
is-directory: 0.3.1
js-yaml: 3.14.1
parse-json: 4.0.0
- dev: true
- /cosmiconfig/7.1.0:
+ /cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
@@ -4785,16 +3765,9 @@ packages:
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
-
- /cross-fetch/3.1.5:
- resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
- dependencies:
- node-fetch: 2.6.7
- transitivePeerDependencies:
- - encoding
dev: false
- /cross-spawn/6.0.5:
+ /cross-spawn@6.0.5:
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
engines: {node: '>=4.8'}
dependencies:
@@ -4803,32 +3776,29 @@ packages:
semver: 5.7.1
shebang-command: 1.2.0
which: 1.3.1
- dev: true
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
- /crypto-js/4.1.1:
+ /crypto-js@4.1.1:
resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
dev: false
- /crypto-random-string/2.0.0:
+ /crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
dev: true
- /css-color-keywords/1.0.0:
+ /css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- dev: false
- /css-declaration-sorter/6.4.0_postcss@8.4.14:
+ /css-declaration-sorter@6.4.0(postcss@8.4.14):
resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
@@ -4837,11 +3807,11 @@ packages:
postcss: 8.4.14
dev: true
- /css-mediaquery/0.1.2:
+ /css-mediaquery@0.1.2:
resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==}
dev: false
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -4851,22 +3821,21 @@ packages:
nth-check: 2.1.1
dev: true
- /css-selector-tokenizer/0.8.0:
+ /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.2.0:
+ /css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
- dev: false
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -4874,62 +3843,55 @@ packages:
source-map: 0.6.1
dev: true
- /css-vendor/2.0.8:
- resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
- dependencies:
- '@babel/runtime': 7.21.5
- is-in-browser: 1.1.3
- dev: false
-
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/5.2.14_postcss@8.4.14:
+ /cssnano-preset-default@5.2.14(postcss@8.4.14):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.0_postcss@8.4.14
- cssnano-utils: 3.1.0_postcss@8.4.14
+ css-declaration-sorter: 6.4.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.1_postcss@8.4.14
- postcss-convert-values: 5.1.3_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.7_postcss@8.4.14
- postcss-merge-rules: 5.1.4_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.4_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.1_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.2_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:
+ postcss-calc: 8.2.4(postcss@8.4.14)
+ postcss-colormin: 5.3.1(postcss@8.4.14)
+ postcss-convert-values: 5.1.3(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.7(postcss@8.4.14)
+ postcss-merge-rules: 5.1.4(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.4(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.1(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.2(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:
@@ -4938,89 +3900,78 @@ packages:
postcss: 8.4.14
dev: true
- /cssnano/5.1.11_postcss@8.4.14:
+ /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.14_postcss@8.4.14
+ cssnano-preset-default: 5.2.14(postcss@8.4.14)
lilconfig: 2.1.0
postcss: 8.4.14
yaml: 1.10.2
dev: true
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
dev: true
- /csstype/2.6.21:
- resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
- dev: false
-
- /csstype/3.1.2:
+ /csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
dev: false
- /daisyui/2.15.2_a191cbaa25c4a0a9f05cc78eac153be7:
+ /daisyui@2.15.2(autoprefixer@10.4.7)(postcss@8.4.14):
resolution: {integrity: sha512-12hjzlOUkGVzMPKhaBc8soqNY2mJWGTYJF8sTuCibDcdGbHDmYgBUY0OX1HHIVq/qh2vELh5yHb4QCgCDWUAwg==}
peerDependencies:
autoprefixer: ^10.0.2
postcss: ^8.1.6
dependencies:
- autoprefixer: 10.4.7_postcss@8.4.14
+ 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.1_postcss@8.4.14
- tailwindcss: 3.0.24
+ postcss-js: 4.0.1(postcss@8.4.14)
+ tailwindcss: 3.0.24(postcss@8.4.14)
transitivePeerDependencies:
- ts-node
dev: false
- /damerau-levenshtein/1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
-
- /date-fns/2.30.0:
+ /date-fns@2.30.0:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
'@babel/runtime': 7.21.5
dev: true
- /dayjs/1.11.7:
+ /dayjs@1.11.7:
resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
- dev: true
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
dependencies:
ms: 2.0.0
- dev: true
-
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- dependencies:
- ms: 2.1.3
- dev: true
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
+ /debug@3.2.7:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
dev: true
+ optional: true
- /debug/4.3.4_supports-color@5.5.0:
+ /debug@4.3.4(supports-color@5.5.0):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -5031,39 +3982,33 @@ packages:
dependencies:
ms: 2.1.2
supports-color: 5.5.0
- dev: false
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- dev: true
- /decode-uri-component/0.2.2:
+ /decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- dev: true
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
- /deepmerge/3.3.0:
+ /deepmerge@3.3.0:
resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
engines: {node: '>=0.10.0'}
- dev: true
- /deepmerge/4.3.1:
+ /deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
dev: true
- /defaults/1.0.4:
+ /defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
- dev: true
- /define-properties/1.2.0:
+ /define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5071,54 +4016,47 @@ packages:
object-keys: 1.1.1
dev: true
- /define-property/0.2.5:
+ /define-property@0.2.5:
resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
- dev: true
- /define-property/1.0.0:
+ /define-property@1.0.0:
resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
- dev: true
- /define-property/2.0.2:
+ /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.1:
+ /defined@1.0.1:
resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- /denodeify/1.2.1:
+ /denodeify@1.2.1:
resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
- dev: true
- /depd/2.0.0:
+ /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:
+ /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
- /destroy/1.2.0:
+ /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.1:
+ /detective@5.2.1:
resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -5127,41 +4065,26 @@ packages:
defined: 1.0.1
minimist: 1.2.8
- /didyoumean/1.2.2:
+ /didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- /dir-glob/3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
- dependencies:
- path-type: 4.0.0
- dev: true
-
- /dlv/1.1.3:
+ /dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- /doctrine/2.1.0:
- resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
-
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
- dev: true
- /dom-helpers/5.2.1:
+ /dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.18.3
csstype: 3.1.2
dev: false
- /dom-serializer/1.4.1:
+ /dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
domelementtype: 2.3.0
@@ -5169,18 +4092,18 @@ packages:
entities: 2.2.0
dev: true
- /domelementtype/2.3.0:
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: true
- /domhandler/4.3.1:
+ /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:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.4.1
@@ -5188,28 +4111,27 @@ packages:
domhandler: 4.3.1
dev: true
- /dot-case/3.0.4:
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: true
- /dotenv-expand/8.0.3:
+ /dotenv-expand@8.0.3:
resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
engines: {node: '>=12'}
dev: true
- /dotenv/16.0.1:
+ /dotenv@16.0.1:
resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==}
engines: {node: '>=12'}
dev: true
- /ee-first/1.1.1:
+ /ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- dev: true
- /ejs/3.1.9:
+ /ejs@3.1.9:
resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -5217,40 +4139,31 @@ packages:
jake: 10.8.5
dev: true
- /electron-to-chromium/1.4.384:
+ /electron-to-chromium@1.4.384:
resolution: {integrity: sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==}
- dev: true
- /emoji-regex/8.0.0:
+ /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:
+ /encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- dev: true
- /end-of-stream/1.4.4:
+ /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:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
- /envinfo/7.8.1:
+ /envinfo@7.8.1:
resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /errno/0.1.8:
+ /errno@0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
requiresBuild: true
@@ -5259,26 +4172,24 @@ packages:
dev: true
optional: true
- /error-ex/1.3.2:
+ /error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
- /error-stack-parser/2.1.4:
+ /error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
dependencies:
stackframe: 1.3.4
- dev: true
- /errorhandler/1.5.1:
+ /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.21.2:
+ /es-abstract@1.21.2:
resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5318,7 +4229,7 @@ packages:
which-typed-array: 1.1.9
dev: true
- /es-set-tostringtag/2.0.1:
+ /es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5327,13 +4238,7 @@ packages:
has-tostringtag: 1.0.0
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:
+ /es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5342,8 +4247,8 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild-android-64/0.14.54:
- resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
+ /esbuild-android-64@0.14.43:
+ resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -5351,16 +4256,8 @@ packages:
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.54:
- resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
+ /esbuild-android-arm64@0.14.43:
+ resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -5368,16 +4265,8 @@ packages:
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.54:
- resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
+ /esbuild-darwin-64@0.14.43:
+ resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -5385,16 +4274,8 @@ packages:
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.54:
- resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
+ /esbuild-darwin-arm64@0.14.43:
+ resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -5402,16 +4283,8 @@ packages:
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.54:
- resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
+ /esbuild-freebsd-64@0.14.43:
+ resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -5419,16 +4292,8 @@ packages:
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.54:
- resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
+ /esbuild-freebsd-arm64@0.14.43:
+ resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -5436,16 +4301,8 @@ packages:
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.54:
- resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
+ /esbuild-linux-32@0.14.43:
+ resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -5453,16 +4310,8 @@ packages:
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.54:
- resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
+ /esbuild-linux-64@0.14.43:
+ resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -5470,50 +4319,26 @@ packages:
dev: true
optional: true
- /esbuild-linux-arm/0.13.15:
- resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm/0.14.54:
- resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
+ /esbuild-linux-arm64@0.14.43:
+ resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==}
engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm64/0.13.15:
- resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /esbuild-linux-arm64/0.14.54:
- resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
+ /esbuild-linux-arm@0.14.43:
+ resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-mips64le/0.13.15:
- resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==}
- cpu: [mips64el]
+ cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /esbuild-linux-mips64le/0.14.54:
- resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
+ /esbuild-linux-mips64le@0.14.43:
+ resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -5521,16 +4346,8 @@ packages:
dev: true
optional: true
- /esbuild-linux-ppc64le/0.13.15:
- resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-ppc64le/0.14.54:
- resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
+ /esbuild-linux-ppc64le@0.14.43:
+ resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -5538,8 +4355,8 @@ packages:
dev: true
optional: true
- /esbuild-linux-riscv64/0.14.54:
- resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
+ /esbuild-linux-riscv64@0.14.43:
+ resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -5547,8 +4364,8 @@ packages:
dev: true
optional: true
- /esbuild-linux-s390x/0.14.54:
- resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
+ /esbuild-linux-s390x@0.14.43:
+ resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -5556,16 +4373,8 @@ packages:
dev: true
optional: true
- /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
-
- /esbuild-netbsd-64/0.14.54:
- resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
+ /esbuild-netbsd-64@0.14.43:
+ resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -5573,16 +4382,8 @@ packages:
dev: true
optional: true
- /esbuild-openbsd-64/0.13.15:
- resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-openbsd-64/0.14.54:
- resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
+ /esbuild-openbsd-64@0.14.43:
+ resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -5590,16 +4391,8 @@ packages:
dev: true
optional: true
- /esbuild-sunos-64/0.13.15:
- resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-sunos-64/0.14.54:
- resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
+ /esbuild-sunos-64@0.14.43:
+ resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -5607,371 +4400,86 @@ packages:
dev: true
optional: true
- /esbuild-windows-32/0.13.15:
- resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-32/0.14.54:
- resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
+ /esbuild-windows-32@0.14.43:
+ resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
- optional: true
-
- /esbuild-windows-64/0.13.15:
- resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-64/0.14.54:
- resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-arm64/0.13.15:
- resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-arm64/0.14.54:
- resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /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.54:
- resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/linux-loong64': 0.14.54
- esbuild-android-64: 0.14.54
- esbuild-android-arm64: 0.14.54
- esbuild-darwin-64: 0.14.54
- esbuild-darwin-arm64: 0.14.54
- esbuild-freebsd-64: 0.14.54
- esbuild-freebsd-arm64: 0.14.54
- esbuild-linux-32: 0.14.54
- esbuild-linux-64: 0.14.54
- esbuild-linux-arm: 0.14.54
- esbuild-linux-arm64: 0.14.54
- esbuild-linux-mips64le: 0.14.54
- esbuild-linux-ppc64le: 0.14.54
- esbuild-linux-riscv64: 0.14.54
- esbuild-linux-s390x: 0.14.54
- esbuild-netbsd-64: 0.14.54
- esbuild-openbsd-64: 0.14.54
- esbuild-sunos-64: 0.14.54
- esbuild-windows-32: 0.14.54
- esbuild-windows-64: 0.14.54
- esbuild-windows-arm64: 0.14.54
- dev: true
-
- /escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
- dev: true
-
- /escape-html/1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- dev: true
-
- /escape-string-regexp/1.0.5:
- 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_de2e8b5f32821e366389b4575f54c566:
- resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
- engines: {node: ^10.12.0 || >=12.0.0}
- peerDependencies:
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.2
- dependencies:
- confusing-browser-globals: 1.0.11
- eslint: 8.17.0
- eslint-plugin-import: 2.26.0_eslint@8.17.0
- object.assign: 4.1.4
- object.entries: 1.1.6
- semver: 6.3.0
- dev: true
-
- /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:
- eslint: ^7.32.0 || ^8.2.0
- eslint-plugin-import: ^2.25.3
- eslint-plugin-jsx-a11y: ^6.5.1
- eslint-plugin-react: ^7.28.0
- eslint-plugin-react-hooks: ^4.3.0
- dependencies:
- 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.4
- object.entries: 1.1.6
- dev: true
-
- /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.17.0
- dev: true
-
- /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.18.2
- '@babel/eslint-parser': 7.18.2_@babel+core@7.18.2+eslint@8.17.0
- '@rushstack/eslint-patch': 1.2.0
- '@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.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.10.3_eslint@8.17.0+typescript@4.7.3
- transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - jest
- - supports-color
- - typescript
- dev: true
-
- /eslint-import-resolver-node/0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.12.0
- resolve: 1.22.2
- dev: true
-
- /eslint-module-utils/2.8.0_eslint@8.17.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: '*'
- peerDependenciesMeta:
- eslint:
- optional: true
- dependencies:
- debug: 3.2.7
- eslint: 8.17.0
- dev: true
-
- /eslint-plugin-flowtype/8.0.3_ae853594273fe47c46b6f572c00fe240:
- resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@babel/plugin-syntax-flow': ^7.14.5
- '@babel/plugin-transform-react-jsx': ^7.14.9
- eslint: ^8.1.0
- dependencies:
- '@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.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.6
- array.prototype.flat: 1.3.1
- debug: 2.6.9
- doctrine: 2.1.0
- eslint: 8.17.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0_eslint@8.17.0
- has: 1.0.3
- is-core-module: 2.12.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.2
- tsconfig-paths: 3.14.2
- dev: true
-
- /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:
- '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- jest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- jest:
- optional: true
- dependencies:
- '@typescript-eslint/eslint-plugin': 5.27.1_043f48e0ee10c350c28cdede89899bc7
- '@typescript-eslint/experimental-utils': 5.59.2_eslint@8.17.0+typescript@4.7.3
- eslint: 8.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ optional: true
- /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.18.3
- aria-query: 4.2.2
- array-includes: 3.1.6
- ast-types-flow: 0.0.7
- axe-core: 4.7.0
- axobject-query: 2.2.0
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 8.17.0
- has: 1.0.3
- jsx-ast-utils: 3.3.3
- language-tags: 1.0.8
- minimatch: 3.1.2
+ /esbuild-windows-64@0.14.43:
+ resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /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.17.0
+ /esbuild-windows-arm64@0.14.43:
+ resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /eslint-plugin-prettier/4.0.0_a088652d234d3f0e6595b5f3073e25de:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
- peerDependencies:
- eslint: '>=7.28.0'
- eslint-config-prettier: '*'
- prettier: '>=2.0.0'
- peerDependenciesMeta:
- eslint-config-prettier:
- optional: true
- dependencies:
- 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
+ /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: true
+
+ /escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
+
+ /escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
- /eslint-plugin-react-hooks/4.5.0_eslint@8.17.0:
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ /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.17.0
- dev: true
-
- /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.6
- array.prototype.flatmap: 1.3.1
- doctrine: 2.1.0
- eslint: 8.17.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
- minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
- prop-types: 15.8.1
- resolve: 2.0.0-next.4
- semver: 6.3.0
- string.prototype.matchall: 4.0.8
- dev: true
-
- /eslint-plugin-testing-library/5.10.3_eslint@8.17.0+typescript@4.7.3:
- resolution: {integrity: sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==}
- 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.59.2_eslint@8.17.0+typescript@4.7.3
- eslint: 8.17.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ dev: false
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -5979,15 +4487,14 @@ packages:
estraverse: 4.3.0
dev: true
- /eslint-scope/7.2.0:
+ /eslint-scope@7.2.0:
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- dev: true
- /eslint-utils/3.0.0_eslint@8.17.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:
@@ -5995,19 +4502,16 @@ packages:
dependencies:
eslint: 8.17.0
eslint-visitor-keys: 2.1.0
- dev: true
- /eslint-visitor-keys/2.1.0:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- dev: true
- /eslint-visitor-keys/3.4.0:
+ /eslint-visitor-keys@3.4.0:
resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /eslint/8.17.0:
+ /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
@@ -6017,11 +4521,11 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.0
- eslint-utils: 3.0.0_eslint@8.17.0
+ eslint-utils: 3.0.0(eslint@8.17.0)
eslint-visitor-keys: 3.4.0
espree: 9.5.1
esquery: 1.5.0
@@ -6049,71 +4553,62 @@ packages:
v8-compile-cache: 2.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /espree/9.5.1:
+ /espree@9.5.1:
resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.0
- dev: true
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- dev: true
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- dev: true
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
dev: true
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- dev: true
- /estree-walker/1.0.1:
+ /estree-walker@1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
dev: true
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- dev: true
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- dev: true
- /event-target-shim/5.0.1:
+ /event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- dev: true
- /execa/1.0.0:
+ /execa@1.0.0:
resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
engines: {node: '>=6'}
dependencies:
@@ -6124,13 +4619,8 @@ packages:
p-finally: 1.0.0
signal-exit: 3.0.7
strip-eof: 1.0.0
- dev: true
-
- /exenv/1.2.2:
- resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==}
- dev: false
- /expand-brackets/2.1.4:
+ /expand-brackets@2.1.4:
resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -6141,24 +4631,23 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /extend-shallow/2.0.1:
+ /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:
+ /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:
+ /extglob@2.0.4:
resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -6170,21 +4659,17 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /fast-base64-decode/1.0.0:
+ /fast-base64-decode@1.0.0:
resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==}
dev: false
- /fast-deep-equal/3.1.3:
+ /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.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -6194,43 +4679,39 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: true
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
- /fastparse/1.1.2:
+ /fastparse@1.1.2:
resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
dev: false
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
- /fb-watchman/2.0.2:
+ /fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
- dev: true
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- dev: true
- /filelist/1.0.4:
+ /filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
minimatch: 5.1.6
dev: true
- /fill-range/4.0.0:
+ /fill-range@4.0.0:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -6238,15 +4719,14 @@ packages:
is-number: 3.0.0
repeat-string: 1.6.1
to-regex-range: 2.1.1
- dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /finalhandler/1.1.2:
+ /finalhandler@1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
dependencies:
@@ -6257,89 +4737,79 @@ packages:
parseurl: 1.3.3
statuses: 1.5.0
unpipe: 1.0.0
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /find-cache-dir/2.1.0:
+ /find-cache-dir@2.1.0:
resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
engines: {node: '>=6'}
dependencies:
commondir: 1.0.1
make-dir: 2.1.0
pkg-dir: 3.0.0
- dev: true
- /find-root/1.1.0:
+ /find-root@1.1.0:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
dev: false
- /find-up/3.0.0:
+ /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:
+ /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:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
- dev: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- dev: true
- /flow-parser/0.121.0:
+ /flow-parser@0.121.0:
resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
engines: {node: '>=0.4.0'}
- dev: true
- /for-each/0.3.3:
+ /for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
dev: true
- /for-in/1.0.2:
+ /for-in@1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
- dev: true
- /fragment-cache/0.2.1:
+ /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:
+ /fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- dev: true
- /fs-extra/1.0.0:
+ /fs-extra@1.0.0:
resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==}
dependencies:
graceful-fs: 4.2.11
jsonfile: 2.4.0
klaw: 1.3.1
- dev: true
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
@@ -6348,16 +4818,15 @@ packages:
universalify: 2.0.0
dev: true
- /fs-extra/8.1.0:
+ /fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
- dev: true
- /fs-extra/9.1.0:
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
@@ -6367,21 +4836,20 @@ packages:
universalify: 2.0.0
dev: true
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- dev: true
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
- /function.prototype.name/1.1.5:
+ /function.prototype.name@1.1.5:
resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6391,25 +4859,22 @@ packages:
functions-have-names: 1.2.3
dev: true
- /functional-red-black-tree/1.0.1:
+ /functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- dev: true
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
dev: true
- /gensync/1.0.0-beta.2:
+ /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:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- dev: true
- /get-intrinsic/1.2.0:
+ /get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
function-bind: 1.1.1
@@ -6417,18 +4882,17 @@ packages:
has-symbols: 1.0.3
dev: true
- /get-own-enumerable-property-symbols/3.0.2:
+ /get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: true
- /get-stream/4.1.0:
+ /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:
+ /get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6436,24 +4900,23 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /get-value/2.0.6:
+ /get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
- dev: true
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
+ /glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -6462,171 +4925,139 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: true
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- dev: true
- /globalthis/1.0.3:
+ /globalthis@1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.2.0
dev: true
- /globby/11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.2.12
- ignore: 5.2.4
- merge2: 1.4.1
- slash: 3.0.0
- dev: true
-
- /gopd/1.0.1:
+ /gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.2.0
dev: true
- /graceful-fs/4.2.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- dev: true
- /has-ansi/2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /has-bigints/1.0.2:
+ /has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- dev: true
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.2.0
dev: true
- /has-proto/1.0.1:
+ /has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
dev: true
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
dev: true
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
dev: true
- /has-value/0.3.1:
+ /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:
+ /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:
+ /has-values@0.1.4:
resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /has-values/1.0.0:
+ /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:
+ /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:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
dev: true
- /hermes-engine/0.11.0:
+ /hermes-engine@0.11.0:
resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==}
- dev: true
- /hermes-estree/0.5.0:
+ /hermes-estree@0.5.0:
resolution: {integrity: sha512-1h8rvG23HhIR5K6Kt0e5C7BC72J1Ath/8MmSta49vxXp/j6wl7IMHvIRFYBQr35tWnQY97dSGR2uoAJ5pHUQkg==}
- dev: true
- /hermes-parser/0.5.0:
+ /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:
+ /hermes-profile-transformer@0.0.6:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
engines: {node: '>=8'}
dependencies:
source-map: 0.7.4
- dev: true
- /history/5.3.0:
+ /history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
'@babel/runtime': 7.18.3
dev: false
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
- dev: false
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: false
- /html-minifier-terser/6.1.0:
+ /html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
hasBin: true
@@ -6640,13 +5071,13 @@ packages:
terser: 5.17.1
dev: true
- /html-parse-stringify/3.0.1:
+ /html-parse-stringify@3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
dependencies:
void-elements: 3.1.0
dev: false
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -6655,33 +5086,18 @@ packages:
setprototypeof: 1.2.0
statuses: 2.0.1
toidentifier: 1.0.1
- dev: true
- /hyphenate-style-name/1.0.4:
+ /hyphenate-style-name@1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
dev: false
- /i18next-browser-languagedetector/6.1.8:
- resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==}
- dependencies:
- '@babel/runtime': 7.21.5
- dev: false
-
- /i18next-http-backend/1.4.5:
- resolution: {integrity: sha512-tLuHWuLWl6CmS07o+UB6EcQCaUjrZ1yhdseIN7sfq0u7phsMePJ8pqlGhIAdRDPF/q7ooyo5MID5DRFBCH+x5w==}
- dependencies:
- cross-fetch: 3.1.5
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /i18next/21.8.9:
+ /i18next@21.8.9:
resolution: {integrity: sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==}
dependencies:
'@babel/runtime': 7.18.3
dev: false
- /iconv-lite/0.6.3:
+ /iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -6689,23 +5105,22 @@ packages:
dev: true
optional: true
- /idb/6.1.5:
+ /idb@6.1.5:
resolution: {integrity: sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==}
dev: false
- /idb/7.1.1:
+ /idb@7.1.1:
resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==}
dev: true
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- dev: true
- /image-size/0.5.5:
+ /image-size@0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -6713,57 +5128,47 @@ packages:
dev: true
optional: true
- /image-size/0.6.3:
+ /image-size@0.6.3:
resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
engines: {node: '>=4.0'}
hasBin: true
- dev: true
- /immediate/3.0.6:
+ /immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
dev: false
- /immutable/4.3.0:
+ /immutable@4.3.0:
resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
dev: true
- /import-fresh/2.0.0:
+ /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:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
- /indent-string/4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
- dev: true
-
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- dev: true
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- dev: true
- /internal-slot/1.0.5:
+ /internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6772,31 +5177,27 @@ packages:
side-channel: 1.0.4
dev: true
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- dev: true
- /ip/1.1.8:
+ /ip@1.1.8:
resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
- dev: true
- /is-accessor-descriptor/0.1.6:
+ /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
- /is-accessor-descriptor/1.0.0:
+ /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-array-buffer/3.0.2:
+ /is-array-buffer@3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
@@ -6804,26 +5205,26 @@ packages:
is-typed-array: 1.1.10
dev: true
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- /is-arrayish/0.3.2:
+ /is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
dev: false
- /is-bigint/1.0.4:
+ /is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
has-bigints: 1.0.2
dev: true
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- /is-boolean-object/1.1.2:
+ /is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6831,145 +5232,128 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: true
- /is-callable/1.2.7:
+ /is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
dev: true
- /is-core-module/2.12.0:
+ /is-core-module@2.12.0:
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
dependencies:
has: 1.0.3
- /is-data-descriptor/0.1.4:
+ /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:
+ /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:
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
- /is-descriptor/0.1.6:
+ /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:
+ /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:
+ /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:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-extendable/1.0.1:
+ /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:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point/2.0.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:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- dev: true
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-in-browser/1.1.3:
- resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
- dev: false
-
- /is-interactive/1.0.0:
+ /is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- dev: true
- /is-module/1.0.0:
+ /is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
- /is-negative-zero/2.0.2:
+ /is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
dev: true
- /is-number-object/1.0.7:
+ /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:
+ /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:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj/1.0.1:
+ /is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-object/2.0.4:
+ /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:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6977,42 +5361,41 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-regexp/1.0.0:
+ /is-regexp@1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-shared-array-buffer/1.0.2:
+ /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:
+ /is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
dev: true
- /is-string/1.0.7:
+ /is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
- /is-symbol/1.0.4:
+ /is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
dev: true
- /is-typed-array/1.1.10:
+ /is-typed-array@1.1.10:
resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7023,51 +5406,45 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-unicode-supported/0.1.0:
+ /is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- dev: true
- /is-weakref/1.0.2:
+ /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:
+ /is-what@3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
dev: true
- /is-windows/1.0.2:
+ /is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- dev: true
- /is-wsl/1.1.0:
+ /is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
engines: {node: '>=4'}
- dev: true
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
- /isobject/2.1.0:
+ /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:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: true
- /isomorphic-unfetch/3.1.0:
+ /isomorphic-unfetch@3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
node-fetch: 2.6.9
@@ -7076,7 +5453,7 @@ packages:
- encoding
dev: false
- /jake/10.8.5:
+ /jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
engines: {node: '>=10'}
hasBin: true
@@ -7087,12 +5464,11 @@ packages:
minimatch: 3.1.2
dev: true
- /jest-get-type/26.3.0:
+ /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:
+ /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:
@@ -7110,22 +5486,19 @@ packages:
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.2
- dev: true
- /jest-regex-util/27.5.1:
+ /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:
+ /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.11
- dev: true
- /jest-util/27.5.1:
+ /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:
@@ -7135,9 +5508,8 @@ packages:
ci-info: 3.8.0
graceful-fs: 4.2.11
picomatch: 2.3.1
- dev: true
- /jest-validate/26.6.2:
+ /jest-validate@26.6.2:
resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
engines: {node: '>= 10.14.2'}
dependencies:
@@ -7147,32 +5519,28 @@ packages:
jest-get-type: 26.3.0
leven: 3.1.0
pretty-format: 26.6.2
- dev: true
- /jest-worker/26.6.2:
+ /jest-worker@26.6.2:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/node': 17.0.41
merge-stream: 2.0.0
supports-color: 7.2.0
- dev: true
- /jest-worker/27.5.1:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/node': 17.0.41
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: true
- /jetifier/1.6.8:
+ /jetifier@1.6.8:
resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==}
hasBin: true
- dev: true
- /joi/17.9.2:
+ /joi@17.9.2:
resolution: {integrity: sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -7180,35 +5548,31 @@ packages:
'@sideway/address': 4.1.4
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- dev: true
- /js-cookie/2.2.1:
+ /js-cookie@2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
dev: false
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- dev: true
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- dev: true
- /jsc-android/250230.2.1:
+ /jsc-android@250230.2.1:
resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
- dev: true
- /jscodeshift/0.13.1_@babel+preset-env@7.18.2:
+ /jscodeshift@0.13.1(@babel/preset-env@7.18.2):
resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
hasBin: true
peerDependencies:
@@ -7216,15 +5580,15 @@ packages:
dependencies:
'@babel/core': 7.18.2
'@babel/parser': 7.21.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.18.2
- '@babel/preset-env': 7.18.2_@babel+core@7.18.2
- '@babel/preset-flow': 7.21.4_@babel+core@7.18.2
- '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2
- '@babel/register': 7.21.0_@babel+core@7.18.2
- babel-core: 7.0.0-bridge.0_@babel+core@7.18.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.2)
+ '@babel/preset-env': 7.18.2(@babel/core@7.18.2)
+ '@babel/preset-flow': 7.21.4(@babel/core@7.18.2)
+ '@babel/preset-typescript': 7.17.12(@babel/core@7.18.2)
+ '@babel/register': 7.21.0(@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.11
@@ -7236,195 +5600,95 @@ packages:
write-file-atomic: 2.4.3
transitivePeerDependencies:
- supports-color
- dev: true
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- dev: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-parse-better-errors/1.0.2:
+ /json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: true
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ dev: false
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- dev: true
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: true
- /json-schema/0.4.0:
+ /json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: true
- /json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
-
- /json5/1.0.2:
- resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
- hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
-
- /json5/2.2.3:
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
- engines: {node: '>=6'}
- hasBin: true
- dev: true
-
- /jsonfile/2.4.0:
- resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
-
- /jsonfile/4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
-
- /jsonfile/6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- dependencies:
- universalify: 2.0.0
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
-
- /jsonpointer/5.0.1:
- resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /jss-plugin-camel-case/10.10.0:
- resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
- dependencies:
- '@babel/runtime': 7.21.5
- hyphenate-style-name: 1.0.4
- jss: 10.10.0
- dev: false
-
- /jss-plugin-default-unit/10.10.0:
- resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
-
- /jss-plugin-global/10.10.0:
- resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
-
- /jss-plugin-nested/10.10.0:
- resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- tiny-warning: 1.0.3
- dev: false
-
- /jss-plugin-props-sort/10.10.0:
- resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- dev: false
+ /json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- /jss-plugin-rule-value-function/10.10.0:
- resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==}
- dependencies:
- '@babel/runtime': 7.21.5
- jss: 10.10.0
- tiny-warning: 1.0.3
- dev: false
+ /json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
- /jss-plugin-vendor-prefixer/10.10.0:
- resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==}
- dependencies:
- '@babel/runtime': 7.21.5
- css-vendor: 2.0.8
- jss: 10.10.0
- dev: false
+ /jsonfile@2.4.0:
+ resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
+ optionalDependencies:
+ graceful-fs: 4.2.11
- /jss/10.10.0:
- resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==}
- dependencies:
- '@babel/runtime': 7.21.5
- csstype: 3.1.2
- is-in-browser: 1.1.3
- tiny-warning: 1.0.3
- dev: false
+ /jsonfile@4.0.0:
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ optionalDependencies:
+ graceful-fs: 4.2.11
- /jsx-ast-utils/3.3.3:
- resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
- engines: {node: '>=4.0'}
+ /jsonfile@6.1.0:
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
- array-includes: 3.1.6
- object.assign: 4.1.4
+ universalify: 2.0.0
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: true
+
+ /jsonpointer@5.0.1:
+ resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
+ engines: {node: '>=0.10.0'}
dev: true
- /kind-of/3.2.2:
+ /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:
+ /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:
+ /kind-of@5.1.0:
resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
engines: {node: '>=0.10.0'}
- dev: true
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: true
- /klaw/1.3.1:
+ /klaw@1.3.1:
resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
optionalDependencies:
graceful-fs: 4.2.11
- dev: true
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- dev: true
-
- /language-subtag-registry/0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
- dev: true
-
- /language-tags/1.0.8:
- resolution: {integrity: sha512-aWAZwgPLS8hJ20lNPm9HNVs4inexz6S2sQa3wx/+ycuutMNE5/IfYxiWYBbi+9UWCQVaXYCOPUl6gFrPR7+jGg==}
- dependencies:
- language-subtag-registry: 0.3.22
- dev: true
- /less/4.1.3:
+ /less@4.1.3:
resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==}
engines: {node: '>=6'}
hasBin: true
@@ -7440,194 +5704,162 @@ packages:
mime: 1.6.0
needle: 3.2.0
source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- dev: true
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /lie/3.1.1:
+ /lie@3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
dependencies:
immediate: 3.0.6
dev: false
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ dev: false
- /localforage/1.10.0:
+ /localforage@1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
lie: 3.1.1
dev: false
- /locate-path/3.0.0:
+ /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:
+ /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:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- dev: true
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
- /lodash.sortby/4.7.0:
+ /lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: true
- /lodash.throttle/4.1.1:
+ /lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
- dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: true
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols/2.2.0:
+ /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:
+ /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:
+ /logkitty@0.7.1:
resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
hasBin: true
dependencies:
ansi-fragments: 0.2.1
dayjs: 1.11.7
yargs: 15.4.1
- dev: true
-
- /loglevel-colored-level-prefix/1.0.0:
- resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
- dependencies:
- chalk: 1.1.3
- loglevel: 1.8.1
- dev: true
- /loglevel/1.8.1:
- resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
- engines: {node: '>= 0.6.0'}
- dev: true
-
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.5.0
dev: true
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
- dev: true
-
- /lru-cache/6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
- dependencies:
- yallist: 4.0.0
- dev: true
- /magic-string/0.25.9:
+ /magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
sourcemap-codec: 1.4.8
dev: true
- /make-dir/2.1.0:
+ /make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
dependencies:
pify: 4.0.1
semver: 5.7.1
- dev: true
- /makeerror/1.0.12:
+ /makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
tmpl: 1.0.5
- dev: true
- /map-cache/0.2.2:
+ /map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
- dev: true
- /map-visit/1.0.0:
+ /map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
dependencies:
object-visit: 1.0.1
- dev: true
- /matchmediaquery/0.3.1:
+ /matchmediaquery@0.3.1:
resolution: {integrity: sha512-Hlk20WQHRIm9EE9luN1kjRjYXAQToHOIAHPJn9buxBwuhfTHoKUcX+lXBbxc85DVQfXYbEQ4HcwQdd128E3qHQ==}
dependencies:
css-mediaquery: 0.1.2
dev: false
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: true
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /metro-babel-transformer/0.67.0:
+ /metro-babel-transformer@0.67.0:
resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==}
dependencies:
'@babel/core': 7.18.2
@@ -7636,21 +5868,18 @@ packages:
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-cache-key/0.67.0:
+ /metro-cache-key@0.67.0:
resolution: {integrity: sha512-FNJe5Rcb2uzY6G6tsqCf0RV4t2rCeX6vSHBxmP7k+4aI4NqX4evtPI0K82r221nBzm5DqNWCURZ0RYUT6jZMGA==}
- dev: true
- /metro-cache/0.67.0:
+ /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
- /metro-config/0.67.0:
+ /metro-config@0.67.0:
resolution: {integrity: sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g==}
dependencies:
cosmiconfig: 5.2.1
@@ -7664,21 +5893,18 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /metro-core/0.67.0:
+ /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:
+ /metro-hermes-compiler@0.67.0:
resolution: {integrity: sha512-X5Pr1jC8/kO6d1EBDJ6yhtuc5euHX89UDNv8qdPJHAET03xfFnlojRPwOw6il2udAH20WLBv+F5M9VY+58zspQ==}
- dev: true
- /metro-inspector-proxy/0.67.0:
+ /metro-inspector-proxy@0.67.0:
resolution: {integrity: sha512-5Ubjk94qpNaU3OT2IZa4/dec09bauic1hzWms4czorBzDenkp4kYXG9/aWTmgQLtCk92H3Q8jKl1PQRxUSkrOQ==}
hasBin: true
dependencies:
@@ -7688,90 +5914,89 @@ packages:
yargs: 15.4.1
transitivePeerDependencies:
- bufferutil
+ - supports-color
- utf-8-validate
- dev: true
- /metro-minify-uglify/0.67.0:
+ /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:
+ /metro-react-native-babel-preset@0.67.0(@babel/core@7.18.2):
resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==}
+ peerDependencies:
+ '@babel/core': '*'
dependencies:
'@babel/core': 7.18.2
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.18.2
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@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.18.6_@babel+core@7.18.2
- '@babel/plugin-syntax-flow': 7.21.4_@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.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-object-assign': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.18.2
- '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.18.2
- '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.18.2
- '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.2
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.18.2
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.2
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.2
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.18.2
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.18.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@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.18.6(@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.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-object-assign': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@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.21.0(@babel/core@7.18.2)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.18.2)
+ '@babel/plugin-transform-runtime': 7.18.2(@babel/core@7.18.2)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.2)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.2)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.2)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.2)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.2)
'@babel/template': 7.20.7
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-react-native-babel-transformer/0.67.0:
+ /metro-react-native-babel-transformer@0.67.0(@babel/core@7.18.2):
resolution: {integrity: sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ==}
+ peerDependencies:
+ '@babel/core': '*'
dependencies:
'@babel/core': 7.18.2
- babel-preset-fbjs: 3.4.0_@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-react-native-babel-preset: 0.67.0(@babel/core@7.18.2)
metro-source-map: 0.67.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-resolver/0.67.0:
+ /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:
+ /metro-runtime@0.67.0:
resolution: {integrity: sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g==}
- dev: true
- /metro-source-map/0.67.0:
+ /metro-source-map@0.67.0:
resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==}
dependencies:
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
invariant: 2.2.4
metro-symbolicate: 0.67.0
@@ -7781,9 +6006,8 @@ packages:
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-symbolicate/0.67.0:
+ /metro-symbolicate@0.67.0:
resolution: {integrity: sha512-ZqVVcfa0xSz40eFzA5P8pCF3V6Tna9RU1prFzAJTa3j9dCGqwh0HTXC8AIkMtgX7hNdZrCJI1YipzUBlwkT0/A==}
engines: {node: '>=8.3'}
hasBin: true
@@ -7796,28 +6020,26 @@ packages:
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-transform-plugins/0.67.0:
+ /metro-transform-plugins@0.67.0:
resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==}
dependencies:
'@babel/core': 7.18.2
'@babel/generator': 7.21.5
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /metro-transform-worker/0.67.0:
+ /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.21.5
'@babel/parser': 7.21.8
'@babel/types': 7.21.5
- babel-preset-fbjs: 3.4.0_@babel+core@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
@@ -7831,9 +6053,8 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /metro/0.67.0:
+ /metro@0.67.0:
resolution: {integrity: sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ==}
hasBin: true
dependencies:
@@ -7842,7 +6063,7 @@ packages:
'@babel/generator': 7.21.5
'@babel/parser': 7.21.8
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@babel/types': 7.21.5
absolute-path: 0.0.0
accepts: 1.3.8
@@ -7869,7 +6090,7 @@ packages:
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-react-native-babel-preset: 0.67.0(@babel/core@7.18.2)
metro-resolver: 0.67.0
metro-runtime: 0.67.0
metro-source-map: 0.67.0
@@ -7893,9 +6114,8 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: true
- /micromatch/3.1.10:
+ /micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -7912,97 +6132,87 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- dev: true
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- dev: true
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /mime/2.6.0:
+ /mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
- dev: true
- /mimic-fn/1.2.0:
+ /mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
- dev: true
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- dev: true
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- dev: true
- /minimatch/5.1.6:
+ /minimatch@5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /mixin-deep/1.3.2:
+ /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:
+ /mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
minimist: 1.2.8
- dev: true
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: true
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: true
- /nanoid/3.3.6:
+ /nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nanomatch/1.2.13:
+ /nanomatch@1.2.13:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -8017,13 +6227,13 @@ packages:
regex-not: 1.0.2
snapdragon: 0.8.2
to-regex: 3.0.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
- /needle/3.2.0:
+ /needle@3.2.0:
resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==}
engines: {node: '>= 4.4.x'}
hasBin: true
@@ -8032,58 +6242,39 @@ packages:
debug: 3.2.7
iconv-lite: 0.6.3
sax: 1.2.4
+ transitivePeerDependencies:
+ - supports-color
dev: true
optional: true
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- dev: true
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: true
- /nice-try/1.0.5:
+ /nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.5.0
dev: true
- /no-scroll/2.1.1:
- resolution: {integrity: sha512-YTzGAJOo/B6hkodeT5SKKHpOhAzjMfkUCCXjLJwjWk2F4/InIg+HbdH9kmT7bKpleDuqLZDTRy2OdNtAj0IVyQ==}
- dev: false
-
- /nocache/2.1.0:
+ /nocache@2.1.0:
resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==}
engines: {node: '>=4.0.0'}
- dev: true
- /node-dir/0.1.17:
+ /node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
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}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- dev: false
- /node-fetch/2.6.9:
+ /node-fetch@2.6.9:
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -8094,95 +6285,86 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-html-parser/5.4.2:
+ /node-html-parser@5.4.2:
resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
dependencies:
css-select: 4.3.0
he: 1.2.0
dev: true
- /node-int64/0.4.0:
+ /node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- dev: true
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- dev: true
- /node-stream-zip/1.15.0:
+ /node-stream-zip@1.15.0:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
- dev: true
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- dev: true
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
dev: true
- /npm-run-path/2.0.2:
+ /npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
- dev: true
- /nth-check/2.1.1:
+ /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:
+ /nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- dev: true
- /ob1/0.67.0:
+ /ob1@0.67.0:
resolution: {integrity: sha512-YvZtX8HKYackQ5PwdFIuuNFVsMChRPHvnARRRT0Vk59xsBvL5t9U1Ock3M1sYrKj+Gp73+0q9xcHLAxI+xLi5g==}
- dev: true
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-copy/0.1.0:
+ /object-copy@0.1.0:
resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
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/3.0.0:
+ /object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- /object-inspect/1.12.3:
+ /object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
dev: true
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
dev: true
- /object-visit/1.0.1:
+ /object-visit@1.0.1:
resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: true
- /object.assign/4.1.4:
+ /object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -8192,94 +6374,52 @@ packages:
object-keys: 1.1.1
dev: true
- /object.entries/1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.fromentries/2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.hasown/1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
- dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
-
- /object.pick/1.3.0:
+ /object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: true
-
- /object.values/1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
- dev: true
- /on-finished/2.3.0:
+ /on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- dev: true
- /on-finished/2.4.1:
+ /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:
+ /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:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- dev: true
- /onetime/2.0.1:
+ /onetime@2.0.1:
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
engines: {node: '>=4'}
dependencies:
mimic-fn: 1.2.0
- dev: true
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- dev: true
- /open/6.4.0:
+ /open@6.4.0:
resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
engines: {node: '>=8'}
dependencies:
is-wsl: 1.1.0
- dev: true
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -8289,9 +6429,8 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
word-wrap: 1.2.3
- dev: true
- /ora/3.4.0:
+ /ora@3.4.0:
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
engines: {node: '>=6'}
dependencies:
@@ -8301,9 +6440,8 @@ packages:
log-symbols: 2.2.0
strip-ansi: 5.2.0
wcwidth: 1.0.1
- dev: true
- /ora/5.4.1:
+ /ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
dependencies:
@@ -8316,66 +6454,58 @@ packages:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- dev: true
- /os-tmpdir/1.0.2:
+ /os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- dev: true
- /p-finally/1.0.0:
+ /p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
- dev: true
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- dev: true
- /p-locate/3.0.0:
+ /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-locate/4.1.0:
+ /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-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- dev: true
- /param-case/3.0.4:
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
dev: true
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- /parse-json/4.0.0:
+ /parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
dependencies:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
- dev: true
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -8383,111 +6513,97 @@ packages:
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ dev: false
- /parse-node-version/1.0.1:
+ /parse-node-version@1.0.1:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
dev: true
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- dev: true
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: true
- /pascalcase/0.1.1:
+ /pascalcase@0.1.1:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
- dev: true
- /path-exists/3.0.0:
+ /path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
- dev: true
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- dev: true
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- dev: true
- /path-key/2.0.1:
+ /path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
- dev: true
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
+ dev: false
- /pathe/0.2.0:
+ /pathe@0.2.0:
resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
dev: true
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- dev: true
- /pirates/4.0.5:
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- dev: true
- /pkg-dir/3.0.0:
+ /pkg-dir@3.0.0:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
dependencies:
find-up: 3.0.0
- dev: true
- /plist/3.0.6:
+ /plist@3.0.6:
resolution: {integrity: sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==}
engines: {node: '>=6'}
dependencies:
base64-js: 1.5.1
xmlbuilder: 15.1.1
- dev: true
-
- /popper.js/1.16.1-lts:
- resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
- dev: false
- /posix-character-classes/0.1.1:
+ /posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
- dev: true
- /postcss-calc/8.2.4_postcss@8.4.14:
+ /postcss-calc@8.2.4(postcss@8.4.14):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
@@ -8497,7 +6613,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.1_postcss@8.4.14:
+ /postcss-colormin@5.3.1(postcss@8.4.14):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8510,7 +6626,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.1.3_postcss@8.4.14:
+ /postcss-convert-values@5.1.3(postcss@8.4.14):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8521,7 +6637,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.1.2_postcss@8.4.14:
+ /postcss-discard-comments@5.1.2(postcss@8.4.14):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8530,7 +6646,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-discard-duplicates/5.1.0_postcss@8.4.14:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8539,7 +6655,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-discard-empty/5.1.1_postcss@8.4.14:
+ /postcss-discard-empty@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8548,7 +6664,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-discard-overridden/5.1.0_postcss@8.4.14:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8557,7 +6673,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-js/4.0.1_postcss@8.4.14:
+ /postcss-js@4.0.1(postcss@8.4.14):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
@@ -8566,7 +6682,7 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.14
- /postcss-load-config/3.1.4_postcss@8.4.14:
+ /postcss-load-config@3.1.4(postcss@8.4.14):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -8582,7 +6698,7 @@ packages:
postcss: 8.4.14
yaml: 1.10.2
- /postcss-merge-longhand/5.1.7_postcss@8.4.14:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.14):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8590,10 +6706,10 @@ packages:
dependencies:
postcss: 8.4.14
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.14
+ stylehacks: 5.1.1(postcss@8.4.14)
dev: true
- /postcss-merge-rules/5.1.4_postcss@8.4.14:
+ /postcss-merge-rules@5.1.4(postcss@8.4.14):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8601,12 +6717,12 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.14
+ cssnano-utils: 3.1.0(postcss@8.4.14)
postcss: 8.4.14
postcss-selector-parser: 6.0.12
dev: true
- /postcss-minify-font-values/5.1.0_postcss@8.4.14:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8616,31 +6732,31 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients/5.1.1_postcss@8.4.14:
+ /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.3
- cssnano-utils: 3.1.0_postcss@8.4.14
+ 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.4_postcss@8.4.14:
+ /postcss-minify-params@5.1.4(postcss@8.4.14):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.14
+ 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.1_postcss@8.4.14:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.14):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8650,7 +6766,7 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /postcss-nested/5.0.6_postcss@8.4.14:
+ /postcss-nested@5.0.6(postcss@8.4.14):
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -8659,7 +6775,7 @@ packages:
postcss: 8.4.14
postcss-selector-parser: 6.0.12
- /postcss-normalize-charset/5.1.0_postcss@8.4.14:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8668,7 +6784,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-normalize-display-values/5.1.0_postcss@8.4.14:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8678,7 +6794,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.1.1_postcss@8.4.14:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8688,7 +6804,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.14:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8698,7 +6814,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string/5.1.0_postcss@8.4.14:
+ /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:
@@ -8708,7 +6824,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14:
+ /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:
@@ -8718,7 +6834,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.1.1_postcss@8.4.14:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8729,7 +6845,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url/5.1.0_postcss@8.4.14:
+ /postcss-normalize-url@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8740,7 +6856,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.14:
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8750,18 +6866,18 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.1.3_postcss@8.4.14:
+ /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.14
+ 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.2_postcss@8.4.14:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.14):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8772,7 +6888,7 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-reduce-transforms/5.1.0_postcss@8.4.14:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8782,14 +6898,14 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-selector-parser/6.0.12:
+ /postcss-selector-parser@6.0.12:
resolution: {integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo/5.1.0_postcss@8.4.14:
+ /postcss-svgo@5.1.0(postcss@8.4.14):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8800,7 +6916,7 @@ packages:
svgo: 2.8.0
dev: true
- /postcss-unique-selectors/5.1.1_postcss@8.4.14:
+ /postcss-unique-selectors@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8810,10 +6926,10 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.14:
+ /postcss@8.4.14:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -8821,64 +6937,88 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /prelude-ls/1.2.1:
+ /postcss@8.4.23:
+ resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: true
+
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- dev: true
- /prettier-eslint/15.0.1:
- resolution: {integrity: sha512-mGOWVHixSvpZWARqSDXbdtTL54mMBxc5oQYQ6RAqy8jecuNJBgN3t9E5a81G66F8x8fsKNiR1HWaBV66MJDOpg==}
- engines: {node: '>=10.0.0'}
+ /prettier-plugin-tailwindcss@0.2.8(prettier@2.6.2):
+ resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
+ engines: {node: '>=12.17.0'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@shufo/prettier-plugin-blade': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: '>=2.2.0'
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@shufo/prettier-plugin-blade':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
dependencies:
- '@types/eslint': 8.37.0
- '@types/prettier': 2.7.2
- '@typescript-eslint/parser': 5.27.1_eslint@8.17.0+typescript@4.7.3
- common-tags: 1.8.2
- dlv: 1.1.3
- eslint: 8.17.0
- indent-string: 4.0.0
- lodash.merge: 4.6.2
- loglevel-colored-level-prefix: 1.0.0
prettier: 2.6.2
- pretty-format: 23.6.0
- require-relative: 0.8.7
- typescript: 4.7.3
- vue-eslint-parser: 8.3.0_eslint@8.17.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /prettier-linter-helpers/1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- fast-diff: 1.2.0
dev: true
- /prettier/2.6.2:
+ /prettier@2.6.2:
resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-bytes/5.6.0:
+ /pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
dev: true
- /pretty-bytes/6.1.0:
+ /pretty-bytes@6.1.0:
resolution: {integrity: sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==}
engines: {node: ^14.13.1 || >=16.0.0}
dev: true
- /pretty-format/23.6.0:
- resolution: {integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==}
- dependencies:
- ansi-regex: 3.0.1
- ansi-styles: 3.2.1
- dev: true
-
- /pretty-format/26.6.2:
+ /pretty-format@26.6.2:
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
engines: {node: '>= 10'}
dependencies:
@@ -8886,79 +7026,72 @@ packages:
ansi-regex: 5.0.1
ansi-styles: 4.3.0
react-is: 17.0.2
- dev: true
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- dev: true
- /promise/8.3.0:
+ /promise@8.3.0:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
- dev: true
- /prompts/2.4.2:
+ /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:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- /prr/1.0.1:
+ /prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
dev: true
optional: true
- /pump/3.0.0:
+ /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:
+ /punycode@1.3.2:
resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
dev: false
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- dev: true
- /querystring/0.2.0:
+ /querystring@0.2.0:
resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
engines: {node: '>=0.4.x'}
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
dev: false
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-lru/5.1.1:
+ /quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
dev: true
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- dev: true
- /react-devtools-core/4.27.6:
+ /react-devtools-core@4.27.6:
resolution: {integrity: sha512-jeFNhEzcSwpiqmw+zix5IFibNEPmUodICN7ClrlRKGktzO/3FMteMb52l1NRUiz/ABSYt9hOZ9IPgVDrg5pyUw==}
dependencies:
shell-quote: 1.8.1
@@ -8966,9 +7099,8 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: true
- /react-dom/17.0.2_react@17.0.2:
+ /react-dom@17.0.2(react@17.0.2):
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
react: 17.0.2
@@ -8977,9 +7109,8 @@ packages:
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:
+ /react-error-boundary@3.1.4(react@17.0.2):
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
@@ -8989,11 +7120,11 @@ packages:
react: 17.0.2
dev: false
- /react-fast-compare/3.2.1:
+ /react-fast-compare@3.2.1:
resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
dev: false
- /react-ga/3.3.0_prop-types@15.8.1+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
@@ -9003,7 +7134,7 @@ packages:
react: 17.0.2
dev: false
- /react-helmet/6.1.0_react@17.0.2:
+ /react-helmet@6.1.0(react@17.0.2):
resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==}
peerDependencies:
react: '>=16.3.0'
@@ -9012,10 +7143,10 @@ packages:
prop-types: 15.8.1
react: 17.0.2
react-fast-compare: 3.2.1
- react-side-effect: 2.1.2_react@17.0.2
+ react-side-effect: 2.1.2(react@17.0.2)
dev: false
- /react-i18next/11.17.0_9724892b3df2999a6ee0ebb64e8fe4b0:
+ /react-i18next@11.17.0(i18next@21.8.9)(react-dom@17.0.2)(react-native@0.68.2)(react@17.0.2):
resolution: {integrity: sha512-ewq2S4bVUTRqOMAdM/XvzCn9xUPIryzeBQRghmJ8lC6VI/8Kp7z1GwoLyt8j7GB2ywhN2SjPk7LU4sHzVeu7aw==}
peerDependencies:
i18next: '>= 19.0.0'
@@ -9033,11 +7164,11 @@ packages:
html-parse-stringify: 3.0.1
i18next: 21.8.9
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-native: 0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375
+ react-dom: 17.0.2(react@17.0.2)
+ react-native: 0.68.2(@babel/core@7.18.2)(@babel/preset-env@7.18.2)(react@17.0.2)
dev: false
- /react-intersection-observer/8.34.0_react@17.0.2:
+ /react-intersection-observer@8.34.0(react@17.0.2):
resolution: {integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==}
peerDependencies:
react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0
@@ -9045,65 +7176,43 @@ packages:
react: 17.0.2
dev: false
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- /react-is/18.1.0:
+ /react-is@18.1.0:
resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
- dev: true
-
- /react-is/18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: false
-
- /react-lifecycles-compat/3.0.4:
- resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
- dev: false
- /react-modal/3.16.1_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==}
- engines: {node: '>=8'}
- peerDependencies:
- 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
+ /react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: false
- /react-native-codegen/0.0.17_@babel+preset-env@7.18.2:
+ /react-native-codegen@0.0.17(@babel/preset-env@7.18.2):
resolution: {integrity: sha512-7GIEUmAemH9uWwB6iYXNNsPoPgH06pxzGRmdBzK98TgFBdYJZ7CBuZFPMe4jmHQTPOkQazKZ/w5O6/71JBixmw==}
dependencies:
'@babel/parser': 7.21.8
flow-parser: 0.121.0
- jscodeshift: 0.13.1_@babel+preset-env@7.18.2
+ 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:
+ /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
+ react-native: 0.68.2(@babel/core@7.18.2)(@babel/preset-env@7.18.2)(react@17.0.2)
dev: false
- /react-native-gradle-plugin/0.0.6:
+ /react-native-gradle-plugin@0.0.6:
resolution: {integrity: sha512-eIlgtsmDp1jLC24dRn43hB3kEcZVqx6DUQbR0N1ABXGnMEafm9I3V3dUUeD1vh+Dy5WqijSoEwLNUPLgu5zDMg==}
- dev: true
- /react-native/0.68.2_ec0f6b3305e1470dcfd5efd5fff3d375:
+ /react-native@0.68.2(@babel/core@7.18.2)(@babel/preset-env@7.18.2)(react@17.0.2):
resolution: {integrity: sha512-qNMz+mdIirCEmlrhapAtAG+SWVx6MAiSfCbFNhfHqiqu1xw1OKXdzIrjaBEPihRC2pcORCoCHduHGQe/Pz9Yuw==}
engines: {node: '>=14'}
hasBin: true
@@ -9111,7 +7220,7 @@ packages:
react: 17.0.2
dependencies:
'@jest/create-cache-key-function': 27.5.1
- '@react-native-community/cli': 7.0.4_react-native@0.68.2
+ '@react-native-community/cli': 7.0.4(@babel/core@7.18.2)(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
@@ -9125,7 +7234,7 @@ packages:
hermes-engine: 0.11.0
invariant: 2.2.4
jsc-android: 250230.2.1
- metro-react-native-babel-transformer: 0.67.0
+ metro-react-native-babel-transformer: 0.67.0(@babel/core@7.18.2)
metro-runtime: 0.67.0
metro-source-map: 0.67.0
nullthrows: 1.1.1
@@ -9133,48 +7242,34 @@ packages:
promise: 8.3.0
react: 17.0.2
react-devtools-core: 4.27.6
- react-native-codegen: 0.0.17_@babel+preset-env@7.18.2
+ 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
+ react-shallow-renderer: 16.14.1(react@17.0.2)
regenerator-runtime: 0.13.11
scheduler: 0.20.2
stacktrace-parser: 0.1.10
- use-subscription: 1.5.1_react@17.0.2
+ use-subscription: 1.5.1(react@17.0.2)
whatwg-fetch: 3.6.2
ws: 6.2.2
transitivePeerDependencies:
+ - '@babel/core'
- '@babel/preset-env'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: true
- /react-refresh/0.13.0:
+ /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:
+ /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'}
- 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-responsive/9.0.0-beta.10_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:
@@ -9187,7 +7282,7 @@ packages:
shallow-equal: 1.2.1
dev: false
- /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2:
+ /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'
@@ -9195,11 +7290,11 @@ 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
+ react-dom: 17.0.2(react@17.0.2)
+ react-router: 6.3.0(react@17.0.2)
dev: false
- /react-router/6.3.0_react@17.0.2:
+ /react-router@6.3.0(react@17.0.2):
resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
react: '>=16.8'
@@ -9208,7 +7303,7 @@ packages:
react: 17.0.2
dev: false
- /react-shallow-renderer/16.14.1_react@17.0.2:
+ /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
@@ -9216,9 +7311,8 @@ packages:
object-assign: 4.1.1
react: 17.0.2
react-is: 17.0.2
- dev: true
- /react-side-effect/2.1.2_react@17.0.2:
+ /react-side-effect@2.1.2(react@17.0.2):
resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==}
peerDependencies:
react: ^16.3.0 || ^17.0.0 || ^18.0.0
@@ -9226,40 +7320,39 @@ packages:
react: 17.0.2
dev: false
- /react-transition-group/4.4.5_react-dom@17.0.2+react@17.0.2:
+ /react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.21.5
+ '@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
+ react-dom: 17.0.2(react@17.0.2)
dev: false
- /react-vertical-timeline-component/3.5.2_react@17.0.2:
+ /react-vertical-timeline-component@3.5.2(react@17.0.2):
resolution: {integrity: sha512-Wcb85NUvmygLFF45bfxVGU4AyHOBjdQY9IqB8uLG1jXWvIthkQft1ZJOGirIlYHSYnDl9sOs8ItL1sNtqA7GUg==}
requiresBuild: true
dependencies:
classnames: 2.3.2
prop-types: 15.8.1
- react-intersection-observer: 8.34.0_react@17.0.2
+ react-intersection-observer: 8.34.0(react@17.0.2)
transitivePeerDependencies:
- react
dev: false
- /react/17.0.2:
+ /react@17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- dev: false
- /readable-stream/2.3.8:
+ /readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
@@ -9269,28 +7362,25 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
- dev: true
- /readable-stream/3.6.2:
+ /readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- dev: true
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- /readline/1.3.0:
+ /readline@1.3.0:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
- dev: true
- /recast/0.20.5:
+ /recast@0.20.5:
resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
engines: {node: '>= 4'}
dependencies:
@@ -9298,37 +7388,32 @@ packages:
esprima: 4.0.1
source-map: 0.6.1
tslib: 2.5.0
- dev: true
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- dev: true
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: true
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.21.5
- dev: true
+ '@babel/runtime': 7.18.3
- /regex-not/1.0.2:
+ /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.5.0:
+ /regexp.prototype.flags@1.5.0:
resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -9337,12 +7422,11 @@ packages:
functions-have-names: 1.2.3
dev: true
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
- dev: true
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -9352,63 +7436,51 @@ packages:
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- dev: true
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- dev: true
- /relateurl/0.2.7:
+ /relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
dev: true
- /repeat-element/1.1.4:
+ /repeat-element@1.1.4:
resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /repeat-string/1.6.1:
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- dev: true
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: true
- /require-main-filename/2.0.0:
+ /require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- dev: true
-
- /require-relative/0.8.7:
- resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
- dev: true
- /resolve-from/3.0.0:
+ /resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
- dev: true
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve-url/0.2.1:
+ /resolve-url@0.2.1:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- dev: true
- /resolve/1.22.2:
+ /resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
@@ -9416,67 +7488,51 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
- hasBin: true
- dependencies:
- is-core-module: 2.12.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
-
- /restore-cursor/2.0.0:
+ /restore-cursor@2.0.0:
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
engines: {node: '>=4'}
dependencies:
onetime: 2.0.1
signal-exit: 3.0.7
- dev: true
- /restore-cursor/3.1.0:
+ /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:
+ /ret@0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
- dev: true
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rimraf/2.2.8:
+ /rimraf@2.2.8:
resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
hasBin: true
- dev: true
- /rimraf/2.6.3:
+ /rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rimraf/2.7.1:
+ /rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
- /rollup-plugin-terser/7.0.2_rollup@2.79.1:
+ /rollup-plugin-terser@7.0.2(rollup@2.79.1):
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
peerDependencies:
@@ -9489,7 +7545,7 @@ packages:
terser: 5.17.1
dev: true
- /rollup/2.79.1:
+ /rollup@2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
hasBin: true
@@ -9497,27 +7553,33 @@ packages:
fsevents: 2.3.2
dev: true
- /run-parallel/1.2.0:
+ /rollup@3.21.5:
+ resolution: {integrity: sha512-a4NTKS4u9PusbUJcfF4IMxuqjFzjm6ifj76P54a7cKnvVzJaG12BLVR+hgU2YDGHzyMMQNxLAZWuALsn8q2oQg==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
dev: true
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: true
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: true
- /safe-regex-test/1.0.0:
+ /safe-regex-test@1.0.0:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
@@ -9525,18 +7587,17 @@ packages:
is-regex: 1.1.4
dev: true
- /safe-regex/1.1.0:
+ /safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
- dev: true
- /safer-buffer/2.1.2:
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
optional: true
- /sass/1.62.1:
+ /sass@1.62.1:
resolution: {integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -9546,35 +7607,24 @@ packages:
source-map-js: 1.0.2
dev: true
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
- dev: true
- /scheduler/0.20.2:
+ /scheduler@0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
- dev: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- dev: true
-
- /semver/7.5.0:
- resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: true
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -9591,20 +7641,20 @@ packages:
on-finished: 2.4.1
range-parser: 1.2.1
statuses: 2.0.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /serialize-error/2.1.0:
+ /serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- dev: true
- /serialize-javascript/4.0.0:
+ /serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
randombytes: 2.1.0
dev: true
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -9612,13 +7662,13 @@ packages:
escape-html: 1.0.3
parseurl: 1.3.3
send: 0.18.0
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /set-blocking/2.0.0:
+ /set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- dev: true
- /set-value/2.0.1:
+ /set-value@2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -9626,56 +7676,47 @@ packages:
is-extendable: 0.1.1
is-plain-object: 2.0.4
split-string: 3.1.0
- dev: true
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- dev: true
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- dev: true
- /shallow-equal/1.2.1:
+ /shallow-equal@1.2.1:
resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==}
dev: false
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- dev: false
- /shebang-command/1.2.0:
+ /shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
- dev: true
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- dev: true
- /shebang-regex/1.0.0:
+ /shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- dev: true
- /shell-quote/1.8.1:
+ /shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- dev: true
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
@@ -9683,25 +7724,23 @@ packages:
object-inspect: 1.12.3
dev: true
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: true
- /simple-plist/1.3.1:
+ /simple-plist@1.3.1:
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
dependencies:
bplist-creator: 0.1.0
bplist-parser: 0.3.1
plist: 3.0.6
- dev: true
- /simple-swizzle/0.2.2:
+ /simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
dependencies:
is-arrayish: 0.3.2
dev: false
- /single-spa-layout/2.1.0:
+ /single-spa-layout@2.1.0:
resolution: {integrity: sha512-OtacG0uc+4BGwfc5Geu9m8EG/ngR7Y08Q1kx2jE3RkRBZFNOryWPD6muiH3d2FeeT+ZrWkS1RiNdzWpOXkVVfw==}
engines: {node: '>=12'}
dependencies:
@@ -9711,7 +7750,7 @@ packages:
single-spa: 6.0.0-beta.3
dev: false
- /single-spa-react/4.6.1_f9b20e8c2eeb44bdeef755a440c59c76:
+ /single-spa-react@4.6.1(@types/react-dom@18.0.5)(@types/react@18.0.12)(react@17.0.2):
resolution: {integrity: sha512-19Yr1f6u9ix/wTI+OVLzX/KJ258xCyfe1Zpw7NKoI02QWBLx5B9l9XmBx9gqVtkrgP5ARR0Wr3ztY7EN8V1DAA==}
peerDependencies:
'@types/react': '*'
@@ -9724,49 +7763,44 @@ packages:
react: 17.0.2
dev: false
- /single-spa/5.9.4:
+ /single-spa@5.9.4:
resolution: {integrity: sha512-QkEoh0AzGuU82qnbUUk0ydF78QbU5wMKqKKJn7uUQfBiOYlRQEfIOpLM4m23Sab+kTOLI1kbYhYeiQ7fX5KVVw==}
dev: false
- /single-spa/6.0.0-beta.3:
+ /single-spa@6.0.0-beta.3:
resolution: {integrity: sha512-nyRyqq88hBF+X9y2JZrrOcypYhLV3ziRGyU9hiW+EQEU3FmkmWy9eU2DEC1Q1C3XEKv2Of/khHfanT/q2LNWSw==}
dev: false
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- dev: true
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- dev: true
- /slice-ansi/2.1.0:
+ /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
- /snapdragon-node/2.1.1:
+ /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:
+ /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:
+ /snapdragon@0.8.2:
resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -9778,13 +7812,14 @@ packages:
source-map: 0.5.7
source-map-resolve: 0.5.3
use: 3.1.1
- dev: true
+ transitivePeerDependencies:
+ - supports-color
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-resolve/0.5.3:
+ /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:
@@ -9793,114 +7828,96 @@ packages:
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
- dev: true
- /source-map-support/0.5.21:
+ /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-url/0.4.1:
+ /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:
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- dev: true
- /source-map/0.7.4:
+ /source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- dev: true
- /source-map/0.8.0-beta.0:
+ /source-map@0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
engines: {node: '>= 8'}
dependencies:
whatwg-url: 7.1.0
dev: true
- /sourcemap-codec/1.4.8:
+ /sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
dev: true
- /spawn-command/0.0.2-1:
+ /spawn-command@0.0.2-1:
resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
dev: true
- /split-string/3.1.0:
+ /split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 3.0.2
- dev: true
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- dev: true
- /stable/0.1.8:
+ /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
- /stackframe/1.3.4:
+ /stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
- dev: true
- /stacktrace-parser/0.1.10:
+ /stacktrace-parser@0.1.10:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
dependencies:
type-fest: 0.7.1
- dev: true
- /static-extend/0.1.2:
+ /static-extend@0.1.2:
resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
engines: {node: '>=0.10.0'}
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
- dev: true
- /statuses/1.5.0:
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- dev: true
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- dev: true
- /stream-buffers/2.2.0:
+ /stream-buffers@2.2.0:
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
engines: {node: '>= 0.10.0'}
- dev: true
-
- /string-natural-compare/3.0.1:
- resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
- dev: true
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- dev: true
- /string.prototype.matchall/4.0.8:
+ /string.prototype.matchall@4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
@@ -9913,7 +7930,7 @@ packages:
side-channel: 1.0.4
dev: true
- /string.prototype.trim/1.2.7:
+ /string.prototype.trim@1.2.7:
resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -9922,7 +7939,7 @@ packages:
es-abstract: 1.21.2
dev: true
- /string.prototype.trimend/1.0.6:
+ /string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
@@ -9930,7 +7947,7 @@ packages:
es-abstract: 1.21.2
dev: true
- /string.prototype.trimstart/1.0.6:
+ /string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
@@ -9938,19 +7955,17 @@ packages:
es-abstract: 1.21.2
dev: true
- /string_decoder/1.1.1:
+ /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:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- dev: true
- /stringify-object/3.3.0:
+ /stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
dependencies:
@@ -9959,48 +7974,32 @@ packages:
is-regexp: 1.0.0
dev: true
- /strip-ansi/3.0.1:
- resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: true
-
- /strip-ansi/5.2.0:
+ /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:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- dev: true
-
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
- /strip-comments/2.0.1:
+ /strip-comments@2.0.1:
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
engines: {node: '>=10'}
dev: true
- /strip-eof/1.0.0:
+ /strip-eof@1.0.0:
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- dev: true
- /styled-components/5.3.5_a2a2181cfa9fa3a87be5c14ec7e31da3:
+ /styled-components@5.3.5(react-dom@17.0.2)(react-is@18.1.0)(react@17.0.2):
resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==}
engines: {node: '>=10'}
requiresBuild: true
@@ -10010,21 +8009,20 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.21.4
- '@babel/traverse': 7.21.5_supports-color@5.5.0
+ '@babel/traverse': 7.21.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.0
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.0.7_styled-components@5.3.5
+ babel-plugin-styled-components: 2.0.7(styled-components@5.3.5)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 17.0.2
- react-dom: 17.0.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.1_postcss@8.4.14:
+ /stylehacks@5.1.1(postcss@8.4.14):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10035,16 +8033,16 @@ packages:
postcss-selector-parser: 6.0.12
dev: true
- /stylis/4.1.4:
+ /stylis@4.1.4:
resolution: {integrity: sha512-USf5pszRYwuE6hg9by0OkKChkQYEXfkeTtm0xKw+jqQhwyjCVLdYyMBK7R+n7dhzsblAWJnGxju4vxq5eH20GQ==}
dev: false
- /stylus/0.59.0:
+ /stylus@0.59.0:
resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==}
hasBin: true
dependencies:
'@adobe/css-tools': 4.2.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
glob: 7.2.3
sax: 1.2.4
source-map: 0.7.4
@@ -10052,40 +8050,32 @@ packages:
- supports-color
dev: true
- /sudo-prompt/9.2.1:
+ /sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
- dev: true
-
- /supports-color/2.0.0:
- resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
- engines: {node: '>=0.8.0'}
- dev: true
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -10099,10 +8089,12 @@ packages:
stable: 0.1.8
dev: true
- /tailwindcss/3.0.24:
+ /tailwindcss@3.0.24(postcss@8.4.14):
resolution: {integrity: sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==}
engines: {node: '>=12.13.0'}
hasBin: true
+ peerDependencies:
+ postcss: ^8.0.9
dependencies:
arg: 5.0.2
chokidar: 3.5.3
@@ -10118,9 +8110,9 @@ packages:
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.14
- postcss-js: 4.0.1_postcss@8.4.14
- postcss-load-config: 3.1.4_postcss@8.4.14
- postcss-nested: 5.0.6_postcss@8.4.14
+ postcss-js: 4.0.1(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.12
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
@@ -10128,27 +8120,25 @@ packages:
transitivePeerDependencies:
- ts-node
- /temp-dir/2.0.0:
+ /temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
dev: true
- /temp/0.8.3:
+ /temp@0.8.3:
resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==}
engines: {'0': node >=0.8.0}
dependencies:
os-tmpdir: 1.0.2
rimraf: 2.2.8
- dev: true
- /temp/0.8.4:
+ /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:
+ /tempy@0.6.0:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
dependencies:
@@ -10158,7 +8148,7 @@ packages:
unique-string: 2.0.0
dev: true
- /terser/5.17.1:
+ /terser@5.17.1:
resolution: {integrity: sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==}
engines: {node: '>=10'}
hasBin: true
@@ -10169,55 +8159,45 @@ packages:
source-map-support: 0.5.21
dev: true
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: true
- /throat/5.0.0:
+ /throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- dev: true
- /through2/2.0.5:
+ /through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
readable-stream: 2.3.8
xtend: 4.0.2
- dev: true
-
- /tiny-warning/1.0.3:
- resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- dev: false
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- dev: true
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-object-path/0.3.0:
+ /to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
- dev: true
- /to-regex-range/2.1.1:
+ /to-regex-range@2.1.1:
resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
repeat-string: 1.6.1
- dev: true
- /to-regex-range/5.0.1:
+ /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:
+ /to-regex@3.0.2:
resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -10225,79 +8205,55 @@ packages:
extend-shallow: 3.0.2
regex-not: 1.0.2
safe-regex: 1.1.0
- dev: true
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- dev: true
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /tr46/1.0.1:
+ /tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
punycode: 2.3.0
dev: true
- /tree-kill/1.2.2:
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
dev: true
- /ts-config-single-spa/3.0.0:
+ /ts-config-single-spa@3.0.0:
resolution: {integrity: sha512-SS24+FHn9mi0awcoHN4l6uioBxPjgOnwI8adVZeNnw8oXJ8VyAGDqBfRF1EMVtd9Va0bxA8kkeU0SWtLS/Guvg==}
dev: true
- /tsconfig-paths/3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
-
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.5.0:
+ /tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
- /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.7.3
- dev: true
-
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- dev: true
- /type-fest/0.16.0:
+ /type-fest@0.16.0:
resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- dev: true
- /type-fest/0.7.1:
+ /type-fest@0.7.1:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- dev: true
- /typed-array-length/1.0.4:
+ /typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
call-bind: 1.0.2
@@ -10305,13 +8261,13 @@ packages:
is-typed-array: 1.1.10
dev: true
- /typescript/4.7.3:
+ /typescript@4.7.3:
resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /uglify-es/3.3.9:
+ /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
@@ -10319,9 +8275,8 @@ packages:
dependencies:
commander: 2.13.0
source-map: 0.6.1
- dev: true
- /unbox-primitive/1.0.2:
+ /unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
call-bind: 1.0.2
@@ -10330,34 +8285,30 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /unfetch/4.2.0:
+ /unfetch@4.2.0:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
dev: false
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- dev: true
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- dev: true
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- dev: true
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- dev: true
- /union-value/1.0.1:
+ /union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -10365,51 +8316,47 @@ packages:
get-value: 2.0.6
is-extendable: 0.1.1
set-value: 2.0.1
- dev: true
- /unique-string/2.0.0:
+ /unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
dependencies:
crypto-random-string: 2.0.0
dev: true
- /universal-cookie/4.0.4:
+ /universal-cookie@4.0.4:
resolution: {integrity: sha512-lbRVHoOMtItjWbM7TwDLdl8wug7izB0tq3/YVKhT/ahB4VDvWMyvnADfnJI8y6fSvsjh51Ix7lTGC6Tn4rMPhw==}
dependencies:
'@types/cookie': 0.3.3
cookie: 0.4.2
dev: false
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- dev: true
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
dev: true
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- dev: true
- /unset-value/1.0.0:
+ /unset-value@1.0.0:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
dependencies:
has-value: 0.3.1
isobject: 3.0.1
- dev: true
- /upath/1.2.0:
+ /upath@1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
dev: true
- /update-browserslist-db/1.0.11_browserslist@4.21.5:
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
@@ -10418,91 +8365,82 @@ packages:
browserslist: 4.21.5
escalade: 3.1.1
picocolors: 1.0.0
- dev: true
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
- dev: true
- /urix/0.1.0:
+ /urix@0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
- dev: true
- /url/0.11.0:
+ /url@0.11.0:
resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
dependencies:
punycode: 1.3.2
querystring: 0.2.0
dev: false
- /use-subscription/1.5.1_react@17.0.2:
+ /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:
+ /use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /utils-merge/1.0.1:
+ /utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- dev: true
- /uuid/3.4.0:
+ /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
- /uuid/7.0.3:
+ /uuid@7.0.3:
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
hasBin: true
- dev: true
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
- dev: true
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- dev: true
- /vite-plugin-dynamic-import/0.9.6:
+ /vite-plugin-dynamic-import@0.9.6:
resolution: {integrity: sha512-FpgqaobDq/glVDKRAs3+Wt/PiVoVuEXHLrh0snHrvaQYSTPXiUkMTzB4eFQUIhcgsFBbkg4Jic1cV6gHr8b+qg==}
dependencies:
fast-glob: 3.2.12
vite-plugin-utils: 0.1.0
dev: true
- /vite-plugin-ejs/1.4.4:
+ /vite-plugin-ejs@1.4.4:
resolution: {integrity: sha512-R3Xt8bPlU/jrzia7iC4sA1bQTRM+JjMrVAk/CTRX8w1EHD8G6xVbSZ6XJbW6kj94M4jEyDu32BAq4JaGoOtnkw==}
dependencies:
ejs: 3.1.9
dev: true
- /vite-plugin-html-env/1.1.2_vite@2.9.10:
+ /vite-plugin-html-env@1.1.2(vite@4.3.5):
resolution: {integrity: sha512-7cFcNYnnRiCR0oUbw1nU8VuAMEdQisVdWU1gkSq5aS4UxSdwnJesr/wzz/cGHzkrM7EWarIoNXzuAYNY0C6hvA==}
engines: {node: '>=12.0.0'}
peerDependencies:
vite: ^2.1.3
dependencies:
- vite: 2.9.10
+ vite: 4.3.5(@types/node@17.0.41)
dev: true
- /vite-plugin-html/3.2.0_vite@2.9.10:
+ /vite-plugin-html@3.2.0(vite@4.3.5):
resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==}
peerDependencies:
vite: '>=2.0.0'
@@ -10519,158 +8457,115 @@ packages:
html-minifier-terser: 6.1.0
node-html-parser: 5.4.2
pathe: 0.2.0
- vite: 2.9.10
+ vite: 4.3.5(@types/node@17.0.41)
dev: true
- /vite-plugin-import-maps/0.1.2:
+ /vite-plugin-import-maps@0.1.2(vite@4.3.5):
resolution: {integrity: sha512-FEUMPFrPzXYWNCLYRk8p0GMygsZJ2s9pr6Wrql6qOletelNgmrznui/8GnAebNt9H5dh+BgLRc1+X03SlPwfgg==}
+ peerDependencies:
+ vite: ^2.0.4
dependencies:
less: 4.1.3
sass: 1.62.1
stylus: 0.59.0
- vite: 2.6.14_df6f5016733938ca7d7c4a3a3ff4e183
+ vite: 4.3.5(@types/node@17.0.41)
transitivePeerDependencies:
- supports-color
dev: true
- /vite-plugin-pwa/0.12.0_vite@2.9.10:
+ /vite-plugin-pwa@0.12.0(vite@4.3.5)(workbox-build@6.5.4)(workbox-window@6.5.3):
resolution: {integrity: sha512-KYD+cnS5ExLF3T28NkfzBLZ53ehHlp+qMhHGFNh0zlVGpFHrJkL2v9wd4AMi7ZkBTffgeNatIFiv8rhCsMSxBQ==}
peerDependencies:
vite: ^2.0.0
+ workbox-build: ^6.4.0
+ workbox-window: ^6.4.0
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
fast-glob: 3.2.12
pretty-bytes: 6.1.0
rollup: 2.79.1
- vite: 2.9.10
+ vite: 4.3.5(@types/node@17.0.41)
workbox-build: 6.5.4
workbox-window: 6.5.3
transitivePeerDependencies:
- - '@types/babel__core'
- supports-color
dev: true
- /vite-plugin-utils/0.1.0:
+ /vite-plugin-utils@0.1.0:
resolution: {integrity: sha512-zmW5venCPEZ5hRDmwhHdxHAcmTXYBF0MobZQQBGz92VkdHR9Mm3hf7dioPnA7ahHs32HdjI1Bpxisg5IhH4bvg==}
dependencies:
acorn-walk: 8.2.0
fast-glob: 3.2.12
dev: true
- /vite/2.6.14_df6f5016733938ca7d7c4a3a3ff4e183:
- resolution: {integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==}
- engines: {node: '>=12.2.0'}
+ /vite@4.3.5(@types/node@17.0.41):
+ resolution: {integrity: sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
- dependencies:
- esbuild: 0.13.15
- less: 4.1.3
- postcss: 8.4.14
- resolve: 1.22.2
- rollup: 2.79.1
- sass: 1.62.1
- stylus: 0.59.0
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /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:
+ sugarss:
optional: true
- stylus:
+ terser:
optional: true
dependencies:
- esbuild: 0.14.54
- postcss: 8.4.14
- resolve: 1.22.2
- rollup: 2.79.1
+ '@types/node': 17.0.41
+ esbuild: 0.14.43
+ postcss: 8.4.23
+ rollup: 3.21.5
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vlq/1.0.1:
+ /vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- dev: true
- /void-elements/3.1.0:
+ /void-elements@3.1.0:
resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
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:
- eslint: '>=6.0.0'
- dependencies:
- debug: 4.3.4
- eslint: 8.17.0
- eslint-scope: 7.2.0
- eslint-visitor-keys: 3.4.0
- espree: 9.5.1
- esquery: 1.5.0
- lodash: 4.17.21
- semver: 7.5.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /walker/1.0.8:
+ /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
- /wcwidth/1.0.1:
+ /wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
- dev: true
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- /webidl-conversions/4.0.2:
+ /webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
dev: true
- /whatwg-fetch/3.6.2:
+ /whatwg-fetch@3.6.2:
resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
- dev: true
- /whatwg-url/5.0.0:
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /whatwg-url/7.1.0:
+ /whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
dependencies:
lodash.sortby: 4.7.0
@@ -10678,7 +8573,7 @@ packages:
webidl-conversions: 4.0.2
dev: true
- /which-boxed-primitive/1.0.2:
+ /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
@@ -10688,11 +8583,10 @@ packages:
is-symbol: 1.0.4
dev: true
- /which-module/2.0.1:
+ /which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- dev: true
- /which-typed-array/1.1.9:
+ /which-typed-array@1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -10704,50 +8598,47 @@ packages:
is-typed-array: 1.1.10
dev: true
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
- dev: true
- /which/2.0.2:
+ /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:
+ /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.4:
+ /workbox-background-sync@6.5.4:
resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==}
dependencies:
idb: 7.1.1
workbox-core: 6.5.4
dev: true
- /workbox-broadcast-update/6.5.4:
+ /workbox-broadcast-update@6.5.4:
resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-build/6.5.4:
+ /workbox-build@6.5.4:
resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==}
engines: {node: '>=10.0.0'}
dependencies:
- '@apideck/better-ajv-errors': 0.3.6_ajv@8.12.0
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
'@babel/core': 7.18.2
- '@babel/preset-env': 7.18.2_@babel+core@7.18.2
- '@babel/runtime': 7.21.5
- '@rollup/plugin-babel': 5.3.1_@babel+core@7.18.2+rollup@2.79.1
- '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1
- '@rollup/plugin-replace': 2.4.2_rollup@2.79.1
+ '@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.79.1)
+ '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
+ '@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
ajv: 8.12.0
common-tags: 1.8.2
@@ -10757,7 +8648,7 @@ packages:
lodash: 4.17.21
pretty-bytes: 5.6.0
rollup: 2.79.1
- rollup-plugin-terser: 7.0.2_rollup@2.79.1
+ rollup-plugin-terser: 7.0.2(rollup@2.79.1)
source-map: 0.8.0-beta.0
stringify-object: 3.3.0
strip-comments: 2.0.1
@@ -10783,40 +8674,40 @@ packages:
- supports-color
dev: true
- /workbox-cacheable-response/6.5.3:
+ /workbox-cacheable-response@6.5.3:
resolution: {integrity: sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==}
dependencies:
workbox-core: 6.5.3
dev: false
- /workbox-cacheable-response/6.5.4:
+ /workbox-cacheable-response@6.5.4:
resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-core/6.5.3:
+ /workbox-core@6.5.3:
resolution: {integrity: sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==}
- /workbox-core/6.5.4:
+ /workbox-core@6.5.4:
resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==}
dev: true
- /workbox-expiration/6.5.3:
+ /workbox-expiration@6.5.3:
resolution: {integrity: sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==}
dependencies:
idb: 6.1.5
workbox-core: 6.5.3
dev: false
- /workbox-expiration/6.5.4:
+ /workbox-expiration@6.5.4:
resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==}
dependencies:
idb: 7.1.1
workbox-core: 6.5.4
dev: true
- /workbox-google-analytics/6.5.4:
+ /workbox-google-analytics@6.5.4:
resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==}
dependencies:
workbox-background-sync: 6.5.4
@@ -10825,13 +8716,13 @@ packages:
workbox-strategies: 6.5.4
dev: true
- /workbox-navigation-preload/6.5.4:
+ /workbox-navigation-preload@6.5.4:
resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-precaching/6.5.3:
+ /workbox-precaching@6.5.3:
resolution: {integrity: sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==}
dependencies:
workbox-core: 6.5.3
@@ -10839,7 +8730,7 @@ packages:
workbox-strategies: 6.5.3
dev: false
- /workbox-precaching/6.5.4:
+ /workbox-precaching@6.5.4:
resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==}
dependencies:
workbox-core: 6.5.4
@@ -10847,13 +8738,13 @@ packages:
workbox-strategies: 6.5.4
dev: true
- /workbox-range-requests/6.5.4:
+ /workbox-range-requests@6.5.4:
resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-recipes/6.5.4:
+ /workbox-recipes@6.5.4:
resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==}
dependencies:
workbox-cacheable-response: 6.5.4
@@ -10864,64 +8755,63 @@ packages:
workbox-strategies: 6.5.4
dev: true
- /workbox-routing/6.5.3:
+ /workbox-routing@6.5.3:
resolution: {integrity: sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==}
dependencies:
workbox-core: 6.5.3
dev: false
- /workbox-routing/6.5.4:
+ /workbox-routing@6.5.4:
resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-strategies/6.5.3:
+ /workbox-strategies@6.5.3:
resolution: {integrity: sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==}
dependencies:
workbox-core: 6.5.3
dev: false
- /workbox-strategies/6.5.4:
+ /workbox-strategies@6.5.4:
resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==}
dependencies:
workbox-core: 6.5.4
dev: true
- /workbox-streams/6.5.4:
+ /workbox-streams@6.5.4:
resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==}
dependencies:
workbox-core: 6.5.4
workbox-routing: 6.5.4
dev: true
- /workbox-sw/6.5.4:
+ /workbox-sw@6.5.4:
resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==}
dev: true
- /workbox-window/6.5.3:
+ /workbox-window@6.5.3:
resolution: {integrity: sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==}
dependencies:
'@types/trusted-types': 2.0.3
workbox-core: 6.5.3
- /workbox-window/6.5.4:
+ /workbox-window@6.5.4:
resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==}
dependencies:
'@types/trusted-types': 2.0.3
workbox-core: 6.5.4
dev: true
- /wrap-ansi/6.2.0:
+ /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:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -10930,25 +8820,30 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- dev: true
- /write-file-atomic/2.4.3:
+ /write-file-atomic@2.4.3:
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
dependencies:
graceful-fs: 4.2.11
imurmurhash: 0.1.4
signal-exit: 3.0.7
- dev: true
- /ws/6.2.2:
+ /ws@6.2.2:
resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
dependencies:
async-limiter: 1.0.1
- dev: true
- /ws/7.5.9:
+ /ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -10959,66 +8854,55 @@ packages:
optional: true
utf-8-validate:
optional: true
- dev: true
- /xcode/3.0.1:
+ /xcode@3.0.1:
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
engines: {node: '>=10.0.0'}
dependencies:
simple-plist: 1.3.1
uuid: 7.0.3
- dev: true
- /xmlbuilder/15.1.1:
+ /xmlbuilder@15.1.1:
resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
engines: {node: '>=8.0'}
- dev: true
- /xmldoc/1.3.0:
+ /xmldoc@1.3.0:
resolution: {integrity: sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==}
dependencies:
sax: 1.2.4
- dev: true
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- /y18n/4.0.3:
+ /y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
- dev: true
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
dev: true
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- dev: true
- /yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: true
-
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yargs-parser/18.1.3:
+ /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/21.1.1:
+ /yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
dev: true
- /yargs/15.4.1:
+ /yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
dependencies:
@@ -11033,9 +8917,8 @@ packages:
which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 18.1.3
- dev: true
- /yargs/17.7.2:
+ /yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
dependencies:
@@ -11048,13 +8931,13 @@ packages:
yargs-parser: 21.1.1
dev: true
- /zen-observable-ts/0.8.19:
+ /zen-observable-ts@0.8.19:
resolution: {integrity: sha512-u1a2rpE13G+jSzrg3aiCqXU5tN2kw41b+cBZGmnc+30YimdkKiDj9bTowcB41eL77/17RF/h+393AuVgShyheQ==}
dependencies:
tslib: 1.14.1
zen-observable: 0.8.15
dev: false
- /zen-observable/0.8.15:
+ /zen-observable@0.8.15:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
dev: false
diff --git a/apps/root/src/App.tsx b/apps/root/src/App.tsx
index 10afba034..2d6ab791b 100644
--- a/apps/root/src/App.tsx
+++ b/apps/root/src/App.tsx
@@ -1,42 +1,42 @@
-import React, { useEffect, lazy, Suspense, useContext } from "react";
-
-import { Hub } from "@aws-amplify/core";
-import LoadingSpinner from "@bit/wasedatime.core.ts.ui.loading-spinner";
-import ReactGA from "react-ga";
-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 CommonStyle from "@app/common-style";
-import ErrorFallback from "@app/components/ErrorFallback";
-import PrivacyPolicy from "@app/components/PrivacyPolicy";
-import TermsOfService from "@app/components/TermsOfService";
-import RedirectPage from "@app/components/user/RedirectPage";
+import React, { useEffect, lazy, Suspense, useContext } from "react"
+
+import { Hub } from "@aws-amplify/core"
+import { LoadingSpinner } from "wasedatime-ui"
+import ReactGA from "react-ga"
+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 CommonStyle from "@app/common-style"
+import ErrorFallback from "@app/components/ErrorFallback"
+import PrivacyPolicy from "@app/components/PrivacyPolicy"
+import TermsOfService from "@app/components/TermsOfService"
+import RedirectPage from "@app/components/user/RedirectPage"
import {
gaUserSignIn,
gaUserSignInFailure,
gaUserSignOut,
-} from "@app/ga/eventActions";
-import { gaUser } from "@app/ga/eventCategories";
-import { ThemeContext, ThemeProvider } from "@app/utils/theme-context";
+} from "@app/ga/eventActions"
+import { gaUser } from "@app/ga/eventCategories"
+import { ThemeContext, ThemeProvider } from "@app/utils/theme-context"
-const AboutUs = lazy(() => import("@app/components/aboutUs/AboutUs"));
-const Home = lazy(() => import("@app/components/Home"));
-const Feeds = lazy(() => import("@app/components/Feeds"));
+const AboutUs = lazy(() => import("@app/components/aboutUs/AboutUs"))
+const Home = lazy(() => import("@app/components/Home"))
+const Feeds = lazy(() => import("@app/components/Feeds"))
const NotFound = () => {
- useEffect(() => navigateToUrl("/"), []);
+ useEffect(() => navigateToUrl("/"), [])
- return ;
-};
+ return
+}
const Redirect = ({ to }: { to: string }) => {
- useEffect(() => navigateToUrl(to), []);
+ useEffect(() => navigateToUrl(to), [])
- return null;
-};
+ return null
+}
const AppRoutes = () => {
useEffect(() => {
@@ -46,30 +46,30 @@ const AppRoutes = () => {
ReactGA.event({
category: gaUser,
action: gaUserSignIn,
- });
- break;
+ })
+ break
case "signOut":
ReactGA.event({
category: gaUser,
action: gaUserSignOut,
- });
- break;
+ })
+ break
case "signIn_failure":
ReactGA.event({
category: gaUser,
action: gaUserSignInFailure,
- });
- break;
+ })
+ break
case "customOAuthState":
- window.location.pathname = data;
- break;
+ window.location.pathname = data
+ break
default:
- break;
+ break
}
- });
+ })
- return unsubscribe;
- }, []);
+ return unsubscribe
+ }, [])
return (
@@ -86,24 +86,24 @@ const AppRoutes = () => {
>} path="/career" />
} path="*" />
- );
-};
+ )
+}
const LoadingSpinnerContainer = () => {
- const { theme } = useContext(ThemeContext);
+ const { theme } = useContext(ThemeContext)
return (
- );
-};
+ )
+}
const App = () => {
- const { i18n } = useTranslation();
+ const { i18n } = useTranslation()
useEffect(() => {
- i18n.changeLanguage(localStorage.getItem("wasedatime-lng"));
- }, []);
+ i18n.changeLanguage(localStorage.getItem("wasedatime-lng"))
+ }, [])
return (
<>
@@ -141,7 +141,7 @@ const App = () => {
>
- );
-};
+ )
+}
-export default App;
+export default App
diff --git a/apps/root/src/assets/img/home/TitleLogo.tsx b/apps/root/src/assets/img/home/TitleLogo.tsx
index 4e1e03edd..cd7cd54a9 100644
--- a/apps/root/src/assets/img/home/TitleLogo.tsx
+++ b/apps/root/src/assets/img/home/TitleLogo.tsx
@@ -1,13 +1,13 @@
-import * as React from "react";
+import * as React from "react"
export const TitleLogo = ({
width = "269",
height = "37",
className,
}: {
- width?: string;
- height?: string;
- className?: string;
+ width?: string
+ height?: string
+ className?: string
}) => (
-);
+)
diff --git a/apps/root/src/common-style.ts b/apps/root/src/common-style.ts
index 65a884a1d..35204a8d6 100644
--- a/apps/root/src/common-style.ts
+++ b/apps/root/src/common-style.ts
@@ -1,4 +1,4 @@
-import { createGlobalStyle } from "styled-components";
+import { createGlobalStyle } from "styled-components"
const CommonStyle = createGlobalStyle`
*,
@@ -68,6 +68,6 @@ a:focus {
outline: 0;
}
-`;
+`
-export default CommonStyle;
+export default CommonStyle
diff --git a/apps/root/src/components/ErrorFallback.tsx b/apps/root/src/components/ErrorFallback.tsx
index ac4d8307d..eec4eb2ed 100644
--- a/apps/root/src/components/ErrorFallback.tsx
+++ b/apps/root/src/components/ErrorFallback.tsx
@@ -1,8 +1,8 @@
-import React from "react";
+import React from "react"
interface Props {
- error: Error;
- resetError: () => void;
+ error: Error
+ resetError: () => void
}
const ErrorFallback = ({ error }: Props) => (
@@ -26,5 +26,5 @@ const ErrorFallback = ({ error }: Props) => (
ご協力ありがとうございます!
-);
-export default ErrorFallback;
+)
+export default ErrorFallback
diff --git a/apps/root/src/components/Feeds.tsx b/apps/root/src/components/Feeds.tsx
index 664fc27aa..f560c491d 100644
--- a/apps/root/src/components/Feeds.tsx
+++ b/apps/root/src/components/Feeds.tsx
@@ -1,16 +1,15 @@
-import * as React from "react";
+import * as React from "react"
-import Header from "@bit/wasedatime.core.ts.ui.header";
-import LoadingSpinner from "@bit/wasedatime.core.ts.ui.loading-spinner";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { Header, LoadingSpinner } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import { ThemeContext } from "@app/utils/theme-context";
+import { ThemeContext } from "@app/utils/theme-context"
const FeedsWrapper = styled.div`
display: flex;
flex-direction: column;
-`;
+`
const HeaderWrapper = styled.div`
flex: 0 0 67px;
@@ -18,14 +17,14 @@ const HeaderWrapper = styled.div`
font-size: 32px;
font-family: Lato, Yu Gothic Medium, Segoe UI;
}
-`;
+`
const Feeds = () => {
- const [feedsLoaded, setFeedsLoaded] = React.useState(false);
- const { t, i18n } = useTranslation();
- const { theme, setTheme } = React.useContext(ThemeContext);
+ const [feedsLoaded, setFeedsLoaded] = React.useState(false)
+ const { t, i18n } = useTranslation()
+ const { theme, setTheme } = React.useContext(ThemeContext)
- const feedsBasePath = import.meta.env.VITE_MF_FEEDS_BASE_PATH;
+ const feedsBasePath = import.meta.env.VITE_MF_FEEDS_BASE_PATH
return (
@@ -51,7 +50,7 @@ const Feeds = () => {
/>
- );
-};
+ )
+}
-export default Feeds;
+export default Feeds
diff --git a/apps/root/src/components/Home.tsx b/apps/root/src/components/Home.tsx
index afde3ece4..fe8250d7c 100644
--- a/apps/root/src/components/Home.tsx
+++ b/apps/root/src/components/Home.tsx
@@ -1,30 +1,27 @@
-import React, { useContext, useState } from "react";
-import { useNavigate } from "react-router-dom";
+import React, { useContext, useState } from "react"
+import { useNavigate } from "react-router-dom"
-import { WrapperWithBackground } from "@bit/wasedatime.core.ts.styles.wrapper";
-import Header from "@bit/wasedatime.core.ts.ui.header";
-import { Logo } from "@bit/wasedatime.core.ts.ui.logo";
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
-import ReactGA from "react-ga";
-import { WithTranslation, withTranslation } from "react-i18next";
-import { navigateToUrl } from "single-spa";
-import styled from "styled-components";
+import { WrapperWithBackground, Header, Logo, media } from "wasedatime-ui"
+import ReactGA from "react-ga"
+import { WithTranslation, withTranslation } from "react-i18next"
+import { navigateToUrl } from "single-spa"
+import styled from "styled-components"
-import homeBackgroundDark from "@app/assets/img/home/home_background-dark.png";
-import homeBackgroundLight from "@app/assets/img/home/home_background-light.jpg";
-import { TitleLogo } from "@app/assets/img/home/TitleLogo";
-import HomeModal from "@app/components/home/HomeModal";
-import { gaAppendActionWithLng, gaChangeLanguage } from "@app/ga/eventActions";
-import { gaLanguage } from "@app/ga/eventCategories";
-import { ThemeContext } from "@app/utils/theme-context";
+import homeBackgroundDark from "@app/assets/img/home/home_background-dark.png"
+import homeBackgroundLight from "@app/assets/img/home/home_background-light.jpg"
+import { TitleLogo } from "@app/assets/img/home/TitleLogo"
+import HomeModal from "@app/components/home/HomeModal"
+import { gaAppendActionWithLng, gaChangeLanguage } from "@app/ga/eventActions"
+import { gaLanguage } from "@app/ga/eventCategories"
+import { ThemeContext } from "@app/utils/theme-context"
const StyledWrapper = styled(WrapperWithBackground)`
background-repeat: no-repeat;
background-attachment: fixed;
width: calc(100vw - 65px);
- ${media.tablet`width: 100vw;`}
+ ${media("tablet", `width: 100vw;`)}
position: fixed;
-`;
+`
const StyledArticle = styled("article")`
display: flex;
@@ -34,7 +31,7 @@ const StyledArticle = styled("article")`
align-item: center;
padding-top: 5em;
height: 100vh;
-`;
+`
const LogoWrapper = styled("div")`
transform: translate(0, 5vh);
@@ -42,12 +39,12 @@ const LogoWrapper = styled("div")`
text-align: center;
margin: auto;
}
-`;
+`
const Introduction = styled("div")`
text-align: center;
max-width: 100%;
-`;
+`
const MainHeading = styled("h1")`
padding-top: 48px;
@@ -56,7 +53,7 @@ const MainHeading = styled("h1")`
margin: 1em auto 0px auto;
}
align-items: "center";
-`;
+`
// to be imported from Bit
const Description = styled("p")`
@@ -64,31 +61,31 @@ const Description = styled("p")`
font-weight: 300;
/* color: #ffffff; */
/* text-shadow: 0px 0px 3px #000000; */
- ${media.phone`font-size: 1em;`}
-`;
+ ${media("phone", `font-size: 1em;`)}
+`
interface Props extends WithTranslation {
- isFirstAccess: boolean;
+ isFirstAccess: boolean
}
const Home = ({ isFirstAccess, t, i18n }: Props) => {
- const { theme, setTheme } = useContext(ThemeContext);
- const navigate = useNavigate();
+ const { theme, setTheme } = useContext(ThemeContext)
+ const navigate = useNavigate()
- const [modalOpen, setModalOpen] = useState(isFirstAccess);
+ const [modalOpen, setModalOpen] = useState(isFirstAccess)
const closeModal = () => {
- setModalOpen(false);
- if (isFirstAccess) navigateToUrl("/courses/timetable");
- };
+ setModalOpen(false)
+ if (isFirstAccess) navigateToUrl("/courses/timetable")
+ }
const changeLanguage = (lng) => {
ReactGA.event({
category: gaLanguage,
action: gaAppendActionWithLng(gaChangeLanguage, lng),
label: lng,
- });
- i18n.changeLanguage(lng);
- };
+ })
+ i18n.changeLanguage(lng)
+ }
return (
{
-
+
{t("about.description")}
- );
-};
+ )
+}
-export default withTranslation("translation")(Home);
+export default withTranslation("translation")(Home)
diff --git a/apps/root/src/components/PrivacyPolicy.tsx b/apps/root/src/components/PrivacyPolicy.tsx
index 4d59a95c0..3f1fc809f 100644
--- a/apps/root/src/components/PrivacyPolicy.tsx
+++ b/apps/root/src/components/PrivacyPolicy.tsx
@@ -1,11 +1,11 @@
/* eslint-disable no-nested-ternary */
-import React from "react";
+import React from "react"
interface StyledTextProps {
- children: any;
- centered?: boolean;
- headerType?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
- id?: string;
+ children: any
+ centered?: boolean
+ headerType?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"
+ id?: string
}
export const StyledHeader = ({
@@ -18,7 +18,7 @@ export const StyledHeader = ({
{children}
@@ -27,7 +27,7 @@ export const StyledHeader = ({
{children}
@@ -36,7 +36,7 @@ export const StyledHeader = ({
{children}
@@ -45,7 +45,7 @@ export const StyledHeader = ({
{children}
@@ -54,7 +54,7 @@ export const StyledHeader = ({
{children}
@@ -63,12 +63,12 @@ export const StyledHeader = ({
{children}
- );
+ )
export const StyledParagraph = ({
children,
@@ -78,26 +78,26 @@ export const StyledParagraph = ({
{children}
-);
+)
export const StyledBold = ({ children, centered, id }: StyledTextProps) => (
{children}
-);
+)
const PrivacyPolicy = () => (
-
+
PRIVACY NOTICE
@@ -532,6 +532,6 @@ const PrivacyPolicy = () => (
-);
+)
-export default PrivacyPolicy;
+export default PrivacyPolicy
diff --git a/apps/root/src/components/TermsOfService.tsx b/apps/root/src/components/TermsOfService.tsx
index eb904506f..1b013203e 100644
--- a/apps/root/src/components/TermsOfService.tsx
+++ b/apps/root/src/components/TermsOfService.tsx
@@ -1,13 +1,13 @@
-import React from "react";
+import React from "react"
import {
StyledHeader,
StyledParagraph,
StyledBold,
-} from "@app/components/PrivacyPolicy";
+} from "@app/components/PrivacyPolicy"
const TermsOfService = () => (
-
+
TERMS OF SERVICE
@@ -157,6 +157,6 @@ const TermsOfService = () => (
Japan without regards to its conflict of law provisions.
-);
+)
-export default TermsOfService;
+export default TermsOfService
diff --git a/apps/root/src/components/aboutUs/AboutUs.tsx b/apps/root/src/components/aboutUs/AboutUs.tsx
index 4e31e6e4b..07f3bc80e 100644
--- a/apps/root/src/components/aboutUs/AboutUs.tsx
+++ b/apps/root/src/components/aboutUs/AboutUs.tsx
@@ -1,59 +1,56 @@
-import React, { useState, useContext, lazy, Suspense } from "react";
+import React, { useState, useContext, lazy, Suspense } from "react"
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import Header from "@bit/wasedatime.core.ts.ui.header";
-import LoadingSpinner from "@bit/wasedatime.core.ts.ui.loading-spinner";
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
-import ReactGA from "react-ga";
-import { Helmet } from "react-helmet";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { Wrapper, Header, LoadingSpinner, media } from "wasedatime-ui"
+import ReactGA from "react-ga"
+import { Helmet } from "react-helmet"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import JoinUs from "@app/components/aboutUs/JoinUs";
-import OurMission from "@app/components/aboutUs/OurMission";
-import Partners from "@app/components/aboutUs/PartnersPage/Partners";
-import { gaAppendActionWithLng, gaChangeLanguage } from "@app/ga/eventActions";
-import { gaLanguage } from "@app/ga/eventCategories";
-import { ThemeContext } from "@app/utils/theme-context";
+import JoinUs from "@app/components/aboutUs/JoinUs"
+import OurMission from "@app/components/aboutUs/OurMission"
+import Partners from "@app/components/aboutUs/PartnersPage/Partners"
+import { gaAppendActionWithLng, gaChangeLanguage } from "@app/ga/eventActions"
+import { gaLanguage } from "@app/ga/eventCategories"
+import { ThemeContext } from "@app/utils/theme-context"
const MeetOurTeam = lazy(
() => import("@app/components/aboutUs/MeetOurTeam/MeetOurTeam")
-);
+)
const AboutUsWrapper = styled(Wrapper)`
display: flex;
flex-direction: column;
-`;
+`
const HeaderWrapper = styled.div`
flex: 67px;
-`;
+`
const AboutUsFlex = styled.div`
flex: calc(100% - 67px);
padding: 10px;
-`;
+`
const AboutUsMenu = styled.div`
- ${media.tablet`text-align: center;`}
- ${media.phone`
+ ${media("tablet",`text-align: center;`)}
+ ${media("phone",`
text-align: center;
font-size:3.5vw;
- `}
-`;
+ `)}
+`
const AboutUs = () => {
- const { theme, setTheme } = useContext(ThemeContext);
- const [activePage, setActivePage] = useState("our mission");
- const { t, i18n } = useTranslation();
+ const { theme, setTheme } = useContext(ThemeContext)
+ const [activePage, setActivePage] = useState("our mission")
+ const { t, i18n } = useTranslation()
const changeLanguage = (lng) => {
ReactGA.event({
category: gaLanguage,
action: gaAppendActionWithLng(gaChangeLanguage, lng),
label: lng,
- });
- i18n.changeLanguage(lng);
- };
+ })
+ i18n.changeLanguage(lng)
+ }
return (
{
className={`
border-y-2 border-l-2 border-light-main dark:border-dark-main ${
activePage === "our mission"
- ? "bg-light-main dark:bg-dark-main text-white"
- : "bg-light-bgSide dark:bg-dark-bgSide text-light-main dark:text-dark-main"
- } hover:bg-light-main hover:text-white dark:hover:bg-dark-main dark:hover:text-white px-4 py-2 mx-0 outline-none focus:outline-none rounded-l-lg
+ ? "bg-light-main text-white dark:bg-dark-main"
+ : "bg-light-bgSide text-light-main dark:bg-dark-bgSide dark:text-dark-main"
+ } mx-0 rounded-l-lg px-4 py-2 outline-none hover:bg-light-main hover:text-white focus:outline-none dark:hover:bg-dark-main dark:hover:text-white
`}
onClick={() =>
activePage !== "our mission" && setActivePage("our mission")
@@ -108,9 +105,9 @@ const AboutUs = () => {
className={`
border-y-2 border-light-main dark:border-dark-main ${
activePage === "join us"
- ? "bg-light-main dark:bg-dark-main text-white"
- : "bg-white dark:bg-dark-bgSide text-light-main dark:text-dark-main"
- } hover:bg-light-main hover:text-white dark:hover:bg-dark-main dark:hover:text-white px-4 py-2 mx-0 outline-none focus:outline-none
+ ? "bg-light-main text-white dark:bg-dark-main"
+ : "bg-white text-light-main dark:bg-dark-bgSide dark:text-dark-main"
+ } mx-0 px-4 py-2 outline-none hover:bg-light-main hover:text-white focus:outline-none dark:hover:bg-dark-main dark:hover:text-white
`}
onClick={() => activePage !== "join us" && setActivePage("join us")}
>
@@ -121,9 +118,9 @@ const AboutUs = () => {
className={`
border-y-2 border-light-main dark:border-dark-main ${
activePage === "meet our team"
- ? "bg-light-main dark:bg-dark-main text-white"
- : "bg-white dark:bg-dark-bgSide text-light-main dark:text-dark-main"
- } hover:bg-light-main hover:text-white dark:hover:bg-dark-main dark:hover:text-white px-4 py-2 mx-0 outline-none focus:outline-none
+ ? "bg-light-main text-white dark:bg-dark-main"
+ : "bg-white text-light-main dark:bg-dark-bgSide dark:text-dark-main"
+ } mx-0 px-4 py-2 outline-none hover:bg-light-main hover:text-white focus:outline-none dark:hover:bg-dark-main dark:hover:text-white
`}
onClick={() =>
activePage !== "meet our team" && setActivePage("meet our team")
@@ -136,9 +133,9 @@ const AboutUs = () => {
className={`
border-y-2 border-r-2 border-light-main dark:border-dark-main ${
activePage === "partners"
- ? "bg-light-main dark:bg-dark-main text-white"
- : "bg-white dark:bg-dark-bgSide text-light-main dark:text-dark-main"
- } hover:bg-light-main hover:text-white dark:hover:bg-dark-main dark:hover:text-white px-4 py-2 mx-0 outline-none focus:outline-none rounded-r-lg
+ ? "bg-light-main text-white dark:bg-dark-main"
+ : "bg-white text-light-main dark:bg-dark-bgSide dark:text-dark-main"
+ } mx-0 rounded-r-lg px-4 py-2 outline-none hover:bg-light-main hover:text-white focus:outline-none dark:hover:bg-dark-main dark:hover:text-white
`}
onClick={() =>
activePage !== "partners" && setActivePage("partners")
@@ -176,7 +173,7 @@ const AboutUs = () => {
)}
- );
-};
+ )
+}
-export default AboutUs;
+export default AboutUs
diff --git a/apps/root/src/components/aboutUs/JoinUs.tsx b/apps/root/src/components/aboutUs/JoinUs.tsx
index 2d241331c..86b3690ec 100644
--- a/apps/root/src/components/aboutUs/JoinUs.tsx
+++ b/apps/root/src/components/aboutUs/JoinUs.tsx
@@ -1,23 +1,21 @@
-import React from "react";
+import React from "react"
-import { Overlay } from "@bit/wasedatime.core.ts.styles.overlay";
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import { media, sizes } from "@bit/wasedatime.core.ts.utils.responsive-utils";
-import { faUserTie, faUserCog } from "@fortawesome/free-solid-svg-icons";
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { Helmet } from "react-helmet";
-import MediaQuery from "react-responsive";
-import styled from "styled-components";
+import { Overlay, Wrapper, media, sizes } from "wasedatime-ui"
+import { faUserTie, faUserCog } from "@fortawesome/free-solid-svg-icons"
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
+import { Helmet } from "react-helmet"
+import MediaQuery from "react-responsive"
+import styled from "styled-components"
const ExtendedOverlay = styled(Overlay)`
align-items: center;
padding: 0 20vw 50px;
color: #666;
- ${media.phone`padding: 0 10vw 50px;`};
+ ${media("phone",`padding: 0 10vw 50px;`)};
hr {
width: 80%;
}
-`;
+`
const JoinUs = () => (
@@ -262,6 +260,6 @@ const JoinUs = () => (
-);
+)
-export default JoinUs;
+export default JoinUs
diff --git a/apps/root/src/components/aboutUs/MeetOurTeam/MeetOurTeam.tsx b/apps/root/src/components/aboutUs/MeetOurTeam/MeetOurTeam.tsx
index 627cc9241..99ed0052f 100644
--- a/apps/root/src/components/aboutUs/MeetOurTeam/MeetOurTeam.tsx
+++ b/apps/root/src/components/aboutUs/MeetOurTeam/MeetOurTeam.tsx
@@ -1,26 +1,26 @@
-import React, { useEffect, useState } from "react";
+import React, { useEffect, useState } from "react"
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { Wrapper } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
import {
CurrentList,
AlumniList,
-} from "@app/components/aboutUs/MeetOurTeam/memberList";
+} from "@app/components/aboutUs/MeetOurTeam/memberList"
-import { ProfileCard } from "@app/components/block/ProfileCard";
+import { ProfileCard } from "@app/components/block/ProfileCard"
const Title = styled("h2")`
font-weight: bold;
text-align: center;
-`;
+`
const SubTitle = styled("h2")`
font-weight: bold;
margin: 10px auto;
text-align: center;
-`;
+`
const CardArea = styled("div")`
width: 80%;
@@ -29,22 +29,22 @@ const CardArea = styled("div")`
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
-`;
+`
const MeetOurTeam = () => {
- const { t } = useTranslation();
- const [activeCardName, setActiveCardName] = useState("");
+ const { t } = useTranslation()
+ const [activeCardName, setActiveCardName] = useState("")
useEffect(() => {
- console.log(activeCardName);
- }, [activeCardName]);
+ console.log(activeCardName)
+ }, [activeCardName])
return (
-
+
Meet Our Talented Team!
-
+
Current Members
@@ -62,7 +62,7 @@ const MeetOurTeam = () => {
))}
-
+
Our Alumni
@@ -80,7 +80,7 @@ const MeetOurTeam = () => {
))}
- );
-};
+ )
+}
-export default MeetOurTeam;
+export default MeetOurTeam
diff --git a/apps/root/src/components/aboutUs/MeetOurTeam/memberList.ts b/apps/root/src/components/aboutUs/MeetOurTeam/memberList.ts
index 29dd11ce2..a69cd548f 100644
--- a/apps/root/src/components/aboutUs/MeetOurTeam/memberList.ts
+++ b/apps/root/src/components/aboutUs/MeetOurTeam/memberList.ts
@@ -1,46 +1,46 @@
-import aditya from "@app/assets/img/contributors/aditya.jpg";
-import alina from "@app/assets/img/contributors/alina.jpg";
-import austin from "@app/assets/img/contributors/austin.jpg";
-import george from "@app/assets/img/contributors/george.jpg";
-import gu from "@app/assets/img/contributors/gu.jpg";
-import gunjan from "@app/assets/img/contributors/gunjan.jpg";
-import hao from "@app/assets/img/contributors/hao.jpg";
-import hatori from "@app/assets/img/contributors/hatori.jpg";
-import isabella from "@app/assets/img/contributors/isabella.jpg";
-import jason from "@app/assets/img/contributors/jason.jpg";
-import kaede from "@app/assets/img/contributors/kaede.jpg";
-import kaiqing from "@app/assets/img/contributors/kaiqing.jpg";
-import kong from "@app/assets/img/contributors/kong.jpg";
-import mei from "@app/assets/img/contributors/mei.jpg";
-import michael from "@app/assets/img/contributors/michael.jpg";
-import naomi from "@app/assets/img/contributors/naomi.jpg";
-import nicholas from "@app/assets/img/contributors/nicholas.jpg";
-import oscar from "@app/assets/img/contributors/oscar.jpg";
-import pam from "@app/assets/img/contributors/pam.jpg";
-import takumi from "@app/assets/img/contributors/takumi.jpg";
-import tang from "@app/assets/img/contributors/tang.jpg";
-import xinmei from "@app/assets/img/contributors/xinmei.jpg";
-import xinyue from "@app/assets/img/contributors/xinyue.jpg";
-import yaoyuan from "@app/assets/img/contributors/yaoyuan.jpg";
-import zenda from "@app/assets/img/contributors/zenda.jpg";
-import zhaohuaibo from "@app/assets/img/contributors/zhaohuaibo.jpg";
-import email from "@app/assets/img/socialmediaicon/email.png";
-import facebook from "@app/assets/img/socialmediaicon/facebook.png";
-import github from "@app/assets/img/socialmediaicon/github.png";
-import homepage from "@app/assets/img/socialmediaicon/homepage.png";
-import instagram from "@app/assets/img/socialmediaicon/instagram.png";
-import linkedin from "@app/assets/img/socialmediaicon/linkedin.png";
-import weibo from "@app/assets/img/socialmediaicon/sina-weibo.png";
-import twitter from "@app/assets/img/socialmediaicon/twitter.png";
+import aditya from "@app/assets/img/contributors/aditya.jpg"
+import alina from "@app/assets/img/contributors/alina.jpg"
+import austin from "@app/assets/img/contributors/austin.jpg"
+import george from "@app/assets/img/contributors/george.jpg"
+import gu from "@app/assets/img/contributors/gu.jpg"
+import gunjan from "@app/assets/img/contributors/gunjan.jpg"
+import hao from "@app/assets/img/contributors/hao.jpg"
+import hatori from "@app/assets/img/contributors/hatori.jpg"
+import isabella from "@app/assets/img/contributors/isabella.jpg"
+import jason from "@app/assets/img/contributors/jason.jpg"
+import kaede from "@app/assets/img/contributors/kaede.jpg"
+import kaiqing from "@app/assets/img/contributors/kaiqing.jpg"
+import kong from "@app/assets/img/contributors/kong.jpg"
+import mei from "@app/assets/img/contributors/mei.jpg"
+import michael from "@app/assets/img/contributors/michael.jpg"
+import naomi from "@app/assets/img/contributors/naomi.jpg"
+import nicholas from "@app/assets/img/contributors/nicholas.jpg"
+import oscar from "@app/assets/img/contributors/oscar.jpg"
+import pam from "@app/assets/img/contributors/pam.jpg"
+import takumi from "@app/assets/img/contributors/takumi.jpg"
+import tang from "@app/assets/img/contributors/tang.jpg"
+import xinmei from "@app/assets/img/contributors/xinmei.jpg"
+import xinyue from "@app/assets/img/contributors/xinyue.jpg"
+import yaoyuan from "@app/assets/img/contributors/yaoyuan.jpg"
+import zenda from "@app/assets/img/contributors/zenda.jpg"
+import zhaohuaibo from "@app/assets/img/contributors/zhaohuaibo.jpg"
+import email from "@app/assets/img/socialmediaicon/email.png"
+import facebook from "@app/assets/img/socialmediaicon/facebook.png"
+import github from "@app/assets/img/socialmediaicon/github.png"
+import homepage from "@app/assets/img/socialmediaicon/homepage.png"
+import instagram from "@app/assets/img/socialmediaicon/instagram.png"
+import linkedin from "@app/assets/img/socialmediaicon/linkedin.png"
+import weibo from "@app/assets/img/socialmediaicon/sina-weibo.png"
+import twitter from "@app/assets/img/socialmediaicon/twitter.png"
export interface Members {
- image: string;
- name: string;
- positions: Array
;
- socials?: Array<{ platform: string; link: string }>;
- profileText?: string;
- isOpen?: boolean;
- onClick?: () => void;
+ image: string
+ name: string
+ positions: Array
+ socials?: Array<{ platform: string; link: string }>
+ profileText?: string
+ isOpen?: boolean
+ onClick?: () => void
}
export const CurrentList: Array = [
@@ -169,7 +169,7 @@ export const CurrentList: Array = [
],
profileText: "Thank you!!",
},
-];
+]
export const AlumniList: Array = [
{
@@ -349,4 +349,4 @@ export const AlumniList: Array = [
],
profileText: "I’m so happy to work with you guys together 🥰",
},
-];
+]
diff --git a/apps/root/src/components/aboutUs/OurMission.tsx b/apps/root/src/components/aboutUs/OurMission.tsx
index 90857860e..18f48dfc1 100644
--- a/apps/root/src/components/aboutUs/OurMission.tsx
+++ b/apps/root/src/components/aboutUs/OurMission.tsx
@@ -1,7 +1,6 @@
-import React from "react";
+import React from "react"
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import { media } from "@bit/wasedatime.core.ts.utils.responsive-utils";
+import { Wrapper, media } from "wasedatime-ui"
import {
faBook,
faCalendarAlt,
@@ -10,24 +9,24 @@ import {
faNewspaper,
faPlayCircle,
faUserAlt,
-} from "@fortawesome/free-solid-svg-icons";
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
+} from "@fortawesome/free-solid-svg-icons"
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import {
VerticalTimeline,
VerticalTimelineElement,
-} from "react-vertical-timeline-component";
-import styled from "styled-components";
-import "react-vertical-timeline-component/style.min.css";
+} from "react-vertical-timeline-component"
+import styled from "styled-components"
+import "react-vertical-timeline-component/style.min.css"
const MainParagraph = styled("p")`
align-items: center;
padding: 0 20vw;
- ${media.tablet`padding: 0 5vw;`};
+ ${media("tablet",`padding: 0 5vw;`)};
color: #666;
width: 90%;
margin: 0 auto;
font-size: 0.9em;
-`;
+`
const OurMission = () => (
@@ -283,6 +282,6 @@ const OurMission = () => (
-);
+)
-export default OurMission;
+export default OurMission
diff --git a/apps/root/src/components/aboutUs/Partners.tsx b/apps/root/src/components/aboutUs/Partners.tsx
index a5c3bfe58..a9619eee8 100644
--- a/apps/root/src/components/aboutUs/Partners.tsx
+++ b/apps/root/src/components/aboutUs/Partners.tsx
@@ -1,13 +1,13 @@
-import React from "react";
+import React from "react"
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { Wrapper } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import facebook from "@app/assets/img/socialmediaicon/facebook.png";
-import instagram from "@app/assets/img/socialmediaicon/instagram.png";
-import linkedin from "@app/assets/img/socialmediaicon/linkedin.png";
-import twitter from "@app/assets/img/socialmediaicon/twitter.png";
+import facebook from "@app/assets/img/socialmediaicon/facebook.png"
+import instagram from "@app/assets/img/socialmediaicon/instagram.png"
+import linkedin from "@app/assets/img/socialmediaicon/linkedin.png"
+import twitter from "@app/assets/img/socialmediaicon/twitter.png"
const Title = styled("h2")`
width: 50%;
@@ -15,7 +15,7 @@ const Title = styled("h2")`
font-size: 1.5em;
margin: 0 auto;
text-align: center;
-`;
+`
const CardArea = styled("div")`
width: 90%;
@@ -24,7 +24,7 @@ const CardArea = styled("div")`
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
-`;
+`
const Card = styled("div")`
display: flex;
@@ -33,24 +33,24 @@ const Card = styled("div")`
margin: 40px 20px 20px 0px;
width: 230px;
text-align: center;
-`;
+`
const OrgImage = styled("img")`
width: 80%;
box-shadow: 0px 0px 8px;
-`;
+`
const OrgName = styled("div")`
padding: 10px 0px 0px 0px;
width: 100%;
font-size: 1.3em;
text-align: center;
-`;
+`
const MembersWrapper = styled.div`
display: flex;
flex-direction: row;
justify-content: space-evenly;
-`;
+`
const MemberWrapper = styled.div`
flex: 1 0 50%;
@@ -58,26 +58,26 @@ const MemberWrapper = styled.div`
flex-direction: column;
align-items: center;
text-align: center;
-`;
+`
const MemberImage = styled(OrgImage)`
width: 100px;
height: 100px;
-`;
+`
const SocialMediaArea = styled("div")`
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
-`;
+`
const MediaIcon = styled("img")`
width: 100%;
width: 1.3em;
margin: 4px;
text-align: center;
-`;
+`
const partners = [
{
@@ -153,10 +153,10 @@ const partners = [
},
],
},
-];
+]
const Partners = () => {
- const { t } = useTranslation();
+ const { t } = useTranslation()
return (
@@ -176,7 +176,7 @@ const Partners = () => {
{partners.map((partner) => (
@@ -200,7 +200,7 @@ const Partners = () => {
partner.members.map((member) => (
@@ -227,7 +227,7 @@ const Partners = () => {
- );
-};
+ )
+}
-export default Partners;
+export default Partners
diff --git a/apps/root/src/components/aboutUs/PartnersPage/PartnerList.ts b/apps/root/src/components/aboutUs/PartnersPage/PartnerList.ts
index 33c861e67..8eb42761a 100644
--- a/apps/root/src/components/aboutUs/PartnersPage/PartnerList.ts
+++ b/apps/root/src/components/aboutUs/PartnersPage/PartnerList.ts
@@ -4,15 +4,15 @@
// import linkedin from "@app/assets/img/socialmediaicon/linkedin.png";
// import weibo from "@app/assets/img/socialmediaicon/sina-weibo.png";
// import twitter from "@app/assets/img/socialmediaicon/twitter.png";
-import instagram from "@app/assets/img/socialmediaicon/instagram.png";
-import facebook from "@app/assets/img/socialmediaicon/facebook.png";
-import kredit from "@app/assets/img/partners/kredit.png";
+import instagram from "@app/assets/img/socialmediaicon/instagram.png"
+import facebook from "@app/assets/img/socialmediaicon/facebook.png"
+import kredit from "@app/assets/img/partners/kredit.png"
export interface PartnerProfile {
- org: string;
- img: string;
- socials?: Array<{ link: string; platform: string }>;
- members?: Array<{ name: string; platform: string }>;
+ org: string
+ img: string
+ socials?: Array<{ link: string; platform: string }>
+ members?: Array<{ name: string; platform: string }>
}
export const PartnerList: Array
= [
@@ -99,4 +99,4 @@ export const PartnerList: Array = [
},
],
},
-];
+]
diff --git a/apps/root/src/components/aboutUs/PartnersPage/Partners.tsx b/apps/root/src/components/aboutUs/PartnersPage/Partners.tsx
index 2729e8550..6624d6f5f 100644
--- a/apps/root/src/components/aboutUs/PartnersPage/Partners.tsx
+++ b/apps/root/src/components/aboutUs/PartnersPage/Partners.tsx
@@ -1,23 +1,23 @@
-import React, { useState } from "react";
+import React, { useState } from "react"
-import { Wrapper } from "@bit/wasedatime.core.ts.styles.wrapper";
-import { useTranslation } from "react-i18next";
-import styled from "styled-components";
+import { Wrapper } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
+import styled from "styled-components"
-import { PartnerList } from "@app/components/aboutUs/PartnersPage/PartnerList";
+import { PartnerList } from "@app/components/aboutUs/PartnersPage/PartnerList"
-import { ProfileCard } from "@app/components/block/ProfileCard";
+import { ProfileCard } from "@app/components/block/ProfileCard"
const Title = styled("h2")`
font-weight: bold;
text-align: center;
-`;
+`
const SubTitle = styled("h2")`
font-weight: bold;
margin: 10px auto;
text-align: center;
-`;
+`
const CardArea = styled("div")`
width: 80%;
@@ -26,18 +26,18 @@ const CardArea = styled("div")`
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
-`;
+`
const Partners = () => {
- const { t } = useTranslation();
- const [activeCardName, setActiveCardName] = useState("");
+ const { t } = useTranslation()
+ const [activeCardName, setActiveCardName] = useState("")
return (
-
+
Meet Our Talented Team!
-
+
Current Members
@@ -53,7 +53,7 @@ const Partners = () => {
))}
- );
-};
+ )
+}
-export default Partners;
+export default Partners
diff --git a/apps/root/src/components/block/IconTextGroup.tsx b/apps/root/src/components/block/IconTextGroup.tsx
index d06e4258a..ad576f2a0 100644
--- a/apps/root/src/components/block/IconTextGroup.tsx
+++ b/apps/root/src/components/block/IconTextGroup.tsx
@@ -1,29 +1,29 @@
-import React, { ReactNode } from "react";
+import React, { ReactNode } from "react"
-import colors from "@bit/wasedatime.core.theme.colors";
-import styled from "styled-components";
+import { Colors } from "wasedatime-ui"
+import styled from "styled-components"
interface NavItemBlockProps {
- expanded: boolean;
- isCurrentPath: boolean;
+ expanded: boolean
+ isCurrentPath: boolean
}
interface NavItemTextProps {
- expanded: boolean;
+ expanded: boolean
}
interface IconTextGroupProps {
- icon: ReactNode;
- text?: string;
- iconPath?: string;
- expanded?: boolean;
- currentPath?: string;
+ icon: ReactNode
+ text?: string
+ iconPath?: string
+ expanded?: boolean
+ currentPath?: string
}
const NavItemBlock = styled.div`
display: flex;
flex-direction: row;
- color: ${(props) => (props.isCurrentPath ? colors.light.main : "#fff")};
+ color: ${(props) => (props.isCurrentPath ? Colors.light.main : "#fff")};
font-size: 18px;
font-weight: 100;
padding: 1vh 0px;
@@ -39,7 +39,7 @@ const NavItemBlock = styled.div`
&:hover {
cursor: pointer;
}
-`;
+`
const NavItemText = styled.span`
overflow: hidden;
@@ -52,7 +52,7 @@ const NavItemText = styled.span`
opacity: ${(props) => (props.expanded ? "1" : "0")};
width: ${(props) => (props.expanded ? "120px" : "0px")};
transition: opacity 0.3s ease-out, width 0.5s;
-`;
+`
export const IconTextGroup = ({
icon,
@@ -67,17 +67,17 @@ export const IconTextGroup = ({
expanded={expanded}
isCurrentPath={iconPath === currentPath}
>
-
+
{icon}
{text && (
{text}
)}
- );
-};
+ )
+}
diff --git a/apps/root/src/components/block/ProfileCard.tsx b/apps/root/src/components/block/ProfileCard.tsx
index 2392275b5..188721a7a 100644
--- a/apps/root/src/components/block/ProfileCard.tsx
+++ b/apps/root/src/components/block/ProfileCard.tsx
@@ -1,5 +1,5 @@
-import React, { useState } from "react";
-import styled from "styled-components";
+import React, { useState } from "react"
+import styled from "styled-components"
const Card = styled("div")`
display: flex;
@@ -7,31 +7,31 @@ const Card = styled("div")`
align-items: center;
width: 260px;
text-align: center;
-`;
+`
const SocialMediaArea = styled("div")`
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
-`;
+`
const MediaIcon = styled("img")`
width: 100%;
width: 1.3em;
margin: 6px 8px 4px 0px;
text-align: center;
-`;
+`
export interface ProfileCardProps {
- image: string;
- name: string;
- positions?: Array
;
- socials?: Array<{ platform: string; link: string }>;
- profileText?: string;
- onClick?: () => void;
- onClose?: () => void;
- isOpen?: boolean;
+ image: string
+ name: string
+ positions?: Array
+ socials?: Array<{ platform: string; link: string }>
+ profileText?: string
+ onClick?: () => void
+ onClose?: () => void
+ isOpen?: boolean
// mini?: boolean;
}
@@ -46,29 +46,29 @@ export const ProfileCard = ({
isOpen,
}: // mini,
ProfileCardProps) => {
- const [showCard, setShowCard] = useState(false);
+ const [showCard, setShowCard] = useState(false)
const handleClick = () => {
- setShowCard(!showCard);
- };
+ setShowCard(!showCard)
+ }
return (
{isOpen ? (
-
+
{/* Profile pic */}
{/* Card Body */}
-
+
{/* close button from daisyui */}
-
{/* Name */}
-
+
{name}
{/* Position */}
-
+
{positions &&
positions.map((position) => (
{position}
))}
{/* Profile Text */}
-
+
{profileText}
{/* Socials */}
-
+
{socials && (
{socials.map((social) => (
@@ -126,20 +126,20 @@ ProfileCardProps) => {
// Card: pic + hidden card-body + Name
-
+
Click to view the profile!
{/* Name below the card*/}
-
+
{name}
)}
- );
-};
+ )
+}
diff --git a/apps/root/src/components/frame/MobileNav.tsx b/apps/root/src/components/frame/MobileNav.tsx
index df799d5a1..857c768c9 100644
--- a/apps/root/src/components/frame/MobileNav.tsx
+++ b/apps/root/src/components/frame/MobileNav.tsx
@@ -1,24 +1,24 @@
-import React, { useState } from "react";
+import React, { useState } from "react"
-import { getUserAttr, signOut } from "@bit/wasedatime.core.ts.utils.user";
-import { useTranslation } from "react-i18next";
+import { getUserAttr, signOut } from "wasedatime-ui"
+import { useTranslation } from "react-i18next"
-import { NavItemsProps } from "@app/components/frame/Nav";
-import { ProfileIconHovered } from "@app/components/icons/ProfileIcon";
-import LinkOutsideRouter from "@app/utils/link-outside-router";
+import { NavItemsProps } from "@app/components/frame/Nav"
+import { ProfileIconHovered } from "@app/components/icons/ProfileIcon"
+import LinkOutsideRouter from "@app/utils/link-outside-router"
type Props = {
- navItems: NavItemsProps[];
- openSignInModal: () => void;
-};
+ navItems: NavItemsProps[]
+ openSignInModal: () => void
+}
const MobileNav = ({ navItems, openSignInModal }: Props) => {
- const { t } = useTranslation();
- const [userAttr, setUserAttr] = useState(null);
- const [signOutAvailable, setSignOutAvailable] = useState(false);
- const [currentPath, setCurrentPath] = useState(window.location.pathname);
- const notSignedIn = !userAttr;
- if (notSignedIn) getUserAttr().then((attr) => setUserAttr(attr));
+ const { t } = useTranslation()
+ const [userAttr, setUserAttr] = useState(null)
+ const [signOutAvailable, setSignOutAvailable] = useState(false)
+ const [currentPath, setCurrentPath] = useState(window.location.pathname)
+ const notSignedIn = !userAttr
+ if (notSignedIn) getUserAttr().then((attr) => setUserAttr(attr))
const styledLinks = navItems.map((item) => (
{
className="flex-1 text-center"
customOnClick={() => setCurrentPath(item.path)}
>
-
+
{item.icon}
-
+
{item.name}
- ));
+ ))
return (