diff --git a/Modules/Client/Config/.gitkeep b/Modules/Client/Config/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Config/config.php b/Modules/Client/Config/config.php
new file mode 100644
index 00000000..b5b45a94
--- /dev/null
+++ b/Modules/Client/Config/config.php
@@ -0,0 +1,5 @@
+ 'Client'
+];
diff --git a/Modules/Client/Console/.gitkeep b/Modules/Client/Console/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Database/Migrations/.gitkeep b/Modules/Client/Database/Migrations/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Database/Seeders/.gitkeep b/Modules/Client/Database/Seeders/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Database/Seeders/ClientDatabaseSeeder.php b/Modules/Client/Database/Seeders/ClientDatabaseSeeder.php
new file mode 100644
index 00000000..b16ec892
--- /dev/null
+++ b/Modules/Client/Database/Seeders/ClientDatabaseSeeder.php
@@ -0,0 +1,21 @@
+call("OthersTableSeeder");
+ }
+}
diff --git a/Modules/Client/Database/factories/.gitkeep b/Modules/Client/Database/factories/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Entities/.gitkeep b/Modules/Client/Entities/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Http/Controllers/.gitkeep b/Modules/Client/Http/Controllers/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Http/Controllers/ClientController.php b/Modules/Client/Http/Controllers/ClientController.php
new file mode 100644
index 00000000..fc30d65d
--- /dev/null
+++ b/Modules/Client/Http/Controllers/ClientController.php
@@ -0,0 +1,79 @@
+registerTranslations();
+ $this->registerConfig();
+ $this->registerViews();
+ $this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
+ }
+
+ /**
+ * Register the service provider.
+ *
+ * @return void
+ */
+ public function register()
+ {
+ $this->app->register(RouteServiceProvider::class);
+ }
+
+ /**
+ * Register config.
+ *
+ * @return void
+ */
+ protected function registerConfig()
+ {
+ $this->publishes([
+ module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower . '.php'),
+ ], 'config');
+ $this->mergeConfigFrom(
+ module_path($this->moduleName, 'Config/config.php'), $this->moduleNameLower
+ );
+ }
+
+ /**
+ * Register views.
+ *
+ * @return void
+ */
+ public function registerViews()
+ {
+ $viewPath = resource_path('views/modules/' . $this->moduleNameLower);
+
+ $sourcePath = module_path($this->moduleName, 'Resources/views');
+
+ $this->publishes([
+ $sourcePath => $viewPath
+ ], ['views', $this->moduleNameLower . '-module-views']);
+
+ $this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
+ }
+
+ /**
+ * Register translations.
+ *
+ * @return void
+ */
+ public function registerTranslations()
+ {
+ $langPath = resource_path('lang/modules/' . $this->moduleNameLower);
+
+ if (is_dir($langPath)) {
+ $this->loadTranslationsFrom($langPath, $this->moduleNameLower);
+ } else {
+ $this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
+ }
+ }
+
+ /**
+ * Get the services provided by the provider.
+ *
+ * @return array
+ */
+ public function provides()
+ {
+ return [];
+ }
+
+ private function getPublishableViewPaths(): array
+ {
+ $paths = [];
+ foreach (\Config::get('view.paths') as $path) {
+ if (is_dir($path . '/modules/' . $this->moduleNameLower)) {
+ $paths[] = $path . '/modules/' . $this->moduleNameLower;
+ }
+ }
+ return $paths;
+ }
+}
diff --git a/Modules/Client/Providers/RouteServiceProvider.php b/Modules/Client/Providers/RouteServiceProvider.php
new file mode 100644
index 00000000..c8287605
--- /dev/null
+++ b/Modules/Client/Providers/RouteServiceProvider.php
@@ -0,0 +1,69 @@
+mapApiRoutes();
+
+ $this->mapWebRoutes();
+ }
+
+ /**
+ * Define the "web" routes for the application.
+ *
+ * These routes all receive session state, CSRF protection, etc.
+ *
+ * @return void
+ */
+ protected function mapWebRoutes()
+ {
+ Route::middleware('web')
+ ->namespace($this->moduleNamespace)
+ ->group(module_path('Client', '/Routes/web.php'));
+ }
+
+ /**
+ * Define the "api" routes for the application.
+ *
+ * These routes are typically stateless.
+ *
+ * @return void
+ */
+ protected function mapApiRoutes()
+ {
+ Route::prefix('api')
+ ->middleware('api')
+ ->namespace($this->moduleNamespace)
+ ->group(module_path('Client', '/Routes/api.php'));
+ }
+}
diff --git a/Modules/Client/Resources/assets/.gitkeep b/Modules/Client/Resources/assets/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Resources/assets/js/app.js b/Modules/Client/Resources/assets/js/app.js
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Resources/assets/sass/app.scss b/Modules/Client/Resources/assets/sass/app.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Resources/lang/.gitkeep b/Modules/Client/Resources/lang/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Resources/views/.gitkeep b/Modules/Client/Resources/views/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Resources/views/index.blade.php b/Modules/Client/Resources/views/index.blade.php
new file mode 100644
index 00000000..4375b768
--- /dev/null
+++ b/Modules/Client/Resources/views/index.blade.php
@@ -0,0 +1,9 @@
+@extends('client::layouts.master')
+
+@section('content')
+
Hello World
+
+
+ This view is loaded from module: {!! config('client.name') !!}
+
+@endsection
diff --git a/Modules/Client/Resources/views/layouts/master.blade.php b/Modules/Client/Resources/views/layouts/master.blade.php
new file mode 100644
index 00000000..2ef620f5
--- /dev/null
+++ b/Modules/Client/Resources/views/layouts/master.blade.php
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Module Client
+
+ {{-- Laravel Mix - CSS File --}}
+ {{-- --}}
+
+
+
+ @yield('content')
+
+ {{-- Laravel Mix - JS File --}}
+ {{-- --}}
+
+
diff --git a/Modules/Client/Routes/.gitkeep b/Modules/Client/Routes/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Routes/api.php b/Modules/Client/Routes/api.php
new file mode 100644
index 00000000..c5e89beb
--- /dev/null
+++ b/Modules/Client/Routes/api.php
@@ -0,0 +1,18 @@
+get('/client', function (Request $request) {
+ return $request->user();
+});
\ No newline at end of file
diff --git a/Modules/Client/Routes/web.php b/Modules/Client/Routes/web.php
new file mode 100644
index 00000000..09fd8ee1
--- /dev/null
+++ b/Modules/Client/Routes/web.php
@@ -0,0 +1,16 @@
+group(function() {
+ Route::get('/', 'ClientController@index');
+});
diff --git a/Modules/Client/Tests/Feature/.gitkeep b/Modules/Client/Tests/Feature/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/Tests/Unit/.gitkeep b/Modules/Client/Tests/Unit/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/Modules/Client/composer.json b/Modules/Client/composer.json
new file mode 100644
index 00000000..d2e72796
--- /dev/null
+++ b/Modules/Client/composer.json
@@ -0,0 +1,23 @@
+{
+ "name": "nwidart/client",
+ "description": "",
+ "authors": [
+ {
+ "name": "Nicolas Widart",
+ "email": "n.widart@gmail.com"
+ }
+ ],
+ "extra": {
+ "laravel": {
+ "providers": [],
+ "aliases": {
+
+ }
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Modules\\Client\\": ""
+ }
+ }
+}
diff --git a/Modules/Client/module.json b/Modules/Client/module.json
new file mode 100644
index 00000000..bfb6fd54
--- /dev/null
+++ b/Modules/Client/module.json
@@ -0,0 +1,13 @@
+{
+ "name": "Client",
+ "alias": "client",
+ "description": "",
+ "keywords": [],
+ "priority": 0,
+ "providers": [
+ "Modules\\Client\\Providers\\ClientServiceProvider"
+ ],
+ "aliases": {},
+ "files": [],
+ "requires": []
+}
diff --git a/Modules/Client/package.json b/Modules/Client/package.json
new file mode 100644
index 00000000..73031461
--- /dev/null
+++ b/Modules/Client/package.json
@@ -0,0 +1,21 @@
+{
+ "private": true,
+ "scripts": {
+ "dev": "npm run development",
+ "development": "mix",
+ "watch": "mix watch",
+ "watch-poll": "mix watch -- --watch-options-poll=1000",
+ "hot": "mix watch --hot",
+ "prod": "npm run production",
+ "production": "mix --production"
+ },
+ "devDependencies": {
+ "axios": "^0.21.4",
+ "dotenv": "^10.0.0",
+ "dotenv-expand": "^5.1.0",
+ "laravel-mix": "^6.0.31",
+ "laravel-mix-merge-manifest": "^2.0.0",
+ "lodash": "^4.17.21",
+ "postcss": "^8.3.7"
+ }
+}
diff --git a/Modules/Client/webpack.mix.js b/Modules/Client/webpack.mix.js
new file mode 100644
index 00000000..3bac8079
--- /dev/null
+++ b/Modules/Client/webpack.mix.js
@@ -0,0 +1,14 @@
+const dotenvExpand = require('dotenv-expand');
+dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/}));
+
+const mix = require('laravel-mix');
+require('laravel-mix-merge-manifest');
+
+mix.setPublicPath('../../public').mergeManifest();
+
+mix.js(__dirname + '/Resources/assets/js/app.js', 'js/client.js')
+ .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/client.css');
+
+if (mix.inProduction()) {
+ mix.version();
+}
diff --git a/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php b/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php
index 8a84ab9d..4f2c87af 100644
--- a/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php
+++ b/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php
@@ -24,7 +24,7 @@ class CorporateFormulariumController extends Controller
$formulariums = $formulariums->whereDoesntHave('corporateFormulariums');
} else if (!empty($request->status) && $request->status == 'all') {
- } else {
+ } else { // Active or Default
$formulariums->whereHas('corporateFormulariums', function ($corporateFormularium) use ($corporate_id){
$corporateFormularium->where('corporate_id', $corporate_id);
});
diff --git a/frontend/client-portal/.env.development b/frontend/client-portal/.env.development
index 624ef8a0..ced427a5 100755
--- a/frontend/client-portal/.env.development
+++ b/frontend/client-portal/.env.development
@@ -4,4 +4,4 @@ PORT=8083
REACT_APP_HOST_API_URL="http://localhost:8000"
-VITE_API_URL="http://localhost:8000/api"
+VITE_API_URL="http://localhost:8000/api/client"
diff --git a/frontend/client-portal/.env.production b/frontend/client-portal/.env.production
index b3eb7241..565298f4 100644
--- a/frontend/client-portal/.env.production
+++ b/frontend/client-portal/.env.production
@@ -1,3 +1,3 @@
GENERATE_SOURCEMAP=false
-VITE_API_URL="https://aso-api.linksehat.dev/api"
+VITE_API_URL="https://aso-api.linksehat.dev/api/client"
diff --git a/frontend/client-portal/package.json b/frontend/client-portal/package.json
index fd5fc586..1064fa7d 100644
--- a/frontend/client-portal/package.json
+++ b/frontend/client-portal/package.json
@@ -7,7 +7,7 @@
"scripts": {
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
- "start": "vite",
+ "start": "vite --port=3000",
"build": "vite build --mode production && cp .htaccess build/.htaccess && rm -f -r ../../public/client-portal && cp -r build ../../public/client-portal",
"serve": "vite preview",
"clear-all": "rm -rf build node_modules",
@@ -37,58 +37,63 @@
]
},
"dependencies": {
- "@emotion/cache": "^11.7.1",
- "@emotion/react": "^11.9.0",
- "@emotion/styled": "^11.8.1",
- "@hookform/resolvers": "^2.8.8",
- "@iconify/react": "^3.2.1",
+ "@date-io/date-fns": "^2.15.0",
+ "@emotion/cache": "^11.10.3",
+ "@emotion/react": "^11.10.0",
+ "@emotion/styled": "^11.10.0",
+ "@hookform/resolvers": "^2.9.7",
+ "@iconify/react": "^3.2.2",
+ "@mui/icons-material": "^5.10.2",
"@mui/lab": "5.0.0-alpha.80",
- "@mui/material": "^5.6.4",
- "@mui/icons-material": "^5.8.0",
- "@mui/system": "^5.6.4",
- "@mui/x-data-grid": "^5.10.0",
+ "@mui/material": "^5.10.2",
+ "@mui/system": "^5.10.2",
+ "@mui/x-data-grid": "^5.16.0",
+ "@mui/x-date-pickers": "5.0.0-beta.2",
"@vitejs/plugin-react": "^1.3.2",
"axios": "^0.27.2",
"change-case": "^4.1.2",
- "date-fns": "^2.28.0",
- "framer-motion": "^6.3.3",
+ "csstype": "^3.1.0",
+ "date-fns": "^2.29.2",
+ "framer-motion": "^6.5.1",
+ "highlight.js": "^11.6.0",
"history": "^5.3.0",
"jsx-runtime": "^1.2.0",
"lodash": "^4.17.21",
- "notistack": "^2.0.4",
+ "notistack": "^3.0.0-alpha.7",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-dropzone": "^14.2.1",
+ "react-dropzone": "^14.2.2",
"react-helmet-async": "^1.3.0",
- "react-hook-form": "^7.30.0",
+ "react-hook-form": "^7.34.2",
"react-intersection-observer": "^8.34.0",
- "react-lazy-load-image-component": "^1.5.4",
- "react-quill": "^1.3.5",
+ "react-lazy-load-image-component": "^1.5.5",
+ "react-quill": "2.0.0-beta.4",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
- "simplebar": "^5.3.6",
- "simplebar-react": "^2.3.7",
+ "simplebar": "^5.3.8",
+ "simplebar-react": "^2.4.1",
"stylis": "^4.1.1",
"stylis-plugin-rtl": "^2.1.1",
- "vite": "^2.9.8",
- "vite-plugin-svgr": "^2.1.0",
+ "vite": "^3.0.9",
+ "vite-plugin-svgr": "^2.2.1",
"yup": "^0.32.11"
},
"devDependencies": {
- "@babel/core": "^7.17.10",
- "@babel/eslint-parser": "^7.17.0",
- "@babel/plugin-syntax-flow": "^7.16.7",
- "@babel/plugin-transform-react-jsx": "^7.17.3",
+ "@babel/core": "^7.18.13",
+ "@babel/eslint-parser": "^7.18.9",
+ "@babel/plugin-syntax-flow": "^7.18.6",
+ "@babel/plugin-transform-react-jsx": "^7.18.10",
+ "@types/lodash": "^4.14.184",
"@types/nprogress": "^0.2.0",
- "@types/react": "^17.0.44",
- "@types/react-dom": "^17.0.16",
+ "@types/react": "^17.0.48",
+ "@types/react-dom": "^17.0.17",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/stylis": "^4.0.2",
- "@typescript-eslint/eslint-plugin": "^5.22.0",
- "@typescript-eslint/parser": "^5.22.0",
- "eslint": "^8.14.0",
+ "@typescript-eslint/eslint-plugin": "^5.35.1",
+ "@typescript-eslint/parser": "^5.35.1",
+ "eslint": "^8.22.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "^8.5.0",
@@ -97,11 +102,11 @@
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
- "eslint-plugin-prettier": "^4.0.0",
- "eslint-plugin-react": "^7.29.4",
+ "eslint-plugin-prettier": "^4.2.1",
+ "eslint-plugin-react": "^7.31.0",
"eslint-plugin-react-hooks": "4.3.0",
- "prettier": "^2.6.2",
- "typescript": "^4.6.4",
- "vite-plugin-pwa": "^0.12.0"
+ "prettier": "^2.7.1",
+ "typescript": "^4.8.2",
+ "vite-plugin-pwa": "^0.12.3"
}
}
diff --git a/frontend/client-portal/pnpm-lock.yaml b/frontend/client-portal/pnpm-lock.yaml
index ead27f84..c8339f97 100644
--- a/frontend/client-portal/pnpm-lock.yaml
+++ b/frontend/client-portal/pnpm-lock.yaml
@@ -1,32 +1,36 @@
lockfileVersion: 5.4
specifiers:
- '@babel/core': ^7.17.10
- '@babel/eslint-parser': ^7.17.0
- '@babel/plugin-syntax-flow': ^7.16.7
- '@babel/plugin-transform-react-jsx': ^7.17.3
- '@emotion/cache': ^11.7.1
- '@emotion/react': ^11.9.0
- '@emotion/styled': ^11.8.1
- '@hookform/resolvers': ^2.8.8
- '@iconify/react': ^3.2.1
- '@mui/icons-material': ^5.8.0
+ '@babel/core': ^7.18.13
+ '@babel/eslint-parser': ^7.18.9
+ '@babel/plugin-syntax-flow': ^7.18.6
+ '@babel/plugin-transform-react-jsx': ^7.18.10
+ '@date-io/date-fns': ^2.15.0
+ '@emotion/cache': ^11.10.3
+ '@emotion/react': ^11.10.0
+ '@emotion/styled': ^11.10.0
+ '@hookform/resolvers': ^2.9.7
+ '@iconify/react': ^3.2.2
+ '@mui/icons-material': ^5.10.2
'@mui/lab': 5.0.0-alpha.80
- '@mui/material': ^5.6.4
- '@mui/system': ^5.6.4
- '@mui/x-data-grid': ^5.10.0
+ '@mui/material': ^5.10.2
+ '@mui/system': ^5.10.2
+ '@mui/x-data-grid': ^5.16.0
+ '@mui/x-date-pickers': 5.0.0-beta.2
+ '@types/lodash': ^4.14.184
'@types/nprogress': ^0.2.0
- '@types/react': ^17.0.44
- '@types/react-dom': ^17.0.16
+ '@types/react': ^17.0.48
+ '@types/react-dom': ^17.0.17
'@types/react-lazy-load-image-component': ^1.5.2
'@types/stylis': ^4.0.2
- '@typescript-eslint/eslint-plugin': ^5.22.0
- '@typescript-eslint/parser': ^5.22.0
+ '@typescript-eslint/eslint-plugin': ^5.35.1
+ '@typescript-eslint/parser': ^5.35.1
'@vitejs/plugin-react': ^1.3.2
axios: ^0.27.2
change-case: ^4.1.2
- date-fns: ^2.28.0
- eslint: ^8.14.0
+ csstype: ^3.1.0
+ date-fns: ^2.29.2
+ eslint: ^8.22.0
eslint-config-airbnb: 19.0.4
eslint-config-airbnb-typescript: ^16.2.0
eslint-config-prettier: ^8.5.0
@@ -35,104 +39,110 @@ specifiers:
eslint-plugin-flowtype: ^8.0.3
eslint-plugin-import: ^2.26.0
eslint-plugin-jsx-a11y: 6.5.1
- eslint-plugin-prettier: ^4.0.0
- eslint-plugin-react: ^7.29.4
+ eslint-plugin-prettier: ^4.2.1
+ eslint-plugin-react: ^7.31.0
eslint-plugin-react-hooks: 4.3.0
- framer-motion: ^6.3.3
+ framer-motion: ^6.5.1
+ highlight.js: ^11.6.0
history: ^5.3.0
jsx-runtime: ^1.2.0
lodash: ^4.17.21
- notistack: ^2.0.4
+ notistack: ^3.0.0-alpha.7
nprogress: ^0.2.0
numeral: ^2.0.6
- prettier: ^2.6.2
+ prettier: ^2.7.1
react: ^17.0.2
react-dom: ^17.0.2
- react-dropzone: ^14.2.1
+ react-dropzone: ^14.2.2
react-helmet-async: ^1.3.0
- react-hook-form: ^7.30.0
+ react-hook-form: ^7.34.2
react-intersection-observer: ^8.34.0
- react-lazy-load-image-component: ^1.5.4
- react-quill: ^1.3.5
+ react-lazy-load-image-component: ^1.5.5
+ react-quill: 2.0.0-beta.4
react-router: ^6.3.0
react-router-dom: ^6.3.0
- simplebar: ^5.3.6
- simplebar-react: ^2.3.7
+ simplebar: ^5.3.8
+ simplebar-react: ^2.4.1
stylis: ^4.1.1
stylis-plugin-rtl: ^2.1.1
- typescript: ^4.6.4
- vite: ^2.9.8
- vite-plugin-pwa: ^0.12.0
- vite-plugin-svgr: ^2.1.0
+ typescript: ^4.8.2
+ vite: ^3.0.9
+ vite-plugin-pwa: ^0.12.3
+ vite-plugin-svgr: ^2.2.1
yup: ^0.32.11
dependencies:
- '@emotion/cache': 11.7.1
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/styled': 11.8.1_3mkbovqfrbpc53bljqhapolzfu
- '@hookform/resolvers': 2.8.10_react-hook-form@7.31.2
- '@iconify/react': 3.2.1
- '@mui/icons-material': 5.8.0_thescs6epir3llb7jldxow7if4
- '@mui/lab': 5.0.0-alpha.80_xcunwhadao43cv4uyunwgxd52a
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- '@mui/system': 5.8.0_wwmr3izetkfahorjeqrfwx2m5i
- '@mui/x-data-grid': 5.11.1_4lwdcbofapjxh537ddci4xdvt4
+ '@date-io/date-fns': 2.15.0_date-fns@2.29.2
+ '@emotion/cache': 11.10.3
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/styled': 11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u
+ '@hookform/resolvers': 2.9.7_react-hook-form@7.34.2
+ '@iconify/react': 3.2.2_react@17.0.2
+ '@mui/icons-material': 5.10.2_nmqjiwr5rpbnyqhmjzj5vfrzti
+ '@mui/lab': 5.0.0-alpha.80_vli2fzedtzvbon5ke6iprktoka
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/x-data-grid': 5.16.0_r4jqxufjb3aftjrjm24vhpn4hm
+ '@mui/x-date-pickers': 5.0.0-beta.2_y3fv7pzpxqpbmxcbzsros3kjnu
'@vitejs/plugin-react': 1.3.2
axios: 0.27.2
change-case: 4.1.2
- date-fns: 2.28.0
- framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m
+ csstype: 3.1.0
+ date-fns: 2.29.2
+ framer-motion: 6.5.1_sfoxds7t5ydpegc3knd667wn6m
+ highlight.js: 11.6.0
history: 5.3.0
jsx-runtime: 1.2.0
lodash: 4.17.21
- notistack: 2.0.5_k22khpnjqxywh7vt4mxfep5lqy
+ notistack: 3.0.0-alpha.7_a3rolb2r43cxt5j5fxvpwhxlai
nprogress: 0.2.0
numeral: 2.0.6
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-dropzone: 14.2.1_react@17.0.2
+ react-dropzone: 14.2.2_react@17.0.2
react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
- react-hook-form: 7.31.2_react@17.0.2
+ react-hook-form: 7.34.2_react@17.0.2
react-intersection-observer: 8.34.0_react@17.0.2
- react-lazy-load-image-component: 1.5.4_sfoxds7t5ydpegc3knd667wn6m
- react-quill: 1.3.5_react@17.0.2
+ react-lazy-load-image-component: 1.5.5_sfoxds7t5ydpegc3knd667wn6m
+ react-quill: 2.0.0-beta.4_sfoxds7t5ydpegc3knd667wn6m
react-router: 6.3.0_react@17.0.2
react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m
- simplebar: 5.3.6
- simplebar-react: 2.3.7_sfoxds7t5ydpegc3knd667wn6m
+ simplebar: 5.3.8
+ simplebar-react: 2.4.1_sfoxds7t5ydpegc3knd667wn6m
stylis: 4.1.1
stylis-plugin-rtl: 2.1.1_stylis@4.1.1
- vite: 2.9.9
- vite-plugin-svgr: 2.1.0_vite@2.9.9
+ vite: 3.0.9
+ vite-plugin-svgr: 2.2.1_vite@3.0.9
yup: 0.32.11
devDependencies:
- '@babel/core': 7.18.0
- '@babel/eslint-parser': 7.17.0_3jmbb74oue544vtiil27ushva4
- '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/eslint-parser': 7.18.9_i2zlx7awpychpyuxyfseoqk6n4
+ '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
+ '@types/lodash': 4.14.184
'@types/nprogress': 0.2.0
- '@types/react': 17.0.45
+ '@types/react': 17.0.48
'@types/react-dom': 17.0.17
'@types/react-lazy-load-image-component': 1.5.2
'@types/stylis': 4.0.2
- '@typescript-eslint/eslint-plugin': 5.25.0_jorowkvdqu6pwramweg5le7ncu
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
- eslint: 8.16.0
- eslint-config-airbnb: 19.0.4_dt6kf4kwd3nqvb6ocrypjno67y
- eslint-config-airbnb-typescript: 16.2.0_ap2wief2ko4jllacu34d7dt3q4
- eslint-config-prettier: 8.5.0_eslint@8.16.0
- eslint-config-react-app: 7.0.0_7hoop7gul6kston36b5aak4ugm
- eslint-import-resolver-typescript: 2.7.1_btspkuwbqkl4adpiufzbathtpi
- eslint-plugin-flowtype: 8.0.3_nqt7qlfyaowr4srl6t3lwtnjdq
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.16.0
- eslint-plugin-prettier: 4.0.0_j7rsahgqtkecno6yauhsgsglf4
- eslint-plugin-react: 7.30.0_eslint@8.16.0
- eslint-plugin-react-hooks: 4.3.0_eslint@8.16.0
- prettier: 2.6.2
- typescript: 4.6.4
- vite-plugin-pwa: 0.12.0_vite@2.9.9
+ '@typescript-eslint/eslint-plugin': 5.35.1_4kgehhvxgrxdvptdn2db7re534
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ eslint: 8.22.0
+ eslint-config-airbnb: 19.0.4_qpt6uitt6oqtgn3evknx4gcn7y
+ eslint-config-airbnb-typescript: 16.2.0_bqmh3ui2sxk4fcliyqc7oxsuki
+ eslint-config-prettier: 8.5.0_eslint@8.22.0
+ eslint-config-react-app: 7.0.0_cckrf6btgm46dp4ituzp5nhjhu
+ eslint-import-resolver-typescript: 2.7.1_2iahngt3u2tkbdlu6s4gkur3pu
+ eslint-plugin-flowtype: 8.0.3_tecjquvmfntaxzsccq5vschudq
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.22.0
+ eslint-plugin-prettier: 4.2.1_i2cojdczqdiurzgttlwdgf764e
+ eslint-plugin-react: 7.31.0_eslint@8.22.0
+ eslint-plugin-react-hooks: 4.3.0_eslint@8.22.0
+ prettier: 2.7.1
+ typescript: 4.8.2
+ vite-plugin-pwa: 0.12.3_vite@3.0.9
packages:
@@ -141,44 +151,44 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.15
- /@apideck/better-ajv-errors/0.3.3_ajv@8.11.0:
- resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==}
+ /@apideck/better-ajv-errors/0.3.6_ajv@8.11.0:
+ resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
dependencies:
ajv: 8.11.0
json-schema: 0.4.0
- jsonpointer: 5.0.0
+ jsonpointer: 5.0.1
leven: 3.1.0
dev: true
- /@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
+ /@babel/code-frame/7.18.6:
+ resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.17.12
+ '@babel/highlight': 7.18.6
- /@babel/compat-data/7.17.10:
- resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==}
+ /@babel/compat-data/7.18.13:
+ resolution: {integrity: sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.18.0:
- resolution: {integrity: sha512-Xyw74OlJwDijToNi0+6BBI5mLLR5+5R3bcSH80LXzjzEGEUlvNzujEE71BaD/ApEZHAvFI/Mlmp4M5lIkdeeWw==}
+ /@babel/core/7.18.13:
+ resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.18.0
- '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helpers': 7.18.0
- '@babel/parser': 7.18.0
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.18.13
+ '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
+ '@babel/helper-module-transforms': 7.18.9
+ '@babel/helpers': 7.18.9
+ '@babel/parser': 7.18.13
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.18.13
+ '@babel/types': 7.18.13
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -187,1357 +197,1362 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser/7.17.0_3jmbb74oue544vtiil27ushva4:
- resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
+ /@babel/eslint-parser/7.18.9_i2zlx7awpychpyuxyfseoqk6n4:
+ resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': '>=7.11.0'
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.18.0
- eslint: 8.16.0
+ '@babel/core': 7.18.13
+ eslint: 8.22.0
eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: true
- /@babel/generator/7.18.0:
- resolution: {integrity: sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==}
+ /@babel/generator/7.18.13:
+ resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
- '@jridgewell/gen-mapping': 0.3.1
+ '@babel/types': 7.18.13
+ '@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.16.7:
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
+ /@babel/helper-annotate-as-pure/7.18.6:
+ resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
- /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7:
- resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.18.0
+ '@babel/helper-explode-assignable-expression': 7.18.6
+ '@babel/types': 7.18.13
dev: true
- /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0:
- resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==}
+ /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.0
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.3
+ '@babel/compat-data': 7.18.13
+ '@babel/core': 7.18.13
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.3
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==}
+ /@babel/helper-create-class-features-plugin/7.18.13_@babel+core@7.18.13:
+ resolution: {integrity: sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-member-expression-to-functions': 7.17.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.18.9
+ '@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==}
+ /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 5.0.1
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.1.0
dev: true
- /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.0:
- resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
+ /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.13:
+ resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/traverse': 7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
debug: 4.3.4
lodash.debounce: 4.0.8
- resolve: 1.22.0
+ resolve: 1.22.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
+ /@babel/helper-environment-visitor/7.18.9:
+ resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.0
- /@babel/helper-explode-assignable-expression/7.16.7:
- resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
+ /@babel/helper-explode-assignable-expression/7.18.6:
+ resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
dev: true
- /@babel/helper-function-name/7.17.9:
- resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
+ /@babel/helper-function-name/7.18.9:
+ resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.18.0
+ '@babel/template': 7.18.10
+ '@babel/types': 7.18.13
- /@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
+ /@babel/helper-hoist-variables/7.18.6:
+ resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
- /@babel/helper-member-expression-to-functions/7.17.7:
- resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
+ /@babel/helper-member-expression-to-functions/7.18.9:
+ resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
dev: true
- /@babel/helper-module-imports/7.16.7:
- resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
+ /@babel/helper-module-imports/7.18.6:
+ resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
- /@babel/helper-module-transforms/7.18.0:
- resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
+ /@babel/helper-module-transforms/7.18.9:
+ resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.17.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-simple-access': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-validator-identifier': 7.18.6
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.18.13
+ '@babel/types': 7.18.13
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.16.7:
- resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
+ /@babel/helper-optimise-call-expression/7.18.6:
+ resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.13
dev: true
- /@babel/helper-plugin-utils/7.17.12:
- resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==}
+ /@babel/helper-plugin-utils/7.18.9:
+ resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.16.8:
- resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.18.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-replace-supers/7.16.7:
- resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.17.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-simple-access/7.17.7:
- resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.0
-
- /@babel/helper-skip-transparent-expression-wrappers/7.16.0:
- resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.0
- dev: true
-
- /@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.0
-
- /@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option/7.16.7:
- resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-wrap-function/7.16.8:
- resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.17.9
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helpers/7.18.0:
- resolution: {integrity: sha512-AE+HMYhmlMIbho9nbvicHyxFwhrO+xhKB6AhRxzl8w46Yj0VXTZjEsAoBVC7rB2I0jzX+yWyVybnO08qkfx6kg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/highlight/7.17.12:
- resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/parser/7.18.0:
- resolution: {integrity: sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.18.0
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-wrap-function': 7.18.11
+ '@babel/types': 7.18.13
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==}
+ /@babel/helper-replace-supers/7.18.9:
+ resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/traverse': 7.18.13
+ '@babel/types': 7.18.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-simple-access/7.18.6:
+ resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.18.13
+
+ /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
+ resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.18.13
+ dev: true
+
+ /@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.18.13
+
+ /@babel/helper-string-parser/7.18.10:
+ resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/helper-validator-identifier/7.18.6:
+ resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/helper-validator-option/7.18.6:
+ resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/helper-wrap-function/7.18.11:
+ resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.18.9
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.18.13
+ '@babel/types': 7.18.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helpers/7.18.9:
+ resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.18.13
+ '@babel/types': 7.18.13
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/highlight/7.18.6:
+ resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.18.6
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+
+ /@babel/parser/7.18.13:
+ resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.18.13
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ dev: true
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==}
+ /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-remap-async-to-generator': 7.16.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.13:
+ 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.0
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-gL0qSSeIk/VRfTDgtQg/EtejENssN/r3p5gJsPie1UacwiHibprpr19Z0pcK3XKuqQvjGVxsQ37Tl1MGfXzonA==}
+ /@babel/plugin-proposal-decorators/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.0
- charcodes: 0.2.0
+ '@babel/core': 7.18.13
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-replace-supers': 7.18.9
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==}
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
+ /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0
+ '@babel/compat-data': 7.18.13
+ '@babel/core': 7.18.13
+ '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13
dev: true
- /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==}
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==}
+ /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==}
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.0:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.13:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.0:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.13:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.0:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.13:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==}
+ /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==}
+ /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==}
+ /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==}
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.0:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.13:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.0:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.13:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.0:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.13:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.0:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.13:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.0:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.13:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==}
+ /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==}
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==}
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-remap-async-to-generator': 7.16.8
+ '@babel/core': 7.18.13
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-block-scoping/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==}
+ /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-classes/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==}
+ /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-replace-supers': 7.18.9
+ '@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==}
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==}
+ /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.18.13:
+ resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==}
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==}
+ /@babel/plugin-transform-flow-strip-types/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.13
dev: true
- /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.0:
- resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==}
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.13:
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
+ '@babel/helper-function-name': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==}
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==}
+ /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-module-transforms': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==}
+ /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-simple-access': 7.17.7
+ '@babel/core': 7.18.13
+ '@babel/helper-module-transforms': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-simple-access': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ==}
+ /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-identifier': 7.16.7
+ '@babel/core': 7.18.13
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-identifier': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==}
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-module-transforms': 7.18.9
+ '@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==}
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-replace-supers': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==}
+ /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.13:
+ resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==}
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.13:
+ 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.0
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
- /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==}
+ /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: false
- /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==}
+ /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: false
- /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==}
+ /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0
- '@babel/types': 7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13
+ '@babel/types': 7.18.13
- /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==}
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==}
+ /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==}
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-runtime/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-7kM/jJ3DD/y1hDPn0jov12DoUIFsxLiItprhNydUSibxaywaxNqKwq+ODk72J9ePn4LWobIc5ik6TAJhVl8IkQ==}
+ /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.17.12
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.18.9
+ babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.13
+ babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.13
+ babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.13
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==}
+ /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
dev: true
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-template-literals/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==}
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==}
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.13:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-typescript/7.18.1_@babel+core@7.18.0:
- resolution: {integrity: sha512-F+RJmL479HJmC0KeqqwEGZMg1P7kWArLGbAKfEi9yPthJyMNjF+DjxFF/halfQvq1Q9GFM4TUbYDNV8xe4Ctqg==}
+ /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.13:
+ resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.0:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
+ '@babel/core': 7.18.13
+ '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/preset-env/7.18.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-cP74OMs7ECLPeG1reiCQ/D/ypyOxgfm8uR6HRYV23vTJ7Lu1nbgj9DQDo/vH59gnn7GOAwtTDPPYV4aXzsMKHA==}
+ /@babel/preset-env/7.18.10_@babel+core@7.18.13:
+ resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.0
- '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.0
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-modules-systemjs': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-template-literals': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.0
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.0
- '@babel/types': 7.18.0
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0
- core-js-compat: 3.22.6
+ '@babel/compat-data': 7.18.13
+ '@babel/core': 7.18.13
+ '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.13
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.13
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.13
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.13
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.13
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.18.13
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.13
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.13
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.13
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/preset-modules': 0.1.5_@babel+core@7.18.13
+ '@babel/types': 7.18.13
+ babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.13
+ babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.13
+ babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.13
+ core-js-compat: 3.25.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.18.0:
+ /@babel/preset-modules/0.1.5_@babel+core@7.18.13:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0
- '@babel/types': 7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.13
+ '@babel/types': 7.18.13
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==}
+ /@babel/preset-react/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.13
dev: true
- /@babel/preset-typescript/7.17.12_@babel+core@7.18.0:
- resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==}
+ /@babel/preset-typescript/7.18.6_@babel+core@7.18.13:
+ resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.18.1_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/runtime-corejs3/7.18.0:
- resolution: {integrity: sha512-G5FaGZOWORq9zthDjIrjib5XlcddeqLbIiDO3YQsut6j7aGf76xn0umUC/pA6+nApk3hQJF4JzLzg5PCl6ewJg==}
+ /@babel/runtime-corejs3/7.18.9:
+ resolution: {integrity: sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.22.6
+ core-js-pure: 3.25.0
regenerator-runtime: 0.13.9
dev: true
- /@babel/runtime/7.18.0:
- resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==}
+ /@babel/runtime/7.18.9:
+ resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
- /@babel/template/7.16.7:
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
+ /@babel/template/7.18.10:
+ resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/code-frame': 7.18.6
+ '@babel/parser': 7.18.13
+ '@babel/types': 7.18.13
- /@babel/traverse/7.18.0:
- resolution: {integrity: sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==}
+ /@babel/traverse/7.18.13:
+ resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.18.0
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.18.13
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.18.9
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.18.13
+ '@babel/types': 7.18.13
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types/7.18.0:
- resolution: {integrity: sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==}
+ /@babel/types/7.18.13:
+ resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.16.7
+ '@babel/helper-string-parser': 7.18.10
+ '@babel/helper-validator-identifier': 7.18.6
to-fast-properties: 2.0.0
- /@date-io/core/2.14.0:
- resolution: {integrity: sha512-qFN64hiFjmlDHJhu+9xMkdfDG2jLsggNxKXglnekUpXSq8faiqZgtHm2lsHCUuaPDTV6wuXHcCl8J1GQ5wLmPw==}
+ /@date-io/core/2.15.0:
+ resolution: {integrity: sha512-3CRvQUEK7aF87NUOwcTtmJ2Rc1kN0D4jFQUfRoanuAnE4o5HzHx4E2YenjaKjSPWeZYiWG6ZhDomx5hp1AaCJA==}
dev: false
- /@date-io/date-fns/2.14.0_date-fns@2.28.0:
- resolution: {integrity: sha512-4fJctdVyOd5cKIKGaWUM+s3MUXMuzkZaHuTY15PH70kU1YTMrCoauA7hgQVx9qj0ZEbGrH9VSPYJYnYro7nKiA==}
+ /@date-io/date-fns/2.15.0_date-fns@2.29.2:
+ resolution: {integrity: sha512-hkVeLm0jijHS2F9YVQcf0LSlD55w9xPvvIfuxDE0XWNXOTcRAAhqw2aqOxyeGbmHxc5U4HqyPZaqs9tfeTsomQ==}
peerDependencies:
date-fns: ^2.0.0
peerDependenciesMeta:
date-fns:
optional: true
dependencies:
- '@date-io/core': 2.14.0
- date-fns: 2.28.0
+ '@date-io/core': 2.15.0
+ date-fns: 2.29.2
dev: false
- /@date-io/dayjs/2.14.0:
- resolution: {integrity: sha512-4fRvNWaOh7AjvOyJ4h6FYMS7VHLQnIEeAV5ahv6sKYWx+1g1UwYup8h7+gPuoF+sW2hTScxi7PVaba2Jk/U8Og==}
+ /@date-io/dayjs/2.15.0:
+ resolution: {integrity: sha512-wgYzwaXr9KxkHNYxrOb1t8fYLfAdjIf0Q86qdVCwANObcvyGcPBm0uFtpPK7ApeE4DJUlbuG0IX75TtO+uITwQ==}
peerDependencies:
dayjs: ^1.8.17
peerDependenciesMeta:
dayjs:
optional: true
dependencies:
- '@date-io/core': 2.14.0
+ '@date-io/core': 2.15.0
dev: false
- /@date-io/luxon/2.14.0:
- resolution: {integrity: sha512-KmpBKkQFJ/YwZgVd0T3h+br/O0uL9ZdE7mn903VPAG2ZZncEmaUfUdYKFT7v7GyIKJ4KzCp379CRthEbxevEVg==}
+ /@date-io/luxon/2.15.0:
+ resolution: {integrity: sha512-CxTRCo5AM96ainnYaTpe1NS9GiA78SIgXBScgeAresCS20AvMcOd5XKerDj+y/KLhbSQbU6WUDqG9QcsrImXyQ==}
peerDependencies:
luxon: ^1.21.3 || ^2.x
peerDependenciesMeta:
luxon:
optional: true
dependencies:
- '@date-io/core': 2.14.0
+ '@date-io/core': 2.15.0
dev: false
- /@date-io/moment/2.14.0:
- resolution: {integrity: sha512-VsoLXs94GsZ49ecWuvFbsa081zEv2xxG7d+izJsqGa2L8RPZLlwk27ANh87+SNnOUpp+qy2AoCAf0mx4XXhioA==}
+ /@date-io/moment/2.15.0:
+ resolution: {integrity: sha512-AcYBjl3EnEGsByaM5ir644CKbhgJsgc1iWFa9EXfdb4fQexxOC8oCdPAurK2ZDTwg62odyyKa/05YE7ElYh5ag==}
peerDependencies:
moment: ^2.24.0
peerDependenciesMeta:
moment:
optional: true
dependencies:
- '@date-io/core': 2.14.0
+ '@date-io/core': 2.15.0
dev: false
- /@emotion/babel-plugin/11.9.2_@babel+core@7.18.0:
- resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==}
+ /@emotion/babel-plugin/11.10.2_@babel+core@7.18.13:
+ resolution: {integrity: sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0
- '@babel/runtime': 7.18.0
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/serialize': 1.0.3
- babel-plugin-macros: 2.8.0
+ '@babel/core': 7.18.13
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13
+ '@babel/runtime': 7.18.9
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/serialize': 1.1.0
+ babel-plugin-macros: 3.1.0
convert-source-map: 1.8.0
escape-string-regexp: 4.0.0
find-root: 1.1.0
@@ -1545,18 +1560,18 @@ packages:
stylis: 4.0.13
dev: false
- /@emotion/cache/11.7.1:
- resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==}
+ /@emotion/cache/11.10.3:
+ resolution: {integrity: sha512-Psmp/7ovAa8appWh3g51goxu/z3iVms7JXOreq136D8Bbn6dYraPnmL6mdM8GThEx9vwSn92Fz+mGSjBzN8UPQ==}
dependencies:
- '@emotion/memoize': 0.7.5
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.1.0
- '@emotion/weak-memoize': 0.2.5
+ '@emotion/memoize': 0.8.0
+ '@emotion/sheet': 1.2.0
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.3.0
stylis: 4.0.13
dev: false
- /@emotion/hash/0.8.0:
- resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ /@emotion/hash/0.9.0:
+ resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
dev: false
/@emotion/is-prop-valid/0.8.8:
@@ -1567,10 +1582,10 @@ packages:
dev: false
optional: true
- /@emotion/is-prop-valid/1.1.2:
- resolution: {integrity: sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==}
+ /@emotion/is-prop-valid/1.2.0:
+ resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
dependencies:
- '@emotion/memoize': 0.7.5
+ '@emotion/memoize': 0.8.0
dev: false
/@emotion/memoize/0.7.4:
@@ -1578,12 +1593,12 @@ packages:
dev: false
optional: true
- /@emotion/memoize/0.7.5:
- resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
+ /@emotion/memoize/0.8.0:
+ resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
dev: false
- /@emotion/react/11.9.0_citxzijaigt45he3z6kuy2ivbq:
- resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==}
+ /@emotion/react/11.10.0_u65opluo5sjgh3eblfliq6jsnm:
+ resolution: {integrity: sha512-K6z9zlHxxBXwN8TcpwBKcEsBsOw4JWCCmR+BeeOWgqp8GIU1yA2Odd41bwdAAr0ssbQrbJbVnndvv7oiv1bZeQ==}
peerDependencies:
'@babel/core': ^7.0.0
'@types/react': '*'
@@ -1594,34 +1609,34 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/core': 7.18.0
- '@babel/runtime': 7.18.0
- '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.0
- '@emotion/cache': 11.7.1
- '@emotion/serialize': 1.0.3
- '@emotion/utils': 1.1.0
- '@emotion/weak-memoize': 0.2.5
- '@types/react': 17.0.45
+ '@babel/core': 7.18.13
+ '@babel/runtime': 7.18.9
+ '@emotion/babel-plugin': 11.10.2_@babel+core@7.18.13
+ '@emotion/cache': 11.10.3
+ '@emotion/serialize': 1.1.0
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.3.0
+ '@types/react': 17.0.48
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: false
- /@emotion/serialize/1.0.3:
- resolution: {integrity: sha512-2mSSvgLfyV3q+iVh3YWgNlUc2a9ZlDU7DjuP5MjK3AXRR0dYigCrP99aeFtaB2L/hjfEZdSThn5dsZ0ufqbvsA==}
+ /@emotion/serialize/1.1.0:
+ resolution: {integrity: sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA==}
dependencies:
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/unitless': 0.7.5
- '@emotion/utils': 1.1.0
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/unitless': 0.8.0
+ '@emotion/utils': 1.2.0
csstype: 3.1.0
dev: false
- /@emotion/sheet/1.1.0:
- resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==}
+ /@emotion/sheet/1.2.0:
+ resolution: {integrity: sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==}
dev: false
- /@emotion/styled/11.8.1_3mkbovqfrbpc53bljqhapolzfu:
- resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
+ /@emotion/styled/11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u:
+ resolution: {integrity: sha512-V9oaEH6V4KePeQpgUE83i8ht+4Ri3E8Djp/ZPJ4DQlqWhSKITvgzlR3/YQE2hdfP4Jw3qVRkANJz01LLqK9/TA==}
peerDependencies:
'@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
@@ -1633,37 +1648,45 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/core': 7.18.0
- '@babel/runtime': 7.18.0
- '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.0
- '@emotion/is-prop-valid': 1.1.2
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/serialize': 1.0.3
- '@emotion/utils': 1.1.0
- '@types/react': 17.0.45
+ '@babel/core': 7.18.13
+ '@babel/runtime': 7.18.9
+ '@emotion/babel-plugin': 11.10.2_@babel+core@7.18.13
+ '@emotion/is-prop-valid': 1.2.0
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/serialize': 1.1.0
+ '@emotion/utils': 1.2.0
+ '@types/react': 17.0.48
react: 17.0.2
dev: false
- /@emotion/unitless/0.7.5:
- resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ /@emotion/unitless/0.8.0:
+ resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
dev: false
- /@emotion/utils/1.1.0:
- resolution: {integrity: sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==}
+ /@emotion/utils/1.2.0:
+ resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
dev: false
- /@emotion/weak-memoize/0.2.5:
- resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
+ /@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
+ optional: true
+
/@eslint/eslintrc/1.3.0:
resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.2
- globals: 13.15.0
+ espree: 9.3.3
+ globals: 13.17.0
ignore: 5.2.0
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -1673,16 +1696,16 @@ packages:
- supports-color
dev: true
- /@hookform/resolvers/2.8.10_react-hook-form@7.31.2:
- resolution: {integrity: sha512-DDFtNlugsbwAhCJHYp3NcN5LvJrwSsCLPi41Wo5O8UAIbUFnBfY/jW+zKnlX57BZ4jE0j/g6R9rB3JlO89ad0g==}
+ /@hookform/resolvers/2.9.7_react-hook-form@7.34.2:
+ resolution: {integrity: sha512-BloehX3MOLwuFEwT4yZnmolPjVmqyn8VsSuodLfazbCIqxBHsQ4qUZsi+bvNNCduRli1AGWFrkDLGD5QoNzsoA==}
peerDependencies:
react-hook-form: ^7.0.0
dependencies:
- react-hook-form: 7.31.2_react@17.0.2
+ react-hook-form: 7.34.2_react@17.0.2
dev: false
- /@humanwhocodes/config-array/0.9.5:
- resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
+ /@humanwhocodes/config-array/0.10.4:
+ resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -1692,51 +1715,113 @@ packages:
- supports-color
dev: true
+ /@humanwhocodes/gitignore-to-minimatch/1.0.2:
+ resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==}
+ dev: true
+
/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@iconify/react/3.2.1:
- resolution: {integrity: sha512-yKzixjC9ct9RC/aSGo1OGxkG2rpfhlr/urRz6k2YZlIBzn92PBTlqtSx8o8dFYEorr3eUFSCBZFzBy1yw5jsAA==}
+ /@iconify/react/3.2.2_react@17.0.2:
+ resolution: {integrity: sha512-z3+Jno3VcJzgNHsN5mEvYMsgCkOZkydqdIwOxjXh45+i2Vs9RGH68Y52vt39izwFSfuYUXhaW+1u7m7+IhCn/g==}
+ peerDependencies:
+ react: '>=16'
+ dependencies:
+ react: 17.0.2
dev: false
/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/set-array': 1.1.1
- '@jridgewell/sourcemap-codec': 1.4.13
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/gen-mapping/0.3.1:
- resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==}
+ /@jridgewell/gen-mapping/0.3.2:
+ resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/set-array': 1.1.1
- '@jridgewell/sourcemap-codec': 1.4.13
- '@jridgewell/trace-mapping': 0.3.13
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/trace-mapping': 0.3.15
- /@jridgewell/resolve-uri/3.0.7:
- resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==}
+ /@jridgewell/resolve-uri/3.1.0:
+ resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.1:
- resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==}
+ /@jridgewell/set-array/1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/sourcemap-codec/1.4.13:
- resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
-
- /@jridgewell/trace-mapping/0.3.13:
- resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
+ /@jridgewell/source-map/0.3.2:
+ resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
- '@jridgewell/resolve-uri': 3.0.7
- '@jridgewell/sourcemap-codec': 1.4.13
+ '@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.15
+ dev: true
- /@juggle/resize-observer/3.3.1:
- resolution: {integrity: sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw==}
+ /@jridgewell/sourcemap-codec/1.4.14:
+ resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+
+ /@jridgewell/trace-mapping/0.3.15:
+ resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+
+ /@juggle/resize-observer/3.4.0:
+ resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: false
- /@mui/base/5.0.0-alpha.79_k2mvpji5i2ojml6m4ftklg47pa:
+ /@motionone/animation/10.14.0:
+ resolution: {integrity: sha512-h+1sdyBP8vbxEBW5gPFDnj+m2DCqdlAuf2g6Iafb1lcMnqjsRXWlPw1AXgvUMXmreyhqmPbJqoNfIKdytampRQ==}
+ dependencies:
+ '@motionone/easing': 10.14.0
+ '@motionone/types': 10.14.0
+ '@motionone/utils': 10.14.0
+ tslib: 2.4.0
+ dev: false
+
+ /@motionone/dom/10.12.0:
+ resolution: {integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==}
+ dependencies:
+ '@motionone/animation': 10.14.0
+ '@motionone/generators': 10.14.0
+ '@motionone/types': 10.14.0
+ '@motionone/utils': 10.14.0
+ hey-listen: 1.0.8
+ tslib: 2.4.0
+ dev: false
+
+ /@motionone/easing/10.14.0:
+ resolution: {integrity: sha512-2vUBdH9uWTlRbuErhcsMmt1jvMTTqvGmn9fHq8FleFDXBlHFs5jZzHJT9iw+4kR1h6a4SZQuCf72b9ji92qNYA==}
+ dependencies:
+ '@motionone/utils': 10.14.0
+ tslib: 2.4.0
+ dev: false
+
+ /@motionone/generators/10.14.0:
+ resolution: {integrity: sha512-6kRHezoFfIjFN7pPpaxmkdZXD36tQNcyJe3nwVqwJ+ZfC0e3rFmszR8kp9DEVFs9QL/akWjuGPSLBI1tvz+Vjg==}
+ dependencies:
+ '@motionone/types': 10.14.0
+ '@motionone/utils': 10.14.0
+ tslib: 2.4.0
+ dev: false
+
+ /@motionone/types/10.14.0:
+ resolution: {integrity: sha512-3bNWyYBHtVd27KncnJLhksMFQ5o2MSdk1cA/IZqsHtA9DnRM1SYgN01CTcJ8Iw8pCXF5Ocp34tyAjY7WRpOJJQ==}
+ dev: false
+
+ /@motionone/utils/10.14.0:
+ resolution: {integrity: sha512-sLWBLPzRqkxmOTRzSaD3LFQXCPHvDzyHJ1a3VP9PRzBxyVd2pv51/gMOsdAcxQ9n+MIeGJnxzXBYplUHKj4jkw==}
+ dependencies:
+ '@motionone/types': 10.14.0
+ hey-listen: 1.0.8
+ tslib: 2.4.0
+ dev: false
+
+ /@mui/base/5.0.0-alpha.79_sk3eihvpffgp52mstba5zhq3vu:
resolution: {integrity: sha512-/lZLF027BkiEjM8MIYoeS/FEhTKf+41ePU9SOijMGrCin1Y0Igucw+IHa1fF8HXD7wDbFKqHuso3J1jMG8wyNw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -1747,21 +1832,21 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@emotion/is-prop-valid': 1.1.2
- '@mui/types': 7.1.3_@types+react@17.0.45
- '@mui/utils': 5.8.0_react@17.0.2
- '@popperjs/core': 2.11.5
- '@types/react': 17.0.45
- clsx: 1.1.1
+ '@babel/runtime': 7.18.9
+ '@emotion/is-prop-valid': 1.2.0
+ '@mui/types': 7.1.5_@types+react@17.0.48
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@popperjs/core': 2.11.6
+ '@types/react': 17.0.48
+ clsx: 1.2.1
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
dev: false
- /@mui/base/5.0.0-alpha.81_k2mvpji5i2ojml6m4ftklg47pa:
- resolution: {integrity: sha512-KJP+RdKBLSbhiAliy1b5xFuoAezawupfIHc/MRtEZdqAmUW0+UFNDXIUDlBKR9zLCjgjQ7eVJsSe0TwAgd8OMQ==}
+ /@mui/base/5.0.0-alpha.94_sk3eihvpffgp52mstba5zhq3vu:
+ resolution: {integrity: sha512-IJXmgTF07H1Iv5zjDV7zJZGUmb9cN8ERzd2dgA1akh6NWZgwyIGyQx+Au9+QSDoM5vN3FqZvU/0YCU6inUwgeQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -1771,21 +1856,25 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@emotion/is-prop-valid': 1.1.2
- '@mui/types': 7.1.3_@types+react@17.0.45
- '@mui/utils': 5.8.0_react@17.0.2
- '@popperjs/core': 2.11.5
- '@types/react': 17.0.45
- clsx: 1.1.1
+ '@babel/runtime': 7.18.9
+ '@emotion/is-prop-valid': 1.2.0
+ '@mui/types': 7.1.5_@types+react@17.0.48
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@popperjs/core': 2.11.6
+ '@types/react': 17.0.48
+ clsx: 1.2.1
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-is: 17.0.2
+ react-is: 18.2.0
dev: false
- /@mui/icons-material/5.8.0_thescs6epir3llb7jldxow7if4:
- resolution: {integrity: sha512-ScwLxa0q5VYV70Jfc60V/9VD0b9SvIeZ0Jddx2Dt2pBUFFO9vKdrbt9LYiT+4p21Au5NdYIb2XSHj46CLN1v3g==}
+ /@mui/core-downloads-tracker/5.10.2:
+ resolution: {integrity: sha512-1guoGvL3QZ7VjA3y9zye9Rpm+jz18rVZIo3AauTGyW5ntDMxr/cR0M18nuc/NH2KqpMt+coh4NwPEO1uPuKM5w==}
+ dev: false
+
+ /@mui/icons-material/5.10.2_nmqjiwr5rpbnyqhmjzj5vfrzti:
+ resolution: {integrity: sha512-p7ku+43JeKRz0ONGzPZbRXZRbE7vCKP1Cr8l/Yj9sUIGVQ6CM/m37u6udacJZkDXD+G2FoxJPixrVvvjx6f64w==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
@@ -1795,13 +1884,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- '@types/react': 17.0.45
+ '@babel/runtime': 7.18.9
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@types/react': 17.0.48
react: 17.0.2
dev: false
- /@mui/lab/5.0.0-alpha.80_xcunwhadao43cv4uyunwgxd52a:
+ /@mui/lab/5.0.0-alpha.80_vli2fzedtzvbon5ke6iprktoka:
resolution: {integrity: sha512-td5Ak0Hx+EzVN9MJqBlZJ6BKFGjTrHyNjXncjSHTvp8Z9p157AlOA/Sf7r+RyqyVzOzBfv4S37i9ShFTzSK61Q==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -1825,28 +1914,28 @@ packages:
moment:
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@mui/base': 5.0.0-alpha.79_k2mvpji5i2ojml6m4ftklg47pa
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- '@mui/system': 5.8.0_wwmr3izetkfahorjeqrfwx2m5i
- '@mui/utils': 5.8.0_react@17.0.2
- '@mui/x-date-pickers': 5.0.0-alpha.0_ia64kf25lgrua2qpv6bqrfy5gy
- '@types/react': 17.0.45
- clsx: 1.1.1
- date-fns: 2.28.0
+ '@babel/runtime': 7.18.9
+ '@mui/base': 5.0.0-alpha.79_sk3eihvpffgp52mstba5zhq3vu
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@mui/x-date-pickers': 5.0.0-alpha.0_ktjudfp74mtqzmc2e56ri5vvri
+ '@types/react': 17.0.48
+ clsx: 1.2.1
+ date-fns: 2.29.2
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
- react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
rifm: 0.12.1_react@17.0.2
transitivePeerDependencies:
- '@emotion/react'
- '@emotion/styled'
dev: false
- /@mui/material/5.8.0_zdaquy43folvhsznh4trclztdq:
- resolution: {integrity: sha512-yvt3sUmUZ1i8SPadRYBCThcB57lBZsvyhC7ufVpRxA3AD39O+WXtXAapEfpDdDkJnnKb5MCimDMwBYgWLmY89Q==}
+ /@mui/material/5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile:
+ resolution: {integrity: sha512-ay43fuQLXROXkxFd6tqbj394Hu8BlbmpCdEDFtAisijulla2ZLfQa24pjhdX+56HrHReB3cZsf/sRq+DSfIgiA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -1862,27 +1951,27 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/styled': 11.8.1_3mkbovqfrbpc53bljqhapolzfu
- '@mui/base': 5.0.0-alpha.81_k2mvpji5i2ojml6m4ftklg47pa
- '@mui/system': 5.8.0_wwmr3izetkfahorjeqrfwx2m5i
- '@mui/types': 7.1.3_@types+react@17.0.45
- '@mui/utils': 5.8.0_react@17.0.2
- '@types/react': 17.0.45
- '@types/react-transition-group': 4.4.4
- clsx: 1.1.1
+ '@babel/runtime': 7.18.9
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/styled': 11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u
+ '@mui/base': 5.0.0-alpha.94_sk3eihvpffgp52mstba5zhq3vu
+ '@mui/core-downloads-tracker': 5.10.2
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/types': 7.1.5_@types+react@17.0.48
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@types/react': 17.0.48
+ '@types/react-transition-group': 4.4.5
+ clsx: 1.2.1
csstype: 3.1.0
- hoist-non-react-statics: 3.3.2
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-is: 17.0.2
- react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m
+ react-is: 18.2.0
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
dev: false
- /@mui/private-theming/5.8.0_hx2b44akkvgcgvvtmk7ds2qk6q:
- resolution: {integrity: sha512-MjRAneTmCKLR9u2S4jtjLUe6gpHxlbb4g2bqpDJ2PdwlvwsWIUzbc/gVB4dvccljXeWxr5G2M/Co2blXisvFIw==}
+ /@mui/private-theming/5.9.3_skqlhrap4das3cz5b6iqdn2lqi:
+ resolution: {integrity: sha512-Ys3WO39WqoGciGX9k5AIi/k2zJhlydv4FzlEEwtw9OqdMaV0ydK/TdZekKzjP9sTI/JcdAP3H5DWtUaPLQJjWg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -1891,15 +1980,15 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@mui/utils': 5.8.0_react@17.0.2
- '@types/react': 17.0.45
+ '@babel/runtime': 7.18.9
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@types/react': 17.0.48
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/styled-engine/5.8.0_bgqmsvm4hz6izcmpcwescmz73y:
- resolution: {integrity: sha512-Q3spibB8/EgeMYHc+/o3RRTnAYkSl7ROCLhXJ830W8HZ2/iDiyYp16UcxKPurkXvLhUaILyofPVrP3Su2uKsAw==}
+ /@mui/styled-engine/5.10.2_2av45khroaevmcc27aulpaf2sy:
+ resolution: {integrity: sha512-YqnptNQ2E0cWwOTmLCEvrddiiR/neUfn2AD/4TDUXZu8B2n7NfDb9d3bAUfWZV+KmulQdAedoaZDqyXBFGLdbQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
@@ -1911,16 +2000,17 @@ packages:
'@emotion/styled':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@emotion/cache': 11.7.1
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/styled': 11.8.1_3mkbovqfrbpc53bljqhapolzfu
+ '@babel/runtime': 7.18.9
+ '@emotion/cache': 11.10.3
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/styled': 11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u
+ csstype: 3.1.0
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/system/5.8.0_wwmr3izetkfahorjeqrfwx2m5i:
- resolution: {integrity: sha512-1tEj2S59RjlZ/6JMJMUktQDbV2ev7hyGXqO7dRRUQ7nOJi9qHmCFP0uXj3YS6LbM6hVasgYXJg8GBjbEtfTJvg==}
+ /@mui/system/5.10.2_ynexvg6j2j66sbh5giu7mkkh7u:
+ resolution: {integrity: sha512-YudwJhLcEoQiwCAmzeMr9P3ISiVGNsxBIIPzFxaGwJ8+mMrx3qoPVOV2sfm0ZuNiQuABshEw4KqHa5ftNC+pOQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -1935,64 +2025,66 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.0
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/styled': 11.8.1_3mkbovqfrbpc53bljqhapolzfu
- '@mui/private-theming': 5.8.0_hx2b44akkvgcgvvtmk7ds2qk6q
- '@mui/styled-engine': 5.8.0_bgqmsvm4hz6izcmpcwescmz73y
- '@mui/types': 7.1.3_@types+react@17.0.45
- '@mui/utils': 5.8.0_react@17.0.2
- '@types/react': 17.0.45
- clsx: 1.1.1
+ '@babel/runtime': 7.18.9
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/styled': 11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u
+ '@mui/private-theming': 5.9.3_skqlhrap4das3cz5b6iqdn2lqi
+ '@mui/styled-engine': 5.10.2_2av45khroaevmcc27aulpaf2sy
+ '@mui/types': 7.1.5_@types+react@17.0.48
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@types/react': 17.0.48
+ clsx: 1.2.1
csstype: 3.1.0
prop-types: 15.8.1
react: 17.0.2
dev: false
- /@mui/types/7.1.3_@types+react@17.0.45:
- resolution: {integrity: sha512-DDF0UhMBo4Uezlk+6QxrlDbchF79XG6Zs0zIewlR4c0Dt6GKVFfUtzPtHCH1tTbcSlq/L2bGEdiaoHBJ9Y1gSA==}
+ /@mui/types/7.1.5_@types+react@17.0.48:
+ resolution: {integrity: sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA==}
peerDependencies:
'@types/react': '*'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.45
+ '@types/react': 17.0.48
dev: false
- /@mui/utils/5.8.0_react@17.0.2:
- resolution: {integrity: sha512-7LgUtCvz78676iC0wpTH7HizMdCrTphhBmRWimIMFrp5Ph6JbDFVuKS1CwYnWWxRyYKL0QzXrDL0lptAU90EXg==}
+ /@mui/utils/5.9.3_react@17.0.2:
+ resolution: {integrity: sha512-l0N5bcrenE9hnwZ/jPecpIRqsDFHkPXoFUcmkgysaJwVZzJ3yQkGXB47eqmXX5yyGrSc6HksbbqXEaUya+siew==}
engines: {node: '>=12.0.0'}
peerDependencies:
react: ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
'@types/prop-types': 15.7.5
'@types/react-is': 17.0.3
prop-types: 15.8.1
react: 17.0.2
- react-is: 17.0.2
+ react-is: 18.2.0
dev: false
- /@mui/x-data-grid/5.11.1_4lwdcbofapjxh537ddci4xdvt4:
- resolution: {integrity: sha512-Iwm3gmHciZrYsmAOrX1W2JKo2CexgGhdG7ZXvHh1rW3OD66ITSoFilThPtrb88Eg1fZI/goDWnPr6R7JXLHc5Q==}
+ /@mui/x-data-grid/5.16.0_r4jqxufjb3aftjrjm24vhpn4hm:
+ resolution: {integrity: sha512-pP1dsNAOWJQoxU/pTHKF/7uDVNASeTA2Ki8fdm6+TVLu8C4ISsg88vGPj8W3ikbdQ1geExzxO1LLX1atQGKTiA==}
engines: {node: '>=12.0.0'}
peerDependencies:
- '@mui/material': ^5.2.8
- '@mui/system': ^5.2.8
+ '@mui/material': ^5.4.1
+ '@mui/system': ^5.4.1
react: ^17.0.2 || ^18.0.0
+ react-dom: ^17.0.2 || ^18.0.0
dependencies:
- '@babel/runtime': 7.18.0
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- '@mui/system': 5.8.0_wwmr3izetkfahorjeqrfwx2m5i
- '@mui/utils': 5.8.0_react@17.0.2
- clsx: 1.1.1
+ '@babel/runtime': 7.18.9
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/utils': 5.9.3_react@17.0.2
+ clsx: 1.2.1
prop-types: 15.8.1
react: 17.0.2
- reselect: 4.1.5
+ react-dom: 17.0.2_react@17.0.2
+ reselect: 4.1.6
dev: false
- /@mui/x-date-pickers/5.0.0-alpha.0_ia64kf25lgrua2qpv6bqrfy5gy:
+ /@mui/x-date-pickers/5.0.0-alpha.0_ktjudfp74mtqzmc2e56ri5vvri:
resolution: {integrity: sha512-JTzTaNSWbxNi8KDUJjHCH6im0YlIEv88gPoKhGm7s6xCGT1q6FtMp/oQ40nhfwrJ73nkM5G1JXRIzI/yfsHXQQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2013,18 +2105,67 @@ packages:
moment:
optional: true
dependencies:
- '@date-io/date-fns': 2.14.0_date-fns@2.28.0
- '@date-io/dayjs': 2.14.0
- '@date-io/luxon': 2.14.0
- '@date-io/moment': 2.14.0
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- '@mui/system': 5.8.0_wwmr3izetkfahorjeqrfwx2m5i
- '@mui/utils': 5.8.0_react@17.0.2
- clsx: 1.1.1
- date-fns: 2.28.0
+ '@date-io/date-fns': 2.15.0_date-fns@2.29.2
+ '@date-io/dayjs': 2.15.0
+ '@date-io/luxon': 2.15.0
+ '@date-io/moment': 2.15.0
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/utils': 5.9.3_react@17.0.2
+ clsx: 1.2.1
+ date-fns: 2.29.2
prop-types: 15.8.1
react: 17.0.2
- react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
+ rifm: 0.12.1_react@17.0.2
+ transitivePeerDependencies:
+ - react-dom
+ dev: false
+
+ /@mui/x-date-pickers/5.0.0-beta.2_y3fv7pzpxqpbmxcbzsros3kjnu:
+ resolution: {integrity: sha512-UEXQ2tmhosklAQwOUtwQBI2WngSdp5Q8vYqsmvxNJxuXYuM/DawdQBwyfFyK7jx5wf/RTsniG1e12hqii3wPYg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.9.0
+ '@emotion/styled': ^11.8.1
+ '@mui/material': ^5.4.1
+ '@mui/system': ^5.4.1
+ date-fns: ^2.25.0
+ dayjs: ^1.10.7
+ luxon: ^1.28.0 || ^2.0.0 || ^3.0.0
+ moment: ^2.29.1
+ react: ^17.0.2 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ date-fns:
+ optional: true
+ dayjs:
+ optional: true
+ luxon:
+ optional: true
+ moment:
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.18.9
+ '@date-io/core': 2.15.0
+ '@date-io/date-fns': 2.15.0_date-fns@2.29.2
+ '@date-io/dayjs': 2.15.0
+ '@date-io/luxon': 2.15.0
+ '@date-io/moment': 2.15.0
+ '@emotion/react': 11.10.0_u65opluo5sjgh3eblfliq6jsnm
+ '@emotion/styled': 11.10.0_mpqqkyoc5j3vv2sg2f5vubqi7u
+ '@mui/material': 5.10.2_mm2isjkwxtdnw3xlwl5r7b6ile
+ '@mui/system': 5.10.2_ynexvg6j2j66sbh5giu7mkkh7u
+ '@mui/utils': 5.9.3_react@17.0.2
+ '@types/react-transition-group': 4.4.5
+ clsx: 1.2.1
+ date-fns: 2.29.2
+ prop-types: 15.8.1
+ react: 17.0.2
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
rifm: 0.12.1_react@17.0.2
transitivePeerDependencies:
- react-dom
@@ -2051,11 +2192,11 @@ packages:
fastq: 1.13.0
dev: true
- /@popperjs/core/2.11.5:
- resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==}
+ /@popperjs/core/2.11.6:
+ resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==}
dev: false
- /@rollup/plugin-babel/5.3.1_ykg7cmcqpmn5fbkb5gxs7i3du4:
+ /@rollup/plugin-babel/5.3.1_2uin6pbxavst3oir53roxbd5qi:
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -2066,38 +2207,38 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-module-imports': 7.16.7
- '@rollup/pluginutils': 3.1.0_rollup@2.74.1
- rollup: 2.74.1
+ '@babel/core': 7.18.13
+ '@babel/helper-module-imports': 7.18.6
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
+ rollup: 2.78.1
dev: true
- /@rollup/plugin-node-resolve/11.2.1_rollup@2.74.1:
+ /@rollup/plugin-node-resolve/11.2.1_rollup@2.78.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.74.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
'@types/resolve': 1.17.1
builtin-modules: 3.3.0
deepmerge: 4.2.2
is-module: 1.0.0
- resolve: 1.22.0
- rollup: 2.74.1
+ resolve: 1.22.1
+ rollup: 2.78.1
dev: true
- /@rollup/plugin-replace/2.4.2_rollup@2.74.1:
+ /@rollup/plugin-replace/2.4.2_rollup@2.78.1:
resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.74.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
magic-string: 0.25.9
- rollup: 2.74.1
+ rollup: 2.78.1
dev: true
- /@rollup/pluginutils/3.1.0_rollup@2.74.1:
+ /@rollup/pluginutils/3.1.0_rollup@2.78.1:
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
@@ -2106,7 +2247,7 @@ packages:
'@types/estree': 0.0.39
estree-walker: 1.0.1
picomatch: 2.3.1
- rollup: 2.74.1
+ rollup: 2.78.1
dev: true
/@rollup/pluginutils/4.2.1:
@@ -2117,8 +2258,8 @@ packages:
picomatch: 2.3.1
dev: false
- /@rushstack/eslint-patch/1.1.3:
- resolution: {integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==}
+ /@rushstack/eslint-patch/1.1.4:
+ resolution: {integrity: sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==}
dev: true
/@surma/rollup-plugin-off-main-thread/2.2.3:
@@ -2130,124 +2271,124 @@ packages:
string.prototype.matchall: 4.0.7
dev: true
- /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==}
+ /@svgr/babel-plugin-add-jsx-attribute/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==}
+ /@svgr/babel-plugin-remove-jsx-attribute/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==}
+ /@svgr/babel-plugin-remove-jsx-empty-expression/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==}
+ /@svgr/babel-plugin-replace-jsx-attribute-value/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==}
+ /@svgr/babel-plugin-svg-dynamic-title/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==}
+ /@svgr/babel-plugin-svg-em-dimensions/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==}
+ /@svgr/babel-plugin-transform-react-native-svg/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==}
+ /@svgr/babel-plugin-transform-svg-component/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.13
dev: false
- /@svgr/babel-preset/6.2.0_@babel+core@7.18.0:
- resolution: {integrity: sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==}
+ /@svgr/babel-preset/6.3.1_@babel+core@7.18.13:
+ resolution: {integrity: sha512-tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.18.0
- '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@svgr/babel-plugin-add-jsx-attribute': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-svg-dynamic-title': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-svg-em-dimensions': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-transform-react-native-svg': 6.3.1_@babel+core@7.18.13
+ '@svgr/babel-plugin-transform-svg-component': 6.3.1_@babel+core@7.18.13
dev: false
- /@svgr/core/6.2.1:
- resolution: {integrity: sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==}
+ /@svgr/core/6.3.1:
+ resolution: {integrity: sha512-Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZUA==}
engines: {node: '>=10'}
dependencies:
- '@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1
+ '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1
camelcase: 6.3.0
cosmiconfig: 7.0.1
transitivePeerDependencies:
- supports-color
dev: false
- /@svgr/hast-util-to-babel-ast/6.2.1:
- resolution: {integrity: sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==}
+ /@svgr/hast-util-to-babel-ast/6.3.1:
+ resolution: {integrity: sha512-NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niNQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.18.0
- entities: 3.0.1
+ '@babel/types': 7.18.13
+ entities: 4.3.1
dev: false
- /@svgr/plugin-jsx/6.2.1_@svgr+core@6.2.1:
- resolution: {integrity: sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==}
+ /@svgr/plugin-jsx/6.3.1_@svgr+core@6.3.1:
+ resolution: {integrity: sha512-r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw==}
engines: {node: '>=10'}
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.18.0
- '@svgr/babel-preset': 6.2.0_@babel+core@7.18.0
- '@svgr/core': 6.2.1
- '@svgr/hast-util-to-babel-ast': 6.2.1
+ '@babel/core': 7.18.13
+ '@svgr/babel-preset': 6.3.1_@babel+core@7.18.13
+ '@svgr/core': 6.3.1
+ '@svgr/hast-util-to-babel-ast': 6.3.1
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
@@ -2265,12 +2406,11 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/lodash/4.14.182:
- resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
- dev: false
+ /@types/lodash/4.14.184:
+ resolution: {integrity: sha512-RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q==}
- /@types/node/17.0.35:
- resolution: {integrity: sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg==}
+ /@types/node/18.7.13:
+ resolution: {integrity: sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==}
dev: true
/@types/nprogress/0.2.0:
@@ -2292,37 +2432,30 @@ packages:
/@types/react-dom/17.0.17:
resolution: {integrity: sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==}
dependencies:
- '@types/react': 17.0.45
+ '@types/react': 17.0.48
dev: true
/@types/react-is/17.0.3:
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
dependencies:
- '@types/react': 18.0.9
+ '@types/react': 17.0.48
dev: false
/@types/react-lazy-load-image-component/1.5.2:
resolution: {integrity: sha512-4NLJsMJVrMv18FuMIkUUBVj/PH9A+BvLKrZC75EWiEFn1IsMrZHgL1tVKw5QBfoa0Qjz6SkWIzEvwcyZ8PgnIg==}
dependencies:
- '@types/react': 18.0.9
+ '@types/react': 17.0.48
csstype: 3.1.0
dev: true
- /@types/react-transition-group/4.4.4:
- resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==}
+ /@types/react-transition-group/4.4.5:
+ resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==}
dependencies:
- '@types/react': 18.0.9
+ '@types/react': 17.0.48
dev: false
- /@types/react/17.0.45:
- resolution: {integrity: sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==}
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.2
- csstype: 3.1.0
-
- /@types/react/18.0.9:
- resolution: {integrity: sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==}
+ /@types/react/17.0.48:
+ resolution: {integrity: sha512-zJ6IYlJ8cYYxiJfUaZOQee4lh99mFihBoqkOSEGV+dFi9leROW6+PgstzQ+w3gWTnUfskALtQPGHK6dYmPj+2A==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
@@ -2331,7 +2464,7 @@ packages:
/@types/resolve/1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 17.0.35
+ '@types/node': 18.7.13
dev: true
/@types/scheduler/0.16.2:
@@ -2345,8 +2478,8 @@ packages:
resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==}
dev: true
- /@typescript-eslint/eslint-plugin/5.25.0_jorowkvdqu6pwramweg5le7ncu:
- resolution: {integrity: sha512-icYrFnUzvm+LhW0QeJNKkezBu6tJs9p/53dpPLFH8zoM9w1tfaKzVurkPotEpAqQ8Vf8uaFyL5jHd0Vs6Z0ZQg==}
+ /@typescript-eslint/eslint-plugin/5.35.1_4kgehhvxgrxdvptdn2db7re534:
+ resolution: {integrity: sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -2356,37 +2489,37 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
- '@typescript-eslint/scope-manager': 5.25.0
- '@typescript-eslint/type-utils': 5.25.0_utdtartgf6fqqgkivzeynh76la
- '@typescript-eslint/utils': 5.25.0_utdtartgf6fqqgkivzeynh76la
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ '@typescript-eslint/scope-manager': 5.35.1
+ '@typescript-eslint/type-utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ '@typescript-eslint/utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
debug: 4.3.4
- eslint: 8.16.0
+ eslint: 8.22.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.4
- typescript: 4.6.4
+ tsutils: 3.21.0_typescript@4.8.2
+ typescript: 4.8.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils/5.25.0_utdtartgf6fqqgkivzeynh76la:
- resolution: {integrity: sha512-YTe9rmslCh1xAvNa3X+uZe4L2lsyb8V3WIeK9z46nNiPswk/V/0SGLJSfo8W9Hj4R7ak7bolazXGn3DErmb8QA==}
+ /@typescript-eslint/experimental-utils/5.35.1_shit3uhl6a7megkzgoz6xssnfa:
+ resolution: {integrity: sha512-nF7JD9alMkhEx50QYDUdP8koeHtldnm7EfZkr68ikkc87ffFBIPkH3dqoWyOeQeIiJicB0uHzpMXKR6PP+1Jbg==}
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.25.0_utdtartgf6fqqgkivzeynh76la
- eslint: 8.16.0
+ '@typescript-eslint/utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ eslint: 8.22.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser/5.25.0_utdtartgf6fqqgkivzeynh76la:
- resolution: {integrity: sha512-r3hwrOWYbNKP1nTcIw/aZoH+8bBnh/Lh1iDHoFpyG4DnCpvEdctrSl6LOo19fZbzypjQMHdajolxs6VpYoChgA==}
+ /@typescript-eslint/parser/5.35.1_shit3uhl6a7megkzgoz6xssnfa:
+ resolution: {integrity: sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -2395,26 +2528,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.25.0
- '@typescript-eslint/types': 5.25.0
- '@typescript-eslint/typescript-estree': 5.25.0_typescript@4.6.4
+ '@typescript-eslint/scope-manager': 5.35.1
+ '@typescript-eslint/types': 5.35.1
+ '@typescript-eslint/typescript-estree': 5.35.1_typescript@4.8.2
debug: 4.3.4
- eslint: 8.16.0
- typescript: 4.6.4
+ eslint: 8.22.0
+ typescript: 4.8.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.25.0:
- resolution: {integrity: sha512-p4SKTFWj+2VpreUZ5xMQsBMDdQ9XdRvODKXN4EksyBjFp2YvQdLkyHqOffakYZPuWJUDNu3jVXtHALDyTv3cww==}
+ /@typescript-eslint/scope-manager/5.35.1:
+ resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.25.0
- '@typescript-eslint/visitor-keys': 5.25.0
+ '@typescript-eslint/types': 5.35.1
+ '@typescript-eslint/visitor-keys': 5.35.1
dev: true
- /@typescript-eslint/type-utils/5.25.0_utdtartgf6fqqgkivzeynh76la:
- resolution: {integrity: sha512-B6nb3GK3Gv1Rsb2pqalebe/RyQoyG/WDy9yhj8EE0Ikds4Xa8RR28nHz+wlt4tMZk5bnAr0f3oC8TuDAd5CPrw==}
+ /@typescript-eslint/type-utils/5.35.1_shit3uhl6a7megkzgoz6xssnfa:
+ resolution: {integrity: sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -2423,22 +2556,22 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.25.0_utdtartgf6fqqgkivzeynh76la
+ '@typescript-eslint/utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
debug: 4.3.4
- eslint: 8.16.0
- tsutils: 3.21.0_typescript@4.6.4
- typescript: 4.6.4
+ eslint: 8.22.0
+ tsutils: 3.21.0_typescript@4.8.2
+ typescript: 4.8.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.25.0:
- resolution: {integrity: sha512-7fWqfxr0KNHj75PFqlGX24gWjdV/FDBABXL5dyvBOWHpACGyveok8Uj4ipPX/1fGU63fBkzSIycEje4XsOxUFA==}
+ /@typescript-eslint/types/5.35.1:
+ resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.25.0_typescript@4.6.4:
- resolution: {integrity: sha512-MrPODKDych/oWs/71LCnuO7NyR681HuBly2uLnX3r5i4ME7q/yBqC4hW33kmxtuauLTM0OuBOhhkFaxCCOjEEw==}
+ /@typescript-eslint/typescript-estree/5.35.1_typescript@4.8.2:
+ resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2446,41 +2579,41 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.25.0
- '@typescript-eslint/visitor-keys': 5.25.0
+ '@typescript-eslint/types': 5.35.1
+ '@typescript-eslint/visitor-keys': 5.35.1
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.6.4
- typescript: 4.6.4
+ tsutils: 3.21.0_typescript@4.8.2
+ typescript: 4.8.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.25.0_utdtartgf6fqqgkivzeynh76la:
- resolution: {integrity: sha512-qNC9bhnz/n9Kba3yI6HQgQdBLuxDoMgdjzdhSInZh6NaDnFpTUlwNGxplUFWfY260Ya0TRPvkg9dd57qxrJI9g==}
+ /@typescript-eslint/utils/5.35.1_shit3uhl6a7megkzgoz6xssnfa:
+ resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==}
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.25.0
- '@typescript-eslint/types': 5.25.0
- '@typescript-eslint/typescript-estree': 5.25.0_typescript@4.6.4
- eslint: 8.16.0
+ '@typescript-eslint/scope-manager': 5.35.1
+ '@typescript-eslint/types': 5.35.1
+ '@typescript-eslint/typescript-estree': 5.35.1_typescript@4.8.2
+ eslint: 8.22.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.16.0
+ eslint-utils: 3.0.0_eslint@8.22.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.25.0:
- resolution: {integrity: sha512-yd26vFgMsC4h2dgX4+LR+GeicSKIfUvZREFLf3DDjZPtqgLx5AJZr6TetMNwFP9hcKreTTeztQYBTNbNoOycwA==}
+ /@typescript-eslint/visitor-keys/5.35.1:
+ resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.25.0
+ '@typescript-eslint/types': 5.35.1
eslint-visitor-keys: 3.3.0
dev: true
@@ -2488,28 +2621,28 @@ packages:
resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
engines: {node: '>=12.0.0'}
dependencies:
- '@babel/core': 7.18.0
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.13
'@rollup/pluginutils': 4.2.1
react-refresh: 0.13.0
- resolve: 1.22.0
+ resolve: 1.22.1
transitivePeerDependencies:
- supports-color
dev: false
- /acorn-jsx/5.3.2_acorn@8.7.1:
+ /acorn-jsx/5.3.2_acorn@8.8.0:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.7.1
+ acorn: 8.8.0
dev: true
- /acorn/8.7.1:
- resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
+ /acorn/8.8.0:
+ resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
@@ -2558,8 +2691,8 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.18.0
- '@babel/runtime-corejs3': 7.18.0
+ '@babel/runtime': 7.18.9
+ '@babel/runtime-corejs3': 7.18.9
dev: true
/array-includes/3.1.5:
@@ -2569,7 +2702,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.1
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
is-string: 1.0.7
dev: true
@@ -2602,8 +2735,8 @@ packages:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /async/3.2.3:
- resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
+ /async/3.2.4:
+ resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: true
/asynckit/0.4.0:
@@ -2620,15 +2753,15 @@ packages:
engines: {node: '>=4'}
dev: false
- /axe-core/4.4.2:
- resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==}
- engines: {node: '>=12'}
+ /axe-core/4.4.3:
+ resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==}
+ engines: {node: '>=4'}
dev: true
/axios/0.27.2:
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
dependencies:
- follow-redirects: 1.15.0
+ follow-redirects: 1.15.1
form-data: 4.0.0
transitivePeerDependencies:
- debug
@@ -2641,58 +2774,49 @@ packages:
/babel-plugin-dynamic-import-node/2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
- object.assign: 4.1.2
+ object.assign: 4.1.4
dev: true
- /babel-plugin-macros/2.8.0:
- resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
- dependencies:
- '@babel/runtime': 7.18.0
- cosmiconfig: 6.0.0
- resolve: 1.22.0
- dev: false
-
/babel-plugin-macros/3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
cosmiconfig: 7.0.1
- resolve: 1.22.0
- dev: true
+ resolve: 1.22.1
- /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.0:
- resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
+ /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.13:
+ resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.0
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0
+ '@babel/compat-data': 7.18.13
+ '@babel/core': 7.18.13
+ '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.13
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.0:
- resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
+ /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.13:
+ resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0
- core-js-compat: 3.22.6
+ '@babel/core': 7.18.13
+ '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.13
+ core-js-compat: 3.25.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.0:
- resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
+ /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.13:
+ resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.0
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0
+ '@babel/core': 7.18.13
+ '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.13
transitivePeerDependencies:
- supports-color
dev: true
@@ -2704,21 +2828,21 @@ packages:
/babel-preset-react-app/10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.18.0
- '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-decorators': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-runtime': 7.18.0_@babel+core@7.18.0
- '@babel/preset-env': 7.18.0_@babel+core@7.18.0
- '@babel/preset-react': 7.17.12_@babel+core@7.18.0
- '@babel/preset-typescript': 7.17.12_@babel+core@7.18.0
- '@babel/runtime': 7.18.0
+ '@babel/core': 7.18.13
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-decorators': 7.18.10_@babel+core@7.18.13
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-flow-strip-types': 7.18.9_@babel+core@7.18.13
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.13
+ '@babel/preset-env': 7.18.10_@babel+core@7.18.13
+ '@babel/preset-react': 7.18.6_@babel+core@7.18.13
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.18.13
+ '@babel/runtime': 7.18.9
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -2749,16 +2873,15 @@ packages:
fill-range: 7.0.1
dev: true
- /browserslist/4.20.3:
- resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
+ /browserslist/4.21.3:
+ resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001342
- electron-to-chromium: 1.4.137
- escalade: 3.1.1
- node-releases: 2.0.4
- picocolors: 1.0.0
+ caniuse-lite: 1.0.30001383
+ electron-to-chromium: 1.4.230
+ node-releases: 2.0.6
+ update-browserslist-db: 1.0.5_browserslist@4.21.3
/buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -2773,7 +2896,7 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
/callsites/3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -2795,8 +2918,8 @@ packages:
resolution: {integrity: sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==}
dev: false
- /caniuse-lite/1.0.30001342:
- resolution: {integrity: sha512-bn6sOCu7L7jcbBbyNhLg0qzXdJ/PMbybZTH/BA6Roet9wxYRm6Tr9D0s0uhLkOZ6MSG+QU6txUgdpr3MXIVqjA==}
+ /caniuse-lite/1.0.30001383:
+ resolution: {integrity: sha512-swMpEoTp5vDoGBZsYZX7L7nXHe6dsHxi9o6/LKf/f0LukVtnrxly5GVb/fWdCDTqi/yw6Km6tiJ0pmBacm0gbg==}
/capital-case/1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -2839,18 +2962,13 @@ packages:
tslib: 2.4.0
dev: false
- /charcodes/0.2.0:
- resolution: {integrity: sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==}
- engines: {node: '>=6'}
- dev: true
-
/clone/2.1.2:
- resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=}
+ resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
engines: {node: '>=0.8'}
dev: false
- /clsx/1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
+ /clsx/1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
@@ -2867,7 +2985,7 @@ packages:
dev: true
/color-name/1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -2910,34 +3028,23 @@ packages:
dependencies:
safe-buffer: 5.1.2
- /core-js-compat/3.22.6:
- resolution: {integrity: sha512-dQ/SxlHcuiywaPIoSUCU6Fx+Mk/H5TXENqd/ZJcK85ta0ZcQkbzHwblxPeL0hF5o+NsT2uK3q9ZOG5TboiVuWw==}
+ /core-js-compat/3.25.0:
+ resolution: {integrity: sha512-extKQM0g8/3GjFx9US12FAgx8KJawB7RCQ5y8ipYLbmfzEzmFRWdDjIlxDx82g7ygcNG85qMVUSRyABouELdow==}
dependencies:
- browserslist: 4.20.3
+ browserslist: 4.21.3
semver: 7.0.0
dev: true
- /core-js-pure/3.22.6:
- resolution: {integrity: sha512-u5yG2VL6NKXz9BZHr9RAm6eWD1DTNjG7jJnJgLGR+Im0whdPcPXqwqxd+dcUrZvpvPan5KMgn/3pI+Q/aGqPOA==}
+ /core-js-pure/3.25.0:
+ resolution: {integrity: sha512-IeHpLwk3uoci37yoI2Laty59+YqH9x5uR65/yiA0ARAJrTrN4YU0rmauLWfvqOuk77SlNJXj2rM6oT/dBD87+A==}
requiresBuild: true
dev: true
- /core-js/3.22.6:
- resolution: {integrity: sha512-2IGcGH00z9I4twgNWU4uGCNEsBFG1s2JudVQrgSCoVhOfwoTwQjxC8aMo9exrpTMOxvobggEpaHnGMmQY4cfBQ==}
+ /core-js/3.25.0:
+ resolution: {integrity: sha512-CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==}
requiresBuild: true
dev: false
- /cosmiconfig/6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
- dependencies:
- '@types/parse-json': 4.0.0
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
- dev: false
-
/cosmiconfig/7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
@@ -2948,13 +3055,6 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /create-react-class/15.7.0:
- resolution: {integrity: sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- dev: false
-
/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -2981,8 +3081,8 @@ packages:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: true
- /date-fns/2.28.0:
- resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==}
+ /date-fns/2.29.2:
+ resolution: {integrity: sha512-0VNbwmWJDS/G3ySwFSJA3ayhbURMTJLtwM2DTxf9CWondCnh6DTNlO9JgRSq6ibf4eD0lfMJNBxUdEAHHix+bA==}
engines: {node: '>=0.11'}
dev: false
@@ -3047,7 +3147,7 @@ packages:
object-keys: 1.1.1
/delayed-stream/1.0.0:
- resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=}
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
dev: false
@@ -3075,7 +3175,7 @@ packages:
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
csstype: 3.1.0
dev: false
@@ -3094,15 +3194,15 @@ packages:
jake: 10.8.5
dev: true
- /electron-to-chromium/1.4.137:
- resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==}
+ /electron-to-chromium/1.4.230:
+ resolution: {integrity: sha512-3pwjAK0qHSDN9+YAF4fJknsSruP7mpjdWzUSruIJD/JCH77pEh0SorEyb3xVaKkfwk2tzjOt2D8scJ0KAdfXLA==}
/emoji-regex/9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /entities/3.0.1:
- resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
+ /entities/4.3.1:
+ resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==}
engines: {node: '>=0.12'}
dev: false
@@ -3119,7 +3219,7 @@ packages:
es-to-primitive: 1.2.1
function-bind: 1.1.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
get-symbol-description: 1.0.0
has: 1.0.3
has-property-descriptors: 1.0.0
@@ -3131,9 +3231,9 @@ packages:
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
- object-inspect: 1.12.1
+ object-inspect: 1.12.2
object-keys: 1.1.1
- object.assign: 4.1.2
+ object.assign: 4.1.4
regexp.prototype.flags: 1.4.3
string.prototype.trimend: 1.0.5
string.prototype.trimstart: 1.0.5
@@ -3155,206 +3255,207 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild-android-64/0.14.39:
- resolution: {integrity: sha512-EJOu04p9WgZk0UoKTqLId9VnIsotmI/Z98EXrKURGb3LPNunkeffqQIkjS2cAvidh+OK5uVrXaIP229zK6GvhQ==}
+ /esbuild-android-64/0.14.54:
+ resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-android-arm64/0.14.39:
- resolution: {integrity: sha512-+twajJqO7n3MrCz9e+2lVOnFplRsaGRwsq1KL/uOy7xK7QdRSprRQcObGDeDZUZsacD5gUkk6OiHiYp6RzU3CA==}
+ /esbuild-android-arm64/0.14.54:
+ resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-darwin-64/0.14.39:
- resolution: {integrity: sha512-ImT6eUw3kcGcHoUxEcdBpi6LfTRWaV6+qf32iYYAfwOeV+XaQ/Xp5XQIBiijLeo+LpGci9M0FVec09nUw41a5g==}
+ /esbuild-darwin-64/0.14.54:
+ resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-darwin-arm64/0.14.39:
- resolution: {integrity: sha512-/fcQ5UhE05OiT+bW5v7/up1bDsnvaRZPJxXwzXsMRrr7rZqPa85vayrD723oWMT64dhrgWeA3FIneF8yER0XTw==}
+ /esbuild-darwin-arm64/0.14.54:
+ resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-freebsd-64/0.14.39:
- resolution: {integrity: sha512-oMNH8lJI4wtgN5oxuFP7BQ22vgB/e3Tl5Woehcd6i2r6F3TszpCnNl8wo2d/KvyQ4zvLvCWAlRciumhQg88+kQ==}
+ /esbuild-freebsd-64/0.14.54:
+ resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-freebsd-arm64/0.14.39:
- resolution: {integrity: sha512-1GHK7kwk57ukY2yI4ILWKJXaxfr+8HcM/r/JKCGCPziIVlL+Wi7RbJ2OzMcTKZ1HpvEqCTBT/J6cO4ZEwW4Ypg==}
+ /esbuild-freebsd-arm64/0.14.54:
+ resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-linux-32/0.14.39:
- resolution: {integrity: sha512-g97Sbb6g4zfRLIxHgW2pc393DjnkTRMeq3N1rmjDUABxpx8SjocK4jLen+/mq55G46eE2TA0MkJ4R3SpKMu7dg==}
+ /esbuild-linux-32/0.14.54:
+ resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-64/0.14.39:
- resolution: {integrity: sha512-4tcgFDYWdI+UbNMGlua9u1Zhu0N5R6u9tl5WOM8aVnNX143JZoBZLpCuUr5lCKhnD0SCO+5gUyMfupGrHtfggQ==}
+ /esbuild-linux-64/0.14.54:
+ resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm/0.14.39:
- resolution: {integrity: sha512-t0Hn1kWVx5UpCzAJkKRfHeYOLyFnXwYynIkK54/h3tbMweGI7dj400D1k0Vvtj2u1P+JTRT9tx3AjtLEMmfVBQ==}
+ /esbuild-linux-arm/0.14.54:
+ resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm64/0.14.39:
- resolution: {integrity: sha512-23pc8MlD2D6Px1mV8GMglZlKgwgNKAO8gsgsLLcXWSs9lQsCYkIlMo/2Ycfo5JrDIbLdwgP8D2vpfH2KcBqrDQ==}
+ /esbuild-linux-arm64/0.14.54:
+ resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-mips64le/0.14.39:
- resolution: {integrity: sha512-epwlYgVdbmkuRr5n4es3B+yDI0I2e/nxhKejT9H0OLxFAlMkeQZxSpxATpDc9m8NqRci6Kwyb/SfmD1koG2Zuw==}
+ /esbuild-linux-mips64le/0.14.54:
+ resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-ppc64le/0.14.39:
- resolution: {integrity: sha512-W/5ezaq+rQiQBThIjLMNjsuhPHg+ApVAdTz2LvcuesZFMsJoQAW2hutoyg47XxpWi7aEjJGrkS26qCJKhRn3QQ==}
+ /esbuild-linux-ppc64le/0.14.54:
+ resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-riscv64/0.14.39:
- resolution: {integrity: sha512-IS48xeokcCTKeQIOke2O0t9t14HPvwnZcy+5baG13Z1wxs9ZrC5ig5ypEQQh4QMKxURD5TpCLHw2W42CLuVZaA==}
+ /esbuild-linux-riscv64/0.14.54:
+ resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-s390x/0.14.39:
- resolution: {integrity: sha512-zEfunpqR8sMomqXhNTFEKDs+ik7HC01m3M60MsEjZOqaywHu5e5682fMsqOlZbesEAAaO9aAtRBsU7CHnSZWyA==}
+ /esbuild-linux-s390x/0.14.54:
+ resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-netbsd-64/0.14.39:
- resolution: {integrity: sha512-Uo2suJBSIlrZCe4E0k75VDIFJWfZy+bOV6ih3T4MVMRJh1lHJ2UyGoaX4bOxomYN3t+IakHPyEoln1+qJ1qYaA==}
+ /esbuild-netbsd-64/0.14.54:
+ resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /esbuild-openbsd-64/0.14.39:
- resolution: {integrity: sha512-secQU+EpgUPpYjJe3OecoeGKVvRMLeKUxSMGHnK+aK5uQM3n1FPXNJzyz1LHFOo0WOyw+uoCxBYdM4O10oaCAA==}
+ /esbuild-openbsd-64/0.14.54:
+ resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /esbuild-sunos-64/0.14.39:
- resolution: {integrity: sha512-qHq0t5gePEDm2nqZLb+35p/qkaXVS7oIe32R0ECh2HOdiXXkj/1uQI9IRogGqKkK+QjDG+DhwiUw7QoHur/Rwg==}
+ /esbuild-sunos-64/0.14.54:
+ resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /esbuild-windows-32/0.14.39:
- resolution: {integrity: sha512-XPjwp2OgtEX0JnOlTgT6E5txbRp6Uw54Isorm3CwOtloJazeIWXuiwK0ONJBVb/CGbiCpS7iP2UahGgd2p1x+Q==}
+ /esbuild-windows-32/0.14.54:
+ resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-64/0.14.39:
- resolution: {integrity: sha512-E2wm+5FwCcLpKsBHRw28bSYQw0Ikxb7zIMxw3OPAkiaQhLVr3dnVO8DofmbWhhf6b97bWzg37iSZ45ZDpLw7Ow==}
+ /esbuild-windows-64/0.14.54:
+ resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-arm64/0.14.39:
- resolution: {integrity: sha512-sBZQz5D+Gd0EQ09tZRnz/PpVdLwvp/ufMtJ1iDFYddDaPpZXKqPyaxfYBLs3ueiaksQ26GGa7sci0OqFzNs7KA==}
+ /esbuild-windows-arm64/0.14.54:
+ resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild/0.14.39:
- resolution: {integrity: sha512-2kKujuzvRWYtwvNjYDY444LQIA3TyJhJIX3Yo4+qkFlDDtGlSicWgeHVJqMUP/2sSfH10PGwfsj+O2ro1m10xQ==}
+ /esbuild/0.14.54:
+ resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- esbuild-android-64: 0.14.39
- esbuild-android-arm64: 0.14.39
- esbuild-darwin-64: 0.14.39
- esbuild-darwin-arm64: 0.14.39
- esbuild-freebsd-64: 0.14.39
- esbuild-freebsd-arm64: 0.14.39
- esbuild-linux-32: 0.14.39
- esbuild-linux-64: 0.14.39
- esbuild-linux-arm: 0.14.39
- esbuild-linux-arm64: 0.14.39
- esbuild-linux-mips64le: 0.14.39
- esbuild-linux-ppc64le: 0.14.39
- esbuild-linux-riscv64: 0.14.39
- esbuild-linux-s390x: 0.14.39
- esbuild-netbsd-64: 0.14.39
- esbuild-openbsd-64: 0.14.39
- esbuild-sunos-64: 0.14.39
- esbuild-windows-32: 0.14.39
- esbuild-windows-64: 0.14.39
- esbuild-windows-arm64: 0.14.39
+ '@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
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
/escape-string-regexp/1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
/escape-string-regexp/4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /eslint-config-airbnb-base/15.0.0_btspkuwbqkl4adpiufzbathtpi:
+ /eslint-config-airbnb-base/15.0.0_2iahngt3u2tkbdlu6s4gkur3pu:
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -3362,14 +3463,14 @@ packages:
eslint-plugin-import: ^2.25.2
dependencies:
confusing-browser-globals: 1.0.11
- eslint: 8.16.0
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
- object.assign: 4.1.2
+ eslint: 8.22.0
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
+ object.assign: 4.1.4
object.entries: 1.1.5
semver: 6.3.0
dev: true
- /eslint-config-airbnb-typescript/16.2.0_ap2wief2ko4jllacu34d7dt3q4:
+ /eslint-config-airbnb-typescript/16.2.0_bqmh3ui2sxk4fcliyqc7oxsuki:
resolution: {integrity: sha512-OUaMPZpTOZGKd5tXOjJ9PRU4iYNW/Z5DoHIynjsVK/FpkWdiY5+nxQW6TiJAlLwVI1l53xUOrnlZWtVBVQzuWA==}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^5.0.0
@@ -3377,14 +3478,14 @@ packages:
eslint: ^7.32.0 || ^8.2.0
eslint-plugin-import: ^2.25.3
dependencies:
- '@typescript-eslint/eslint-plugin': 5.25.0_jorowkvdqu6pwramweg5le7ncu
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
- eslint: 8.16.0
- eslint-config-airbnb-base: 15.0.0_btspkuwbqkl4adpiufzbathtpi
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
+ '@typescript-eslint/eslint-plugin': 5.35.1_4kgehhvxgrxdvptdn2db7re534
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ eslint: 8.22.0
+ eslint-config-airbnb-base: 15.0.0_2iahngt3u2tkbdlu6s4gkur3pu
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
dev: true
- /eslint-config-airbnb/19.0.4_dt6kf4kwd3nqvb6ocrypjno67y:
+ /eslint-config-airbnb/19.0.4_qpt6uitt6oqtgn3evknx4gcn7y:
resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3394,26 +3495,26 @@ packages:
eslint-plugin-react: ^7.28.0
eslint-plugin-react-hooks: ^4.3.0
dependencies:
- eslint: 8.16.0
- eslint-config-airbnb-base: 15.0.0_btspkuwbqkl4adpiufzbathtpi
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.16.0
- eslint-plugin-react: 7.30.0_eslint@8.16.0
- eslint-plugin-react-hooks: 4.3.0_eslint@8.16.0
- object.assign: 4.1.2
+ eslint: 8.22.0
+ eslint-config-airbnb-base: 15.0.0_2iahngt3u2tkbdlu6s4gkur3pu
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.22.0
+ eslint-plugin-react: 7.31.0_eslint@8.22.0
+ eslint-plugin-react-hooks: 4.3.0_eslint@8.22.0
+ object.assign: 4.1.4
object.entries: 1.1.5
dev: true
- /eslint-config-prettier/8.5.0_eslint@8.16.0:
+ /eslint-config-prettier/8.5.0_eslint@8.22.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.16.0
+ eslint: 8.22.0
dev: true
- /eslint-config-react-app/7.0.0_7hoop7gul6kston36b5aak4ugm:
+ /eslint-config-react-app/7.0.0_cckrf6btgm46dp4ituzp5nhjhu:
resolution: {integrity: sha512-xyymoxtIt1EOsSaGag+/jmcywRuieQoA2JbPCjnw9HukFj9/97aGPoZVFioaotzk1K5Qt9sHO5EutZbkrAXS0g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3423,22 +3524,22 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.18.0
- '@babel/eslint-parser': 7.17.0_3jmbb74oue544vtiil27ushva4
- '@rushstack/eslint-patch': 1.1.3
- '@typescript-eslint/eslint-plugin': 5.25.0_jorowkvdqu6pwramweg5le7ncu
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
+ '@babel/core': 7.18.13
+ '@babel/eslint-parser': 7.18.9_i2zlx7awpychpyuxyfseoqk6n4
+ '@rushstack/eslint-patch': 1.1.4
+ '@typescript-eslint/eslint-plugin': 5.35.1_4kgehhvxgrxdvptdn2db7re534
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
- eslint: 8.16.0
- eslint-plugin-flowtype: 8.0.3_nqt7qlfyaowr4srl6t3lwtnjdq
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
- eslint-plugin-jest: 25.7.0_sxl36gmklty2fozvfwqadbk7ku
- eslint-plugin-jsx-a11y: 6.5.1_eslint@8.16.0
- eslint-plugin-react: 7.30.0_eslint@8.16.0
- eslint-plugin-react-hooks: 4.3.0_eslint@8.16.0
- eslint-plugin-testing-library: 5.5.0_utdtartgf6fqqgkivzeynh76la
- typescript: 4.6.4
+ eslint: 8.22.0
+ eslint-plugin-flowtype: 8.0.3_tecjquvmfntaxzsccq5vschudq
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
+ eslint-plugin-jest: 25.7.0_5qc43flrrebvrogp5exit3osvu
+ eslint-plugin-jsx-a11y: 6.5.1_eslint@8.22.0
+ eslint-plugin-react: 7.31.0_eslint@8.22.0
+ eslint-plugin-react-hooks: 4.3.0_eslint@8.22.0
+ eslint-plugin-testing-library: 5.6.0_shit3uhl6a7megkzgoz6xssnfa
+ typescript: 4.8.2
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -3452,12 +3553,12 @@ packages:
resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
dependencies:
debug: 3.2.7
- resolve: 1.22.0
+ resolve: 1.22.1
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-import-resolver-typescript/2.7.1_btspkuwbqkl4adpiufzbathtpi:
+ /eslint-import-resolver-typescript/2.7.1_2iahngt3u2tkbdlu6s4gkur3pu:
resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
engines: {node: '>=4'}
peerDependencies:
@@ -3465,27 +3566,30 @@ packages:
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4
- eslint: 8.16.0
- eslint-plugin-import: 2.26.0_fc3ah3mafsevgtah47p4cah6me
+ eslint: 8.22.0
+ eslint-plugin-import: 2.26.0_n2ei7fwphkwaieqkbtrebcs34m
glob: 7.2.3
is-glob: 4.0.3
- resolve: 1.22.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.1
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils/2.7.3_rak4pgp43wdbzd6xmlhzgag4yu:
- resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
+ /eslint-module-utils/2.7.4_e42soeu3hkspv5wym7y7xhvks4:
+ resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
+ eslint: '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ eslint:
+ optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
@@ -3493,16 +3597,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
debug: 3.2.7
+ eslint: 8.22.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.7.1_btspkuwbqkl4adpiufzbathtpi
- find-up: 2.1.0
+ eslint-import-resolver-typescript: 2.7.1_2iahngt3u2tkbdlu6s4gkur3pu
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-flowtype/8.0.3_nqt7qlfyaowr4srl6t3lwtnjdq:
+ /eslint-plugin-flowtype/8.0.3_tecjquvmfntaxzsccq5vschudq:
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -3510,14 +3614,14 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
- '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0
- '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0
- eslint: 8.16.0
+ '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.13
+ '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
+ eslint: 8.22.0
lodash: 4.17.21
string-natural-compare: 3.0.1
dev: true
- /eslint-plugin-import/2.26.0_fc3ah3mafsevgtah47p4cah6me:
+ /eslint-plugin-import/2.26.0_n2ei7fwphkwaieqkbtrebcs34m:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -3527,20 +3631,20 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la
+ '@typescript-eslint/parser': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.16.0
+ eslint: 8.22.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.3_rak4pgp43wdbzd6xmlhzgag4yu
+ eslint-module-utils: 2.7.4_e42soeu3hkspv5wym7y7xhvks4
has: 1.0.3
- is-core-module: 2.9.0
+ is-core-module: 2.10.0
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.5
- resolve: 1.22.0
+ resolve: 1.22.1
tsconfig-paths: 3.14.1
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -3548,7 +3652,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest/25.7.0_sxl36gmklty2fozvfwqadbk7ku:
+ /eslint-plugin-jest/25.7.0_5qc43flrrebvrogp5exit3osvu:
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -3561,38 +3665,38 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.25.0_jorowkvdqu6pwramweg5le7ncu
- '@typescript-eslint/experimental-utils': 5.25.0_utdtartgf6fqqgkivzeynh76la
- eslint: 8.16.0
+ '@typescript-eslint/eslint-plugin': 5.35.1_4kgehhvxgrxdvptdn2db7re534
+ '@typescript-eslint/experimental-utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ eslint: 8.22.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsx-a11y/6.5.1_eslint@8.16.0:
+ /eslint-plugin-jsx-a11y/6.5.1_eslint@8.22.0:
resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
aria-query: 4.2.2
array-includes: 3.1.5
ast-types-flow: 0.0.7
- axe-core: 4.4.2
+ axe-core: 4.4.3
axobject-query: 2.2.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.16.0
+ eslint: 8.22.0
has: 1.0.3
- jsx-ast-utils: 3.3.0
+ jsx-ast-utils: 3.3.3
language-tags: 1.0.5
minimatch: 3.1.2
dev: true
- /eslint-plugin-prettier/4.0.0_j7rsahgqtkecno6yauhsgsglf4:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
+ /eslint-plugin-prettier/4.2.1_i2cojdczqdiurzgttlwdgf764e:
+ resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
eslint: '>=7.28.0'
eslint-config-prettier: '*'
@@ -3601,23 +3705,23 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.16.0
- eslint-config-prettier: 8.5.0_eslint@8.16.0
- prettier: 2.6.2
+ eslint: 8.22.0
+ eslint-config-prettier: 8.5.0_eslint@8.22.0
+ prettier: 2.7.1
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-react-hooks/4.3.0_eslint@8.16.0:
+ /eslint-plugin-react-hooks/4.3.0_eslint@8.22.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.16.0
+ eslint: 8.22.0
dev: true
- /eslint-plugin-react/7.30.0_eslint@8.16.0:
- resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==}
+ /eslint-plugin-react/7.31.0_eslint@8.22.0:
+ resolution: {integrity: sha512-BWriBttYYCnfb4RO9SB91Og8uA9CPcBMl5UlCOCtuYW1UjhN3QypzEcEHky4ZIRZDKjbO2Blh9BjP8E7W/b1SA==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
@@ -3625,28 +3729,28 @@ packages:
array-includes: 3.1.5
array.prototype.flatmap: 1.3.0
doctrine: 2.1.0
- eslint: 8.16.0
+ eslint: 8.22.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.0
+ jsx-ast-utils: 3.3.3
minimatch: 3.1.2
object.entries: 1.1.5
object.fromentries: 2.0.5
object.hasown: 1.1.1
object.values: 1.1.5
prop-types: 15.8.1
- resolve: 2.0.0-next.3
+ resolve: 2.0.0-next.4
semver: 6.3.0
string.prototype.matchall: 4.0.7
dev: true
- /eslint-plugin-testing-library/5.5.0_utdtartgf6fqqgkivzeynh76la:
- resolution: {integrity: sha512-eWQ19l6uWL7LW8oeMyQVSGjVYFnBqk7DMHjadm0yOHBvX3Xi9OBrsNuxoAMdX4r7wlQ5WWpW46d+CB6FWFL/PQ==}
+ /eslint-plugin-testing-library/5.6.0_shit3uhl6a7megkzgoz6xssnfa:
+ resolution: {integrity: sha512-y63TRzPhGCMNsnUwMGJU1MFWc/3GvYw+nzobp9QiyNTTKsgAt5RKAOT1I34+XqVBpX1lC8bScoOjCkP7iRv0Mw==}
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.25.0_utdtartgf6fqqgkivzeynh76la
- eslint: 8.16.0
+ '@typescript-eslint/utils': 5.35.1_shit3uhl6a7megkzgoz6xssnfa
+ eslint: 8.22.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -3668,13 +3772,13 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.16.0:
+ /eslint-utils/3.0.0_eslint@8.22.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.16.0
+ eslint: 8.22.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -3688,13 +3792,14 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.16.0:
- resolution: {integrity: sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==}
+ /eslint/8.22.0:
+ resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
'@eslint/eslintrc': 1.3.0
- '@humanwhocodes/config-array': 0.9.5
+ '@humanwhocodes/config-array': 0.10.4
+ '@humanwhocodes/gitignore-to-minimatch': 1.0.2
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
@@ -3702,16 +3807,19 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.16.0
+ eslint-utils: 3.0.0_eslint@8.22.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.2
+ espree: 9.3.3
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
+ find-up: 5.0.0
functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
- globals: 13.15.0
+ globals: 13.17.0
+ globby: 11.1.0
+ grapheme-splitter: 1.0.4
ignore: 5.2.0
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -3732,12 +3840,12 @@ packages:
- supports-color
dev: true
- /espree/9.3.2:
- resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==}
+ /espree/9.3.3:
+ resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.7.1
- acorn-jsx: 5.3.2_acorn@8.7.1
+ acorn: 8.8.0
+ acorn-jsx: 5.3.2_acorn@8.8.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -3779,7 +3887,7 @@ packages:
dev: true
/eventemitter3/2.0.3:
- resolution: {integrity: sha1-teEHm1n7XhuidxwKmTvgYKWMmbo=}
+ resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==}
dev: false
/extend/3.0.2:
@@ -3814,7 +3922,7 @@ packages:
dev: true
/fast-levenshtein/2.0.6:
- resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
/fastq/1.13.0:
@@ -3854,27 +3962,28 @@ packages:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
dev: false
- /find-up/2.1.0:
- resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
- engines: {node: '>=4'}
+ /find-up/5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
dependencies:
- locate-path: 2.0.0
+ locate-path: 6.0.0
+ path-exists: 4.0.0
dev: true
/flat-cache/3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.5
+ flatted: 3.2.7
rimraf: 3.0.2
dev: true
- /flatted/3.2.5:
- resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==}
+ /flatted/3.2.7:
+ resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
dev: true
- /follow-redirects/1.15.0:
- resolution: {integrity: sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==}
+ /follow-redirects/1.15.1:
+ resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -3892,12 +4001,13 @@ packages:
mime-types: 2.1.35
dev: false
- /framer-motion/6.3.3_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-wo0dCnoq5vn4L8YVOPO9W54dliH78vDaX0Lj+bSPUys6Nt5QaehrS3uaYa0q5eVeikUgtTjz070UhQ94thI5Sw==}
+ /framer-motion/6.5.1_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==}
peerDependencies:
react: '>=16.8 || ^17.0.0 || ^18.0.0'
react-dom: '>=16.8 || ^17.0.0 || ^18.0.0'
dependencies:
+ '@motionone/dom': 10.12.0
framesync: 6.0.1
hey-listen: 1.0.8
popmotion: 11.0.3
@@ -3926,7 +4036,7 @@ packages:
dev: true
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: true
/fsevents/2.3.2:
@@ -3950,7 +4060,7 @@ packages:
dev: true
/functional-red-black-tree/1.0.1:
- resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
dev: true
/functions-have-names/1.2.3:
@@ -3960,8 +4070,8 @@ packages:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-intrinsic/1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ /get-intrinsic/1.1.2:
+ resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
@@ -3976,7 +4086,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
dev: true
/glob-parent/5.1.2:
@@ -4008,8 +4118,8 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.15.0:
- resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==}
+ /globals/13.17.0:
+ resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -4027,16 +4137,28 @@ packages:
slash: 3.0.0
dev: true
+ /goober/2.1.11_csstype@3.1.0:
+ resolution: {integrity: sha512-5SS2lmxbhqH0u9ABEWq7WPU69a4i2pYcHeCxqaNq6Cw3mnrF0ghWNM4tEGid4dKy8XNIAUbuThuozDHHKJVh3A==}
+ peerDependencies:
+ csstype: ^3.0.10
+ dependencies:
+ csstype: 3.1.0
+ dev: false
+
/graceful-fs/4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
+ /grapheme-splitter/1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+ dev: true
+
/has-bigints/1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
/has-flag/3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
/has-flag/4.0.0:
@@ -4047,7 +4169,7 @@ packages:
/has-property-descriptors/1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
@@ -4076,10 +4198,15 @@ packages:
resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
dev: false
+ /highlight.js/11.6.0:
+ resolution: {integrity: sha512-ig1eqDzJaB0pqEvlPVIpSSyMaO92bH1N2rJpLMN/nX396wTpDA4Eq0uK+7I/2XG17pFaaKE0kjV/XPeGt7Evjw==}
+ engines: {node: '>=12.0.0'}
+ dev: false
+
/history/5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
dev: false
/hoist-non-react-statics/3.3.2:
@@ -4088,8 +4215,8 @@ packages:
react-is: 16.13.1
dev: false
- /idb/6.1.5:
- resolution: {integrity: sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==}
+ /idb/7.0.2:
+ resolution: {integrity: sha512-jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg==}
dev: true
/ignore/5.2.0:
@@ -4105,12 +4232,12 @@ packages:
resolve-from: 4.0.0
/imurmurhash/0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: true
/inflight/1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
@@ -4124,7 +4251,7 @@ packages:
resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
has: 1.0.3
side-channel: 1.0.4
dev: true
@@ -4144,7 +4271,7 @@ packages:
dev: false
/is-arrayish/0.2.1:
- resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -4165,8 +4292,8 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /is-core-module/2.9.0:
- resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
+ /is-core-module/2.10.0:
+ resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==}
dependencies:
has: 1.0.3
@@ -4177,7 +4304,7 @@ packages:
has-tostringtag: 1.0.0
/is-extglob/2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4189,7 +4316,7 @@ packages:
dev: true
/is-module/1.0.0:
- resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
+ resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
/is-negative-zero/2.0.2:
@@ -4210,7 +4337,7 @@ packages:
dev: true
/is-obj/1.0.1:
- resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=}
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4222,7 +4349,7 @@ packages:
has-tostringtag: 1.0.0
/is-regexp/1.0.0:
- resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=}
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4258,7 +4385,7 @@ packages:
dev: true
/isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
/jake/10.8.5:
@@ -4266,7 +4393,7 @@ packages:
engines: {node: '>=10'}
hasBin: true
dependencies:
- async: 3.2.3
+ async: 3.2.4
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -4276,7 +4403,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.35
+ '@types/node': 18.7.13
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -4292,7 +4419,7 @@ packages:
dev: true
/jsesc/0.5.0:
- resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
dev: true
@@ -4317,7 +4444,7 @@ packages:
dev: true
/json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
/json5/1.0.1:
@@ -4340,33 +4467,33 @@ packages:
graceful-fs: 4.2.10
dev: true
- /jsonpointer/5.0.0:
- resolution: {integrity: sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==}
+ /jsonpointer/5.0.1:
+ resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
dev: true
- /jsx-ast-utils/3.3.0:
- resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==}
+ /jsx-ast-utils/3.3.3:
+ resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
array-includes: 3.1.5
- object.assign: 4.1.2
+ object.assign: 4.1.4
dev: true
/jsx-runtime/1.2.0:
- resolution: {integrity: sha1-O64NrVDsMFQbtbBCCxBIVmlDUMs=}
+ resolution: {integrity: sha512-iCxmRTlUAWmXwHZxN0JSx/T7eRi0SkKAskE0lp+j4W1mzdNp49ja/9QI2ZmlggPM95RqnDw5ioYjw0EcvpIClw==}
dependencies:
object-assign: 3.0.0
dev: false
- /language-subtag-registry/0.3.21:
- resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
+ /language-subtag-registry/0.3.22:
+ resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
/language-tags/1.0.5:
- resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
- language-subtag-registry: 0.3.21
+ language-subtag-registry: 0.3.22
dev: true
/leven/3.1.0:
@@ -4385,12 +4512,11 @@ packages:
/lines-and-columns/1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /locate-path/2.0.0:
- resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
- engines: {node: '>=4'}
+ /locate-path/6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
dependencies:
- p-locate: 2.0.0
- path-exists: 3.0.0
+ p-locate: 5.0.0
dev: true
/lodash-es/4.17.21:
@@ -4398,10 +4524,10 @@ packages:
dev: false
/lodash.debounce/4.0.8:
- resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
/lodash.memoize/4.1.2:
- resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: false
/lodash.merge/4.6.2:
@@ -4409,11 +4535,11 @@ packages:
dev: true
/lodash.sortby/4.7.0:
- resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=}
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: true
/lodash.throttle/4.1.1:
- resolution: {integrity: sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=}
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
dev: false
/lodash/4.17.21:
@@ -4491,7 +4617,7 @@ packages:
dev: true
/ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
dev: true
/ms/2.1.2:
@@ -4511,7 +4637,7 @@ packages:
hasBin: true
/natural-compare/1.4.0:
- resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
/no-case/3.0.4:
@@ -4521,51 +4647,43 @@ packages:
tslib: 2.4.0
dev: false
- /node-releases/2.0.4:
- resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==}
+ /node-releases/2.0.6:
+ resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
- /notistack/2.0.5_k22khpnjqxywh7vt4mxfep5lqy:
- resolution: {integrity: sha512-Ig2T1Muqkc1PaSQcEDrK7diKv6cBxw02Iq6uv074ySfgq524TV5lK41diAb6OSsaiWfp3aRt+T3+0MF8m2EcJQ==}
+ /notistack/3.0.0-alpha.7_a3rolb2r43cxt5j5fxvpwhxlai:
+ resolution: {integrity: sha512-H/L/MyDBlpa0+9+4mp4p10WScDobpPkvWy6naBtAVDgSlCynaSGLitQZ0xHxtN7G7+dCyOBDqy1frCOPQHvOig==}
+ engines: {node: '>=12.0.0', npm: '>=6.0.0'}
peerDependencies:
- '@emotion/react': ^11.4.1
- '@emotion/styled': ^11.3.0
- '@mui/material': ^5.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@emotion/react':
- optional: true
- '@emotion/styled':
- optional: true
dependencies:
- '@emotion/react': 11.9.0_citxzijaigt45he3z6kuy2ivbq
- '@emotion/styled': 11.8.1_3mkbovqfrbpc53bljqhapolzfu
- '@mui/material': 5.8.0_zdaquy43folvhsznh4trclztdq
- clsx: 1.1.1
- hoist-non-react-statics: 3.3.2
+ clsx: 1.2.1
+ goober: 2.1.11_csstype@3.1.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
+ transitivePeerDependencies:
+ - csstype
dev: false
/nprogress/0.2.0:
- resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
+ resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
dev: false
/numeral/2.0.6:
- resolution: {integrity: sha1-StCAk21EPCVhrtnyGX7//iX05QY=}
+ resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==}
dev: false
/object-assign/3.0.0:
- resolution: {integrity: sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=}
+ resolution: {integrity: sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==}
engines: {node: '>=0.10.0'}
dev: false
/object-assign/4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-inspect/1.12.1:
- resolution: {integrity: sha512-Y/jF6vnvEtOPGiKD1+q+X0CiUYRQtEHp89MLLUJ7TUivtH8Ugn2+3A7Rynqk7BRsAoqeOQWnFnjpDrKSxDgIGA==}
+ /object-inspect/1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
/object-is/1.1.5:
@@ -4580,8 +4698,8 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- /object.assign/4.1.2:
- resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
+ /object.assign/4.1.4:
+ resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
@@ -4625,7 +4743,7 @@ packages:
dev: true
/once/1.4.0:
- resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
dev: true
@@ -4642,23 +4760,18 @@ packages:
word-wrap: 1.2.3
dev: true
- /p-limit/1.3.0:
- resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
- engines: {node: '>=4'}
+ /p-limit/3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
dependencies:
- p-try: 1.0.0
+ yocto-queue: 0.1.0
dev: true
- /p-locate/2.0.0:
- resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
- engines: {node: '>=4'}
+ /p-locate/5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
dependencies:
- p-limit: 1.3.0
- dev: true
-
- /p-try/1.0.0:
- resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
- engines: {node: '>=4'}
+ p-limit: 3.1.0
dev: true
/param-case/3.0.4:
@@ -4682,7 +4795,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.18.6
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -4701,13 +4814,13 @@ packages:
tslib: 2.4.0
dev: false
- /path-exists/3.0.0:
- resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
- engines: {node: '>=4'}
+ /path-exists/4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
dev: true
/path-is-absolute/1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
dev: true
@@ -4739,8 +4852,8 @@ packages:
tslib: 2.4.0
dev: false
- /postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ /postcss/8.4.16:
+ resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.4
@@ -4759,8 +4872,8 @@ packages:
fast-diff: 1.2.0
dev: true
- /prettier/2.6.2:
- resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==}
+ /prettier/2.7.1:
+ resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
@@ -4821,10 +4934,6 @@ packages:
safe-buffer: 5.2.1
dev: true
- /react-dom-factories/1.0.2:
- resolution: {integrity: sha1-63cFxNs2+1AbOqOP91lhaqD/luA=}
- dev: false
-
/react-dom/17.0.2_react@17.0.2:
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
@@ -4836,8 +4945,8 @@ packages:
scheduler: 0.20.2
dev: false
- /react-dropzone/14.2.1_react@17.0.2:
- resolution: {integrity: sha512-jzX6wDtAjlfwZ+Fbg+G17EszWUkQVxhMTWMfAC9qSUq7II2pKglHA8aarbFKl0mLpRPDaNUcy+HD/Sf4gkf76Q==}
+ /react-dropzone/14.2.2_react@17.0.2:
+ resolution: {integrity: sha512-5oyGN/B5rNhop2ggUnxztXBQ6q6zii+OMEftPzsxAR2hhpVWz0nAV+3Ktxo2h5bZzdcCKrpd8bfWAVsveIBM+w==}
engines: {node: '>= 10.13'}
peerDependencies:
react: '>= 16.8 || 18.0.0'
@@ -4858,7 +4967,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
invariant: 2.2.4
prop-types: 15.8.1
react: 17.0.2
@@ -4867,8 +4976,8 @@ packages:
shallowequal: 1.1.0
dev: false
- /react-hook-form/7.31.2_react@17.0.2:
- resolution: {integrity: sha512-oPudn3YuyzWg//IsT9z2cMEjWocAgHWX/bmueDT8cmsYQnGY5h7/njjvMDfLVv3mbdhYBjslTRnII2MIT7eNCA==}
+ /react-hook-form/7.34.2_react@17.0.2:
+ resolution: {integrity: sha512-1lYWbEqr0GW7HHUjMScXMidGvV0BE2RJV3ap2BL7G0EJirkqpccTaawbsvBO8GZaB3JjCeFBEbnEWI1P8ZoLRQ==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
@@ -4891,8 +5000,12 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: false
- /react-lazy-load-image-component/1.5.4_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-PSi9tckzZmiqfYZwS6ke2RoRbICsN5m0qsG6fEjUdQNe5STiJieXLlRuGD3uAASOQPFiKYFSLoueN07nk0uffw==}
+ /react-is/18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ dev: false
+
+ /react-lazy-load-image-component/1.5.5_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-pPtq48tIhkLIZg6MAhB3VvVhntJLrc3MBun/lQkNmNtrRFXdjEc5aHlPT5EhpXPQR1nsNVwN91ne6Aagm3rtNQ==}
peerDependencies:
react: ^15.x.x || ^16.x.x || ^17.x.x || ^18.x.x
react-dom: ^15.x.x || ^16.x.x || ^17.x.x || ^18.x.x
@@ -4903,19 +5016,17 @@ packages:
react-dom: 17.0.2_react@17.0.2
dev: false
- /react-quill/1.3.5_react@17.0.2:
- resolution: {integrity: sha512-/W/rNCW+6QpGz8yQ9tFK5Ka/h/No1RqrcOOvCIOR092OiKzRFlU2xbPEwiP3Wgy/Dx13pi1YhjReDMX/5uotJg==}
- engines: {node: '>= 0.8.x'}
+ /react-quill/2.0.0-beta.4_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-KyAHvAlPjP4xLElKZJefMth91Z6FbbXRvq9OSu6xN3KBaoasLP9p+3dcxg4Ywr4tBlpMGXcPszYSAgd5CpJ45Q==}
peerDependencies:
- react: ^0.14.9 || ^15.3.0 || ^16.0.0
+ react: ^16 || ^17
+ react-dom: ^16 || ^17
dependencies:
'@types/quill': 1.3.10
- create-react-class: 15.7.0
lodash: 4.17.21
- prop-types: 15.8.1
quill: 1.3.7
react: 17.0.2
- react-dom-factories: 1.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
/react-refresh/0.13.0:
@@ -4944,13 +5055,13 @@ packages:
react: 17.0.2
dev: false
- /react-transition-group/4.4.2_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
+ /react-transition-group/4.4.5_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -4983,7 +5094,7 @@ packages:
/regenerator-transform/0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
- '@babel/runtime': 7.18.0
+ '@babel/runtime': 7.18.9
dev: true
/regexp.prototype.flags/1.4.3:
@@ -4999,8 +5110,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /regexpu-core/5.0.1:
- resolution: {integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==}
+ /regexpu-core/5.1.0:
+ resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -5027,27 +5138,29 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /reselect/4.1.5:
- resolution: {integrity: sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==}
+ /reselect/4.1.6:
+ resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==}
dev: false
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve/1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
+ /resolve/1.22.1:
+ resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
- is-core-module: 2.9.0
+ is-core-module: 2.10.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.3:
- resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
+ /resolve/2.0.0-next.4:
+ resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
+ hasBin: true
dependencies:
- is-core-module: 2.9.0
+ is-core-module: 2.10.0
path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
dev: true
/reusify/1.0.4:
@@ -5070,25 +5183,33 @@ packages:
glob: 7.2.3
dev: true
- /rollup-plugin-terser/7.0.2_rollup@2.74.1:
+ /rollup-plugin-terser/7.0.2_rollup@2.78.1:
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
peerDependencies:
rollup: ^2.0.0
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.18.6
jest-worker: 26.6.2
- rollup: 2.74.1
+ rollup: 2.78.1
serialize-javascript: 4.0.0
- terser: 5.13.1
+ terser: 5.15.0
dev: true
- /rollup/2.74.1:
- resolution: {integrity: sha512-K2zW7kV8Voua5eGkbnBtWYfMIhYhT9Pel2uhBk2WO5eMee161nPze/XRfvEQPFYz7KgrCCnmh2Wy0AMFLGGmMA==}
+ /rollup/2.77.3:
+ resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
+ /rollup/2.78.1:
+ resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
@@ -5160,12 +5281,12 @@ packages:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.1
- object-inspect: 1.12.1
+ get-intrinsic: 1.1.2
+ object-inspect: 1.12.2
dev: true
- /simplebar-react/2.3.7_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-C+yPcLq6W/Sqiexx89Jw0Z4RrWtjqXsWh/OHhZv7893HMZ96c32JZWWu8mfVlZxZaZ/8u9h66FzWCs3atzeu7g==}
+ /simplebar-react/2.4.1_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-lw0ZPj+80ez2mh1YTOligFUNzDch2sUbOzDp4WUhU5SpS+qMiyyOzNfMbHa0l4FyWox+tnGNO7jybxqIda3roQ==}
peerDependencies:
react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0
react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0
@@ -5173,15 +5294,15 @@ packages:
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- simplebar: 5.3.6
+ simplebar: 5.3.8
dev: false
- /simplebar/5.3.6:
- resolution: {integrity: sha512-FJUMbV+hNDd/m+1/fvD41TXKd5mSdlI5zgBygkaQIV3SffNbcLhSbJT6ufTs8ZNRLJ6i+qc/KCFMqWmvlGWMhA==}
+ /simplebar/5.3.8:
+ resolution: {integrity: sha512-LOHjyOcihx++zFN+vuktoZBGpCarFCtHIVDWXOf2VELbGDknq3Hw/sddafRp1aCg123VNkHWOFHUDHYEXAtufQ==}
dependencies:
- '@juggle/resize-observer': 3.3.1
+ '@juggle/resize-observer': 3.4.0
can-use-dom: 0.1.0
- core-js: 3.22.6
+ core-js: 3.25.0
lodash.debounce: 4.0.8
lodash.memoize: 4.1.2
lodash.throttle: 4.1.1
@@ -5211,7 +5332,7 @@ packages:
dev: true
/source-map/0.5.7:
- resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
dev: false
@@ -5241,7 +5362,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.1
- get-intrinsic: 1.1.1
+ get-intrinsic: 1.1.2
has-symbols: 1.0.3
internal-slot: 1.0.3
regexp.prototype.flags: 1.4.3
@@ -5281,7 +5402,7 @@ packages:
dev: true
/strip-bom/3.0.0:
- resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
dev: true
@@ -5355,23 +5476,23 @@ packages:
unique-string: 2.0.0
dev: true
- /terser/5.13.1:
- resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==}
+ /terser/5.15.0:
+ resolution: {integrity: sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- acorn: 8.7.1
+ '@jridgewell/source-map': 0.3.2
+ acorn: 8.8.0
commander: 2.20.3
- source-map: 0.8.0-beta.0
source-map-support: 0.5.21
dev: true
/text-table/0.2.0:
- resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
/to-fast-properties/2.0.0:
- resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
/to-regex-range/5.0.1:
@@ -5382,11 +5503,11 @@ packages:
dev: true
/toposort/2.0.2:
- resolution: {integrity: sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=}
+ resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
dev: false
/tr46/1.0.1:
- resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=}
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
punycode: 2.1.1
dev: true
@@ -5408,14 +5529,14 @@ packages:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
dev: false
- /tsutils/3.21.0_typescript@4.6.4:
+ /tsutils/3.21.0_typescript@4.8.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.4
+ typescript: 4.8.2
dev: true
/type-check/0.4.0:
@@ -5435,8 +5556,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /typescript/4.6.4:
- resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==}
+ /typescript/4.8.2:
+ resolution: {integrity: sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
@@ -5490,6 +5611,16 @@ packages:
engines: {node: '>=4'}
dev: true
+ /update-browserslist-db/1.0.5_browserslist@4.21.3:
+ resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.3
+ escalade: 3.1.1
+ picocolors: 1.0.0
+
/upper-case-first/2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
@@ -5512,42 +5643,44 @@ packages:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /vite-plugin-pwa/0.12.0_vite@2.9.9:
- resolution: {integrity: sha512-KYD+cnS5ExLF3T28NkfzBLZ53ehHlp+qMhHGFNh0zlVGpFHrJkL2v9wd4AMi7ZkBTffgeNatIFiv8rhCsMSxBQ==}
+ /vite-plugin-pwa/0.12.3_vite@3.0.9:
+ resolution: {integrity: sha512-gmYdIVXpmBuNjzbJFPZFzxWYrX4lHqwMAlOtjmXBbxApiHjx9QPXKQPJjSpeTeosLKvVbNcKSAAhfxMda0QVNQ==}
peerDependencies:
- vite: ^2.0.0
+ vite: ^2.0.0 || ^3.0.0-0
dependencies:
debug: 4.3.4
fast-glob: 3.2.11
pretty-bytes: 6.0.0
- rollup: 2.74.1
- vite: 2.9.9
- workbox-build: 6.5.3
- workbox-window: 6.5.3
+ rollup: 2.78.1
+ vite: 3.0.9
+ workbox-build: 6.5.4
+ workbox-window: 6.5.4
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
dev: true
- /vite-plugin-svgr/2.1.0_vite@2.9.9:
- resolution: {integrity: sha512-3J19p8pmGfRt297yvc8Fd36+0AC0sLgA/gZYQDjotNAhv3CmSTQyviXIrDbwiRFVrsZjSlHJH1vca7OGFmjDcA==}
+ /vite-plugin-svgr/2.2.1_vite@3.0.9:
+ resolution: {integrity: sha512-+EqwahbwjETJH/ssA/66dNYyKN1cO0AStq96MuXmq5maU7AePBMf2lDKfQna49tJZAjtRz+R899BWCsUUP45Fg==}
peerDependencies:
- vite: ^2.6.0
+ vite: ^2.6.0 || 3
dependencies:
- '@svgr/core': 6.2.1
- vite: 2.9.9
+ '@rollup/pluginutils': 4.2.1
+ '@svgr/core': 6.3.1
+ vite: 3.0.9
transitivePeerDependencies:
- supports-color
dev: false
- /vite/2.9.9:
- resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==}
- engines: {node: '>=12.2.0'}
+ /vite/3.0.9:
+ resolution: {integrity: sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
less: '*'
sass: '*'
stylus: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
less:
optional: true
@@ -5555,11 +5688,13 @@ packages:
optional: true
stylus:
optional: true
+ terser:
+ optional: true
dependencies:
- esbuild: 0.14.39
- postcss: 8.4.14
- resolve: 1.22.0
- rollup: 2.74.1
+ esbuild: 0.14.54
+ postcss: 8.4.16
+ resolve: 1.22.1
+ rollup: 2.77.3
optionalDependencies:
fsevents: 2.3.2
@@ -5598,30 +5733,30 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /workbox-background-sync/6.5.3:
- resolution: {integrity: sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==}
+ /workbox-background-sync/6.5.4:
+ resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==}
dependencies:
- idb: 6.1.5
- workbox-core: 6.5.3
+ idb: 7.0.2
+ workbox-core: 6.5.4
dev: true
- /workbox-broadcast-update/6.5.3:
- resolution: {integrity: sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==}
+ /workbox-broadcast-update/6.5.4:
+ resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-build/6.5.3:
- resolution: {integrity: sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==}
+ /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.3_ajv@8.11.0
- '@babel/core': 7.18.0
- '@babel/preset-env': 7.18.0_@babel+core@7.18.0
- '@babel/runtime': 7.18.0
- '@rollup/plugin-babel': 5.3.1_ykg7cmcqpmn5fbkb5gxs7i3du4
- '@rollup/plugin-node-resolve': 11.2.1_rollup@2.74.1
- '@rollup/plugin-replace': 2.4.2_rollup@2.74.1
+ '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0
+ '@babel/core': 7.18.13
+ '@babel/preset-env': 7.18.10_@babel+core@7.18.13
+ '@babel/runtime': 7.18.9
+ '@rollup/plugin-babel': 5.3.1_2uin6pbxavst3oir53roxbd5qi
+ '@rollup/plugin-node-resolve': 11.2.1_rollup@2.78.1
+ '@rollup/plugin-replace': 2.4.2_rollup@2.78.1
'@surma/rollup-plugin-off-main-thread': 2.2.3
ajv: 8.11.0
common-tags: 1.8.2
@@ -5630,122 +5765,122 @@ packages:
glob: 7.2.3
lodash: 4.17.21
pretty-bytes: 5.6.0
- rollup: 2.74.1
- rollup-plugin-terser: 7.0.2_rollup@2.74.1
+ rollup: 2.78.1
+ rollup-plugin-terser: 7.0.2_rollup@2.78.1
source-map: 0.8.0-beta.0
stringify-object: 3.3.0
strip-comments: 2.0.1
tempy: 0.6.0
upath: 1.2.0
- workbox-background-sync: 6.5.3
- workbox-broadcast-update: 6.5.3
- workbox-cacheable-response: 6.5.3
- workbox-core: 6.5.3
- workbox-expiration: 6.5.3
- workbox-google-analytics: 6.5.3
- workbox-navigation-preload: 6.5.3
- workbox-precaching: 6.5.3
- workbox-range-requests: 6.5.3
- workbox-recipes: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
- workbox-streams: 6.5.3
- workbox-sw: 6.5.3
- workbox-window: 6.5.3
+ workbox-background-sync: 6.5.4
+ workbox-broadcast-update: 6.5.4
+ workbox-cacheable-response: 6.5.4
+ workbox-core: 6.5.4
+ workbox-expiration: 6.5.4
+ workbox-google-analytics: 6.5.4
+ workbox-navigation-preload: 6.5.4
+ workbox-precaching: 6.5.4
+ workbox-range-requests: 6.5.4
+ workbox-recipes: 6.5.4
+ workbox-routing: 6.5.4
+ workbox-strategies: 6.5.4
+ workbox-streams: 6.5.4
+ workbox-sw: 6.5.4
+ workbox-window: 6.5.4
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
dev: true
- /workbox-cacheable-response/6.5.3:
- resolution: {integrity: sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==}
+ /workbox-cacheable-response/6.5.4:
+ resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-core/6.5.3:
- resolution: {integrity: sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==}
+ /workbox-core/6.5.4:
+ resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==}
dev: true
- /workbox-expiration/6.5.3:
- resolution: {integrity: sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==}
+ /workbox-expiration/6.5.4:
+ resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==}
dependencies:
- idb: 6.1.5
- workbox-core: 6.5.3
+ idb: 7.0.2
+ workbox-core: 6.5.4
dev: true
- /workbox-google-analytics/6.5.3:
- resolution: {integrity: sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==}
+ /workbox-google-analytics/6.5.4:
+ resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==}
dependencies:
- workbox-background-sync: 6.5.3
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
+ workbox-background-sync: 6.5.4
+ workbox-core: 6.5.4
+ workbox-routing: 6.5.4
+ workbox-strategies: 6.5.4
dev: true
- /workbox-navigation-preload/6.5.3:
- resolution: {integrity: sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==}
+ /workbox-navigation-preload/6.5.4:
+ resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-precaching/6.5.3:
- resolution: {integrity: sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==}
+ /workbox-precaching/6.5.4:
+ resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==}
dependencies:
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
- workbox-strategies: 6.5.3
+ workbox-core: 6.5.4
+ workbox-routing: 6.5.4
+ workbox-strategies: 6.5.4
dev: true
- /workbox-range-requests/6.5.3:
- resolution: {integrity: sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==}
+ /workbox-range-requests/6.5.4:
+ resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-recipes/6.5.3:
- resolution: {integrity: sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==}
+ /workbox-recipes/6.5.4:
+ resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==}
dependencies:
- 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-cacheable-response: 6.5.4
+ workbox-core: 6.5.4
+ workbox-expiration: 6.5.4
+ workbox-precaching: 6.5.4
+ workbox-routing: 6.5.4
+ workbox-strategies: 6.5.4
dev: true
- /workbox-routing/6.5.3:
- resolution: {integrity: sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==}
+ /workbox-routing/6.5.4:
+ resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-strategies/6.5.3:
- resolution: {integrity: sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==}
+ /workbox-strategies/6.5.4:
+ resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==}
dependencies:
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
- /workbox-streams/6.5.3:
- resolution: {integrity: sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==}
+ /workbox-streams/6.5.4:
+ resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==}
dependencies:
- workbox-core: 6.5.3
- workbox-routing: 6.5.3
+ workbox-core: 6.5.4
+ workbox-routing: 6.5.4
dev: true
- /workbox-sw/6.5.3:
- resolution: {integrity: sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==}
+ /workbox-sw/6.5.4:
+ resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==}
dev: true
- /workbox-window/6.5.3:
- resolution: {integrity: sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==}
+ /workbox-window/6.5.4:
+ resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==}
dependencies:
'@types/trusted-types': 2.0.2
- workbox-core: 6.5.3
+ workbox-core: 6.5.4
dev: true
/wrappy/1.0.2:
- resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true
/yallist/4.0.0:
@@ -5756,12 +5891,17 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
+ /yocto-queue/0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+ dev: true
+
/yup/0.32.11:
resolution: {integrity: sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.18.0
- '@types/lodash': 4.14.182
+ '@babel/runtime': 7.18.9
+ '@types/lodash': 4.14.184
lodash: 4.17.21
lodash-es: 4.17.21
nanoclone: 0.2.1
diff --git a/modules_statuses.json b/modules_statuses.json
index 7b0b5be2..a2cd3b49 100644
--- a/modules_statuses.json
+++ b/modules_statuses.json
@@ -1,3 +1,4 @@
{
- "Internal": true
+ "Internal": true,
+ "Client": true
}
\ No newline at end of file