diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 38bc5cdb..e54310dc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: nrwl/nx-set-shas@v2 + - uses: nrwl/nx-set-shas@v3 - uses: pnpm/action-setup@v2 - uses: actions/setup-node@v3 with: diff --git a/extension/README.md b/extension/README.md index 5c8dc144..2e3cd99c 100644 --- a/extension/README.md +++ b/extension/README.md @@ -57,7 +57,7 @@ const composeEnhancers = compose; ``` -> For TypeScript use [`redux-devtools-extension` npm package](#13-use-redux-devtools-extension-package-from-npm), which contains all the definitions, or just use `(window as any)` (see [Recipes](/docs/Recipes.md#using-in-a-typescript-project) for an example). +> For TypeScript use [`redux-devtools-extension` npm package](#13-use-redux-devtoolsextension-package-from-npm), which contains all the definitions, or just use `(window as any)` (see [Recipes](/docs/Recipes.md#using-in-a-typescript-project) for an example). ```js const composeEnhancers = (window as any).__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; diff --git a/extension/src/browser/extension/manifest.json b/extension/chrome/manifest.json similarity index 100% rename from extension/src/browser/extension/manifest.json rename to extension/chrome/manifest.json diff --git a/extension/src/browser/firefox/manifest.json b/extension/firefox/manifest.json similarity index 100% rename from extension/src/browser/firefox/manifest.json rename to extension/firefox/manifest.json diff --git a/extension/jest.config.js b/extension/jest.config.js index b70a7b3e..924b5865 100644 --- a/extension/jest.config.js +++ b/extension/jest.config.js @@ -5,4 +5,5 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, + resolver: '/jestResolver.js', }; diff --git a/extension/jestResolver.js b/extension/jestResolver.js new file mode 100644 index 00000000..8e066aa4 --- /dev/null +++ b/extension/jestResolver.js @@ -0,0 +1,15 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + if (pkg.name === 'uuid' && pkg.version.startsWith('8.')) { + delete pkg.exports; + delete pkg.module; + } + return pkg; + }, + }); +}; diff --git a/extension/package.json b/extension/package.json index 75a2f782..3e45a475 100644 --- a/extension/package.json +++ b/extension/package.json @@ -43,55 +43,56 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", "react-json-tree": "^0.17.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "redux-persist": "^6.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@babel/register": "^7.18.9", "@testing-library/jest-dom": "^5.16.5", - "@testing-library/react": "^13.3.0", - "@types/chrome": "^0.0.193", - "@types/lodash": "^4.14.182", - "@types/react": "^18.0.17", + "@testing-library/react": "^13.4.0", + "@types/chrome": "^0.0.198", + "@types/lodash": "^4.14.186", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "babel-loader": "^8.2.5", + "babel-loader": "^9.0.0", "bestzip": "^2.2.1", - "chromedriver": "^104.0.0", + "chromedriver": "^106.0.1", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "electron": "^20.0.2", - "eslint": "^8.21.0", + "electron": "^21.1.1", + "eslint": "^8.25.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.6.1", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "file-loader": "^6.2.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "path-browserify": "^1.0.1", "pug-html-loader": "^1.1.5", "raw-loader": "^4.0.2", "react-transform-catch-errors": "^1.0.2", "react-transform-hmr": "^1.0.4", "rimraf": "^3.0.2", - "selenium-webdriver": "^4.4.0", + "selenium-webdriver": "^4.5.0", "sinon-chrome": "^3.0.1", "style-loader": "^3.3.1", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4", + "ts-jest": "^29.0.3", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0" } diff --git a/extension/src/app/containers/Actions.tsx b/extension/src/app/Actions.tsx similarity index 96% rename from extension/src/app/containers/Actions.tsx rename to extension/src/app/Actions.tsx index c821afe4..bf1c6f39 100644 --- a/extension/src/app/containers/Actions.tsx +++ b/extension/src/app/Actions.tsx @@ -19,8 +19,8 @@ import { } from '@redux-devtools/app'; import { GoRadioTower } from 'react-icons/go'; import { MdBorderBottom, MdBorderLeft, MdBorderRight } from 'react-icons/md'; -import { Position } from '../api/openWindow'; -import { SingleMessage } from '../middlewares/api'; +import type { Position } from '../pageScript/api/openWindow'; +import type { SingleMessage } from '../background/store/apiMiddleware'; type StateProps = ReturnType; type DispatchProps = ResolveThunks; diff --git a/extension/src/app/containers/App.tsx b/extension/src/app/App.tsx similarity index 100% rename from extension/src/app/containers/App.tsx rename to extension/src/app/App.tsx diff --git a/extension/src/app/stores/createStore.ts b/extension/src/app/stores/createStore.ts deleted file mode 100644 index f91dd548..00000000 --- a/extension/src/app/stores/createStore.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { - Action, - createStore, - PreloadedState, - Reducer, - StoreEnhancer, -} from 'redux'; - -export default function configureStore>( - reducer: Reducer, - initialState: PreloadedState | undefined, - enhance: () => StoreEnhancer -) { - return createStore(reducer, initialState, enhance()); -} diff --git a/extension/src/browser/extension/background/contextMenus.ts b/extension/src/background/contextMenus.ts similarity index 100% rename from extension/src/browser/extension/background/contextMenus.ts rename to extension/src/background/contextMenus.ts diff --git a/extension/src/browser/extension/background/index.ts b/extension/src/background/index.ts similarity index 86% rename from extension/src/browser/extension/background/index.ts rename to extension/src/background/index.ts index 165b1af0..c7236e2e 100644 --- a/extension/src/browser/extension/background/index.ts +++ b/extension/src/background/index.ts @@ -1,11 +1,9 @@ import { Store } from 'redux'; -import configureStore, { - BackgroundAction, -} from '../../../app/stores/backgroundStore'; +import configureStore, { BackgroundAction } from './store/backgroundStore'; import openDevToolsWindow, { DevToolsPosition } from './openWindow'; import { createMenu, removeMenu } from './contextMenus'; import syncOptions from '../options/syncOptions'; -import { BackgroundState } from '../../../app/reducers/background'; +import { BackgroundState } from './store/backgroundReducer'; declare global { interface Window { diff --git a/extension/src/browser/extension/background/logging.ts b/extension/src/background/logging.ts similarity index 100% rename from extension/src/browser/extension/background/logging.ts rename to extension/src/background/logging.ts diff --git a/extension/src/browser/extension/background/openWindow.ts b/extension/src/background/openWindow.ts similarity index 100% rename from extension/src/browser/extension/background/openWindow.ts rename to extension/src/background/openWindow.ts diff --git a/extension/src/app/middlewares/api.ts b/extension/src/background/store/apiMiddleware.ts similarity index 96% rename from extension/src/app/middlewares/api.ts rename to extension/src/background/store/apiMiddleware.ts index c8cb8937..fb132e1d 100644 --- a/extension/src/app/middlewares/api.ts +++ b/extension/src/background/store/apiMiddleware.ts @@ -15,28 +15,23 @@ import syncOptions, { Options, OptionsMessage, SyncOptions, -} from '../../browser/extension/options/syncOptions'; -import openDevToolsWindow, { - DevToolsPosition, -} from '../../browser/extension/background/openWindow'; -import { getReport } from '../../browser/extension/background/logging'; +} from '../../options/syncOptions'; +import openDevToolsWindow, { DevToolsPosition } from '../openWindow'; +import { getReport } from '../logging'; import { Action, Dispatch, MiddlewareAPI } from 'redux'; -import { +import type { ContentScriptToBackgroundMessage, SplitMessage, -} from '../../browser/extension/inject/contentScript'; -import { +} from '../../contentScript'; +import type { ErrorMessage, PageScriptToContentScriptMessageForwardedToMonitors, PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance, -} from '../api'; +} from '../../pageScript/api'; import { LiftedState } from '@redux-devtools/instrument'; -import { - BackgroundAction, - LiftedActionAction, -} from '../stores/backgroundStore'; -import { Position } from '../api/openWindow'; -import { BackgroundState } from '../reducers/background'; +import type { BackgroundAction, LiftedActionAction } from './backgroundStore'; +import type { Position } from '../../pageScript/api/openWindow'; +import type { BackgroundState } from './backgroundReducer'; interface TabMessageBase { readonly type: string; diff --git a/extension/src/app/reducers/background/index.ts b/extension/src/background/store/backgroundReducer.ts similarity index 84% rename from extension/src/app/reducers/background/index.ts rename to extension/src/background/store/backgroundReducer.ts index bea610c0..01ca5a02 100644 --- a/extension/src/app/reducers/background/index.ts +++ b/extension/src/background/store/backgroundReducer.ts @@ -1,6 +1,6 @@ import { combineReducers, Reducer } from 'redux'; import { instances, InstancesState } from '@redux-devtools/app'; -import { BackgroundAction } from '../../stores/backgroundStore'; +import type { BackgroundAction } from './backgroundStore'; export interface BackgroundState { readonly instances: InstancesState; diff --git a/extension/src/app/stores/backgroundStore.ts b/extension/src/background/store/backgroundStore.ts similarity index 93% rename from extension/src/app/stores/backgroundStore.ts rename to extension/src/background/store/backgroundStore.ts index 55eed9e4..da72bdd4 100644 --- a/extension/src/app/stores/backgroundStore.ts +++ b/extension/src/background/store/backgroundStore.ts @@ -5,8 +5,8 @@ import { LIFTED_ACTION, StoreActionWithoutLiftedAction, } from '@redux-devtools/app'; -import rootReducer, { BackgroundState } from '../reducers/background'; -import api, { CONNECTED, DISCONNECTED } from '../middlewares/api'; +import rootReducer, { BackgroundState } from './backgroundReducer'; +import api, { CONNECTED, DISCONNECTED } from './apiMiddleware'; interface LiftedActionActionBase { action?: DispatchAction | string | CustomAction; diff --git a/extension/src/browser/extension/chromeAPIMock.ts b/extension/src/chromeApiMock.ts similarity index 100% rename from extension/src/browser/extension/chromeAPIMock.ts rename to extension/src/chromeApiMock.ts diff --git a/extension/src/browser/extension/inject/contentScript.ts b/extension/src/contentScript/index.ts similarity index 98% rename from extension/src/browser/extension/inject/contentScript.ts rename to extension/src/contentScript/index.ts index 61c49e85..2c65ee14 100644 --- a/extension/src/browser/extension/inject/contentScript.ts +++ b/extension/src/contentScript/index.ts @@ -3,12 +3,12 @@ import { getOptionsFromBg, isAllowed, } from '../options/syncOptions'; -import { TabMessage } from '../../../app/middlewares/api'; -import { +import type { TabMessage } from '../background/store/apiMiddleware'; +import type { PageScriptToContentScriptMessage, PageScriptToContentScriptMessageWithoutDisconnect, PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance, -} from '../../../app/api'; +} from '../pageScript/api'; import { Action } from 'redux'; import { CustomAction, diff --git a/extension/src/browser/views/devpanel.pug b/extension/src/devpanel/devpanel.pug similarity index 82% rename from extension/src/browser/views/devpanel.pug rename to extension/src/devpanel/devpanel.pug index ee41747c..4aa1268d 100644 --- a/extension/src/browser/views/devpanel.pug +++ b/extension/src/devpanel/devpanel.pug @@ -1,15 +1,15 @@ -doctype html - -html - head - meta(charset='UTF-8') - title Redux DevTools - include ./includes/style.pug - style. - body { - min-height: 100px; - } - - body - #root - script(src='/devpanel.bundle.js') +doctype html + +html + head + meta(charset='UTF-8') + title Redux DevTools + include ../style.pug + style. + body { + min-height: 100px; + } + + body + #root + script(src='/devpanel.bundle.js') diff --git a/extension/src/browser/extension/devpanel/index.tsx b/extension/src/devpanel/index.tsx similarity index 91% rename from extension/src/browser/extension/devpanel/index.tsx rename to extension/src/devpanel/index.tsx index af4fbfc3..aef0e752 100644 --- a/extension/src/browser/extension/devpanel/index.tsx +++ b/extension/src/devpanel/index.tsx @@ -3,13 +3,13 @@ import { createRoot, Root } from 'react-dom/client'; import { Provider } from 'react-redux'; import { Persistor } from 'redux-persist'; import { REMOVE_INSTANCE, StoreAction } from '@redux-devtools/app'; -import App from '../../../app/containers/App'; -import configureStore from '../../../app/stores/panelStore'; +import App from '../app/App'; +import configureStore from './store/panelStore'; -import '../../views/devpanel.pug'; +import './devpanel.pug'; import { Action, Store } from 'redux'; -import { PanelMessage } from '../../../app/middlewares/api'; -import { StoreStateWithoutSocket } from '../../../app/reducers/panel'; +import type { PanelMessage } from '../background/store/apiMiddleware'; +import type { StoreStateWithoutSocket } from './store/panelReducer'; import { PersistGate } from 'redux-persist/integration/react'; const position = location.hash; diff --git a/extension/src/app/reducers/panel/index.ts b/extension/src/devpanel/store/panelReducer.ts similarity index 100% rename from extension/src/app/reducers/panel/index.ts rename to extension/src/devpanel/store/panelReducer.ts diff --git a/extension/src/app/stores/panelStore.ts b/extension/src/devpanel/store/panelStore.ts similarity index 86% rename from extension/src/app/stores/panelStore.ts rename to extension/src/devpanel/store/panelStore.ts index 873e7284..f8b8e622 100644 --- a/extension/src/app/stores/panelStore.ts +++ b/extension/src/devpanel/store/panelStore.ts @@ -2,8 +2,8 @@ import { createStore, applyMiddleware, Reducer } from 'redux'; import localForage from 'localforage'; import { persistReducer, persistStore } from 'redux-persist'; import { exportStateMiddleware, StoreAction } from '@redux-devtools/app'; -import panelDispatcher from '../middlewares/panelSync'; -import rootReducer, { StoreStateWithoutSocket } from '../reducers/panel'; +import panelDispatcher from './panelSyncMiddleware'; +import rootReducer, { StoreStateWithoutSocket } from './panelReducer'; const persistConfig = { key: 'redux-devtools', diff --git a/extension/src/app/middlewares/panelSync.ts b/extension/src/devpanel/store/panelSyncMiddleware.ts similarity index 100% rename from extension/src/app/middlewares/panelSync.ts rename to extension/src/devpanel/store/panelSyncMiddleware.ts diff --git a/extension/src/browser/views/devtools.pug b/extension/src/devtools/devtools.pug similarity index 93% rename from extension/src/browser/views/devtools.pug rename to extension/src/devtools/devtools.pug index 7a361b53..c9f56539 100644 --- a/extension/src/browser/views/devtools.pug +++ b/extension/src/devtools/devtools.pug @@ -1,10 +1,10 @@ -doctype html - -html - head - meta(charset='UTF-8') - title Redux DevTools - - body - #root - script(src='/devtools.bundle.js') +doctype html + +html + head + meta(charset='UTF-8') + title Redux DevTools + + body + #root + script(src='/devtools.bundle.js') diff --git a/extension/src/browser/extension/devtools/index.ts b/extension/src/devtools/index.ts similarity index 92% rename from extension/src/browser/extension/devtools/index.ts rename to extension/src/devtools/index.ts index de6abaaa..cdd376b6 100644 --- a/extension/src/browser/extension/devtools/index.ts +++ b/extension/src/devtools/index.ts @@ -1,4 +1,4 @@ -import '../../views/devtools.pug'; +import './devtools.pug'; function createPanel(url: string) { chrome.devtools.panels.create( diff --git a/extension/src/browser/extension/options/AllowToRunGroup.tsx b/extension/src/options/AllowToRunGroup.tsx similarity index 100% rename from extension/src/browser/extension/options/AllowToRunGroup.tsx rename to extension/src/options/AllowToRunGroup.tsx diff --git a/extension/src/browser/extension/options/ContextMenuGroup.tsx b/extension/src/options/ContextMenuGroup.tsx similarity index 100% rename from extension/src/browser/extension/options/ContextMenuGroup.tsx rename to extension/src/options/ContextMenuGroup.tsx diff --git a/extension/src/browser/extension/options/EditorGroup.tsx b/extension/src/options/EditorGroup.tsx similarity index 100% rename from extension/src/browser/extension/options/EditorGroup.tsx rename to extension/src/options/EditorGroup.tsx diff --git a/extension/src/browser/extension/options/FilterGroup.tsx b/extension/src/options/FilterGroup.tsx similarity index 97% rename from extension/src/browser/extension/options/FilterGroup.tsx rename to extension/src/options/FilterGroup.tsx index 56c050f1..792ca9f4 100644 --- a/extension/src/browser/extension/options/FilterGroup.tsx +++ b/extension/src/options/FilterGroup.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { FilterState } from '../../../app/api/filters'; +import { FilterState } from '../pageScript/api/filters'; import { OptionsProps } from './Options'; export default ({ options, saveOption }: OptionsProps) => { diff --git a/extension/src/browser/extension/options/MiscellaneousGroup.tsx b/extension/src/options/MiscellaneousGroup.tsx similarity index 100% rename from extension/src/browser/extension/options/MiscellaneousGroup.tsx rename to extension/src/options/MiscellaneousGroup.tsx diff --git a/extension/src/browser/extension/options/Options.tsx b/extension/src/options/Options.tsx similarity index 100% rename from extension/src/browser/extension/options/Options.tsx rename to extension/src/options/Options.tsx diff --git a/extension/src/browser/extension/options/index.tsx b/extension/src/options/index.tsx similarity index 95% rename from extension/src/browser/extension/options/index.tsx rename to extension/src/options/index.tsx index b344b86b..181fa1b1 100644 --- a/extension/src/browser/extension/options/index.tsx +++ b/extension/src/options/index.tsx @@ -3,7 +3,7 @@ import { createRoot } from 'react-dom/client'; import OptionsComponent from './Options'; import { Options } from './syncOptions'; -import '../../views/options.pug'; +import './options.pug'; chrome.runtime.getBackgroundPage((background) => { const syncOptions = background!.syncOptions; diff --git a/extension/src/browser/views/options.pug b/extension/src/options/options.pug similarity index 95% rename from extension/src/browser/views/options.pug rename to extension/src/options/options.pug index 6e2dda01..48192b6a 100644 --- a/extension/src/browser/views/options.pug +++ b/extension/src/options/options.pug @@ -1,93 +1,93 @@ -doctype html - -html - head - meta(charset='UTF-8') - title Redux DevTools Options - style. - body { - padding: 2px; - min-width: 380px; - } - - .option-group { - /* Reset the default fieldset styles */ - margin: initial; - border: initial; - padding: initial; - } - - .option-group + .option-group { - margin-top: 30px; - } - - .option-group__title { - /* Reset the default legend styles */ - margin: initial; - padding: initial; - - margin-bottom: 8px; - font-weight: bold; - font-size: 30px; - } - - .option + .option { - margin-top: 5px; - } - - .option__textarea { - margin-top: 2px; - width: 300px; - min-height: 50px; - } - - .option__hint { - margin-top: 2px; - font-size: 10px; - } - - .option__textarea + .option__hint { - margin-top: -2px; - } - - /* Checkbox and radio styling */ - .option_type_checkbox .option__element, - .option_type_radio .option__element { - vertical-align: bottom; - } - - .option_type_checkbox .option__label, - .option_type_radio .option__label { - margin-left: 4px; - } - - .option_type_checkbox .option__textarea, - .option_type_checkbox .option__hint, - .option_type_radio .option__textarea, - .option_type_radio .option__hint { - margin-left: 20px; - } - - - /* Checkbox styling */ - .option_type_checkbox .option__element { - /* Checkboxes in Chrome are 2px narrower than radio buttons. - These margins align them. */ - margin-left: 1px; - /* ...margin-right is 2px instead of 1px - because both radios and checkboxes have initial margin-right of 1px */ - margin-right: 2px; - } - - /* Value-based styling */ - .option_value_max-age { - margin-left: 20px; - } - - .option_value_max-age .option__element { - width: 50px; - } - - body - #root - script(src='/options.bundle.js') +doctype html + +html + head + meta(charset='UTF-8') + title Redux DevTools Options + style. + body { + padding: 2px; + min-width: 380px; + } + + .option-group { + /* Reset the default fieldset styles */ + margin: initial; + border: initial; + padding: initial; + } + + .option-group + .option-group { + margin-top: 30px; + } + + .option-group__title { + /* Reset the default legend styles */ + margin: initial; + padding: initial; + + margin-bottom: 8px; + font-weight: bold; + font-size: 30px; + } + + .option + .option { + margin-top: 5px; + } + + .option__textarea { + margin-top: 2px; + width: 300px; + min-height: 50px; + } + + .option__hint { + margin-top: 2px; + font-size: 10px; + } + + .option__textarea + .option__hint { + margin-top: -2px; + } + + /* Checkbox and radio styling */ + .option_type_checkbox .option__element, + .option_type_radio .option__element { + vertical-align: bottom; + } + + .option_type_checkbox .option__label, + .option_type_radio .option__label { + margin-left: 4px; + } + + .option_type_checkbox .option__textarea, + .option_type_checkbox .option__hint, + .option_type_radio .option__textarea, + .option_type_radio .option__hint { + margin-left: 20px; + } + + + /* Checkbox styling */ + .option_type_checkbox .option__element { + /* Checkboxes in Chrome are 2px narrower than radio buttons. + These margins align them. */ + margin-left: 1px; + /* ...margin-right is 2px instead of 1px + because both radios and checkboxes have initial margin-right of 1px */ + margin-right: 2px; + } + + /* Value-based styling */ + .option_value_max-age { + margin-left: 20px; + } + + .option_value_max-age .option__element { + width: 50px; + } + + body + #root + script(src='/options.bundle.js') diff --git a/extension/src/browser/extension/options/syncOptions.ts b/extension/src/options/syncOptions.ts similarity index 98% rename from extension/src/browser/extension/options/syncOptions.ts rename to extension/src/options/syncOptions.ts index ede4b150..e523c598 100644 --- a/extension/src/browser/extension/options/syncOptions.ts +++ b/extension/src/options/syncOptions.ts @@ -1,4 +1,4 @@ -import { FilterState, FilterStateValue } from '../../../app/api/filters'; +import { FilterState, FilterStateValue } from '../pageScript/api/filters'; export interface Options { readonly useEditor: number; diff --git a/extension/src/app/service/Monitor.ts b/extension/src/pageScript/Monitor.ts similarity index 100% rename from extension/src/app/service/Monitor.ts rename to extension/src/pageScript/Monitor.ts diff --git a/extension/src/app/api/filters.ts b/extension/src/pageScript/api/filters.ts similarity index 100% rename from extension/src/app/api/filters.ts rename to extension/src/pageScript/api/filters.ts diff --git a/extension/src/app/api/generateInstanceId.ts b/extension/src/pageScript/api/generateInstanceId.ts similarity index 100% rename from extension/src/app/api/generateInstanceId.ts rename to extension/src/pageScript/api/generateInstanceId.ts diff --git a/extension/src/app/api/importState.ts b/extension/src/pageScript/api/importState.ts similarity index 95% rename from extension/src/app/api/importState.ts rename to extension/src/pageScript/api/importState.ts index 70bda05e..ae818149 100644 --- a/extension/src/app/api/importState.ts +++ b/extension/src/pageScript/api/importState.ts @@ -1,9 +1,6 @@ import jsan from 'jsan'; import { immutableSerialize } from '@redux-devtools/serialize'; -import { - Config, - SerializeWithImmutable, -} from '../../browser/extension/inject/pageScript'; +import type { Config, SerializeWithImmutable } from '../index'; import Immutable from 'immutable'; import { LiftedState } from '@redux-devtools/instrument'; import { Action } from 'redux'; diff --git a/extension/src/app/api/index.ts b/extension/src/pageScript/api/index.ts similarity index 99% rename from extension/src/app/api/index.ts rename to extension/src/pageScript/api/index.ts index e0e6c3a9..ed062fe9 100644 --- a/extension/src/app/api/index.ts +++ b/extension/src/pageScript/api/index.ts @@ -5,15 +5,15 @@ import { getActionsArray, getLocalFilter } from '@redux-devtools/utils'; import { isFiltered, PartialLiftedState } from './filters'; import importState from './importState'; import generateId from './generateInstanceId'; -import { Config } from '../../browser/extension/inject/pageScript'; +import type { Config } from '../index'; import { Action } from 'redux'; import { LiftedState, PerformAction } from '@redux-devtools/instrument'; import { LibConfig } from '@redux-devtools/app'; -import { +import type { ContentScriptToPageScriptMessage, ListenerMessage, -} from '../../browser/extension/inject/contentScript'; -import { Position } from './openWindow'; +} from '../../contentScript'; +import type { Position } from './openWindow'; const listeners: { [instanceId: string]: diff --git a/extension/src/app/api/notifyErrors.ts b/extension/src/pageScript/api/notifyErrors.ts similarity index 100% rename from extension/src/app/api/notifyErrors.ts rename to extension/src/pageScript/api/notifyErrors.ts diff --git a/extension/src/app/api/openWindow.ts b/extension/src/pageScript/api/openWindow.ts similarity index 86% rename from extension/src/app/api/openWindow.ts rename to extension/src/pageScript/api/openWindow.ts index 51f9d145..53704b58 100644 --- a/extension/src/app/api/openWindow.ts +++ b/extension/src/pageScript/api/openWindow.ts @@ -1,5 +1,5 @@ import { Action } from 'redux'; -import { PageScriptToContentScriptMessage } from './index'; +import type { PageScriptToContentScriptMessage } from './index'; export type Position = 'left' | 'right' | 'bottom' | 'panel' | 'remote'; diff --git a/extension/src/app/stores/enhancerStore.ts b/extension/src/pageScript/enhancerStore.ts similarity index 93% rename from extension/src/app/stores/enhancerStore.ts rename to extension/src/pageScript/enhancerStore.ts index 532cfccb..5961292f 100644 --- a/extension/src/app/stores/enhancerStore.ts +++ b/extension/src/pageScript/enhancerStore.ts @@ -1,7 +1,7 @@ import { Action, compose, Reducer, StoreEnhancerStoreCreator } from 'redux'; import { instrument } from '@redux-devtools/instrument'; import { persistState } from '@redux-devtools/core'; -import { ConfigWithExpandedMaxAge } from '../../browser/extension/inject/pageScript'; +import type { ConfigWithExpandedMaxAge } from './index'; export function getUrlParam(key: string) { const matches = window.location.href.match( diff --git a/extension/src/browser/extension/inject/pageScript.ts b/extension/src/pageScript/index.ts similarity index 96% rename from extension/src/browser/extension/inject/pageScript.ts rename to extension/src/pageScript/index.ts index a0d48399..4b6bfb35 100644 --- a/extension/src/browser/extension/inject/pageScript.ts +++ b/extension/src/pageScript/index.ts @@ -27,19 +27,19 @@ import { LibConfig, Features, } from '@redux-devtools/app'; -import configureStore, { getUrlParam } from '../../../app/stores/enhancerStore'; +import configureStore, { getUrlParam } from './enhancerStore'; import { isAllowed, Options } from '../options/syncOptions'; -import Monitor from '../../../app/service/Monitor'; +import Monitor from './Monitor'; import { noFiltersApplied, isFiltered, filterState, startingFrom, -} from '../../../app/api/filters'; -import notifyErrors from '../../../app/api/notifyErrors'; -import importState from '../../../app/api/importState'; -import openWindow, { Position } from '../../../app/api/openWindow'; -import generateId from '../../../app/api/generateInstanceId'; +} from './api/filters'; +import notifyErrors from './api/notifyErrors'; +import importState from './api/importState'; +import openWindow, { Position } from './api/openWindow'; +import generateId from './api/generateInstanceId'; import { toContentScript, sendMessage, @@ -51,8 +51,8 @@ import { Serialize, StructuralPerformAction, ConnectResponse, -} from '../../../app/api'; -import { ContentScriptToPageScriptMessage } from './contentScript'; +} from './api'; +import type { ContentScriptToPageScriptMessage } from '../contentScript'; type EnhancedStoreWithInitialDispatch< S, @@ -539,10 +539,14 @@ function __REDUX_DEVTOOLS_EXTENSION__>( return next(reducer_, initialState_); } - store = stores[instanceId] = configureStore(next, monitor.reducer, { - ...config, - maxAge: getMaxAge as any, - })(reducer_, initialState_) as any; + store = stores[instanceId] = configureStore( + next as StoreEnhancerStoreCreator, + monitor.reducer, + { + ...config, + maxAge: getMaxAge as any, + } + )(reducer_, initialState_) as any; if (isInIframe()) setTimeout(init, 3000); else init(); diff --git a/extension/src/browser/extension/inject/pageScriptWrap.ts b/extension/src/pageScriptWrap.ts similarity index 100% rename from extension/src/browser/extension/inject/pageScriptWrap.ts rename to extension/src/pageScriptWrap.ts diff --git a/extension/src/browser/extension/window/remote.tsx b/extension/src/remote/index.tsx similarity index 96% rename from extension/src/browser/extension/window/remote.tsx rename to extension/src/remote/index.tsx index f91c372a..af100aca 100644 --- a/extension/src/browser/extension/window/remote.tsx +++ b/extension/src/remote/index.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { createRoot } from 'react-dom/client'; import { Root } from '@redux-devtools/app'; -import '../../views/remote.pug'; +import './remote.pug'; chrome.storage.local.get( { diff --git a/extension/src/browser/views/remote.pug b/extension/src/remote/remote.pug similarity index 78% rename from extension/src/browser/views/remote.pug rename to extension/src/remote/remote.pug index c70bc7f5..259bd8f4 100644 --- a/extension/src/browser/views/remote.pug +++ b/extension/src/remote/remote.pug @@ -1,11 +1,11 @@ -doctype html - -html - head - meta(charset='UTF-8') - title RemoteDev - include ./includes/style.pug - - body - #root - script(src='/remote.bundle.js') +doctype html + +html + head + meta(charset='UTF-8') + title RemoteDev + include ../style.pug + + body + #root + script(src='/remote.bundle.js') diff --git a/extension/src/browser/views/includes/style.pug b/extension/src/style.pug similarity index 100% rename from extension/src/browser/views/includes/style.pug rename to extension/src/style.pug diff --git a/extension/src/browser/extension/window/index.tsx b/extension/src/window/index.tsx similarity index 84% rename from extension/src/browser/extension/window/index.tsx rename to extension/src/window/index.tsx index 41b72b08..c74e33a1 100644 --- a/extension/src/browser/extension/window/index.tsx +++ b/extension/src/window/index.tsx @@ -3,11 +3,11 @@ import { createRoot } from 'react-dom/client'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import { UPDATE_STATE } from '@redux-devtools/app'; -import App from '../../../app/containers/App'; -import configureStore from '../../../app/stores/windowStore'; -import { MonitorMessage } from '../../../app/middlewares/api'; +import App from '../app/App'; +import configureStore from './store/windowStore'; +import type { MonitorMessage } from '../background/store/apiMiddleware'; -import '../../views/window.pug'; +import './window.pug'; const position = location.hash; diff --git a/extension/src/app/middlewares/instanceSelector.ts b/extension/src/window/store/instanceSelectorMiddleware.ts similarity index 100% rename from extension/src/app/middlewares/instanceSelector.ts rename to extension/src/window/store/instanceSelectorMiddleware.ts diff --git a/extension/src/app/reducers/window/instances.ts b/extension/src/window/store/instancesReducer.ts similarity index 94% rename from extension/src/app/reducers/window/instances.ts rename to extension/src/window/store/instancesReducer.ts index 6ef0cad3..cc39478b 100644 --- a/extension/src/app/reducers/window/instances.ts +++ b/extension/src/window/store/instancesReducer.ts @@ -6,10 +6,10 @@ import { LIFTED_ACTION, SET_PERSIST, } from '@redux-devtools/app'; -import { +import type { ExpandedUpdateStateAction, WindowStoreAction, -} from '../../stores/windowStore'; +} from './windowStore'; export default function instances( state = instancesInitialState, diff --git a/extension/src/app/reducers/window/index.ts b/extension/src/window/store/windowReducer.ts similarity index 80% rename from extension/src/app/reducers/window/index.ts rename to extension/src/window/store/windowReducer.ts index 3ec4ddf3..9a14cd3b 100644 --- a/extension/src/app/reducers/window/index.ts +++ b/extension/src/window/store/windowReducer.ts @@ -9,8 +9,8 @@ import { theme, StoreState, } from '@redux-devtools/app'; -import instances from './instances'; -import { WindowStoreAction } from '../../stores/windowStore'; +import instances from './instancesReducer'; +import type { WindowStoreAction } from './windowStore'; const rootReducer: Reducer = combineReducers({ diff --git a/extension/src/app/stores/windowStore.ts b/extension/src/window/store/windowStore.ts similarity index 81% rename from extension/src/app/stores/windowStore.ts rename to extension/src/window/store/windowStore.ts index 186203ab..f63002ae 100644 --- a/extension/src/app/stores/windowStore.ts +++ b/extension/src/window/store/windowStore.ts @@ -17,12 +17,15 @@ import { StoreState, UpdateStateAction, } from '@redux-devtools/app'; -import syncStores from '../middlewares/windowSync'; -import instanceSelector from '../middlewares/instanceSelector'; -import rootReducer from '../reducers/window'; -import { BackgroundState } from '../reducers/background'; -import { BackgroundAction } from './backgroundStore'; -import { EmptyUpdateStateAction, NAAction } from '../middlewares/api'; +import syncStores from './windowSyncMiddleware'; +import instanceSelector from './instanceSelectorMiddleware'; +import rootReducer from './windowReducer'; +import type { BackgroundState } from '../../background/store/backgroundReducer'; +import type { BackgroundAction } from '../../background/store/backgroundStore'; +import type { + EmptyUpdateStateAction, + NAAction, +} from '../../background/store/apiMiddleware'; export interface ExpandedUpdateStateAction extends UpdateStateAction { readonly instances: InstancesState; diff --git a/extension/src/app/middlewares/windowSync.ts b/extension/src/window/store/windowSyncMiddleware.ts similarity index 80% rename from extension/src/app/middlewares/windowSync.ts rename to extension/src/window/store/windowSyncMiddleware.ts index e6c2c599..6f9f9cf7 100644 --- a/extension/src/app/middlewares/windowSync.ts +++ b/extension/src/window/store/windowSyncMiddleware.ts @@ -7,9 +7,9 @@ import { UPDATE_STATE, } from '@redux-devtools/app'; import { Dispatch, MiddlewareAPI, Store } from 'redux'; -import { BackgroundState } from '../reducers/background'; -import { WindowStoreAction } from '../stores/windowStore'; -import { BackgroundAction } from '../stores/backgroundStore'; +import type { BackgroundState } from '../../background/store/backgroundReducer'; +import type { WindowStoreAction } from './windowStore'; +import type { BackgroundAction } from '../../background/store/backgroundStore'; const syncStores = (baseStore: Store) => diff --git a/extension/src/browser/views/window.pug b/extension/src/window/window.pug similarity index 89% rename from extension/src/browser/views/window.pug rename to extension/src/window/window.pug index 4ea83033..630a3edf 100644 --- a/extension/src/browser/views/window.pug +++ b/extension/src/window/window.pug @@ -1,17 +1,17 @@ -doctype html - -html - head - meta(charset='UTF-8') - title Redux DevTools - include ./includes/style.pug - - body - #root - div(style='position: relative') - img( - src='/img/loading.svg', - height=300, width=350, - style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;' - ) - script(src='/window.bundle.js') +doctype html + +html + head + meta(charset='UTF-8') + title Redux DevTools + include ../style.pug + + body + #root + div(style='position: relative') + img( + src='/img/loading.svg', + height=300, width=350, + style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;' + ) + script(src='/window.bundle.js') diff --git a/extension/test/app/containers/App.spec.js b/extension/test/app/containers/App.spec.js index 971789d7..26725311 100644 --- a/extension/test/app/containers/App.spec.js +++ b/extension/test/app/containers/App.spec.js @@ -1,8 +1,8 @@ import React from 'react'; import { render, screen, within } from '@testing-library/react'; import { Provider } from 'react-redux'; -import configureStore from '../../../src/app/stores/windowStore'; -import App from '../../../src/app/containers/App'; +import configureStore from '../../../src/window/store/windowStore'; +import App from '../../../src/app/App'; Object.defineProperty(window, 'matchMedia', { writable: true, @@ -18,7 +18,7 @@ Object.defineProperty(window, 'matchMedia', { })), }); -const { store } = configureStore(store); +const { store } = configureStore(); describe('App container', () => { it("should render inspector monitor's component", () => { diff --git a/extension/test/app/inject/api.spec.js b/extension/test/app/inject/api.spec.js index 0b30f33e..0a06d321 100644 --- a/extension/test/app/inject/api.spec.js +++ b/extension/test/app/inject/api.spec.js @@ -1,5 +1,5 @@ import { insertScript, listenMessage } from '../../utils/inject'; -import '../../../src/browser/extension/inject/pageScript'; +import '../../../src/pageScript'; describe('API', () => { it('should get window.__REDUX_DEVTOOLS_EXTENSION__ function', () => { diff --git a/extension/test/app/inject/enhancer.spec.js b/extension/test/app/inject/enhancer.spec.js index 49229474..c4ce2b88 100644 --- a/extension/test/app/inject/enhancer.spec.js +++ b/extension/test/app/inject/enhancer.spec.js @@ -1,7 +1,7 @@ import '@babel/polyfill'; import { createStore, compose } from 'redux'; import { insertScript, listenMessage } from '../../utils/inject'; -import '../../../src/browser/extension/inject/pageScript'; +import '../../../src/pageScript'; function counter(state = 0, action) { switch (action.type) { diff --git a/extension/webpack/base.config.js b/extension/webpack/base.config.js index b320b890..1f3290ce 100644 --- a/extension/webpack/base.config.js +++ b/extension/webpack/base.config.js @@ -3,21 +3,30 @@ import webpack from 'webpack'; import CopyPlugin from 'copy-webpack-plugin'; import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin'; -const extpath = path.join(__dirname, '../src/browser/extension/'); -const mock = `${extpath}chromeAPIMock`; - const baseConfig = (params) => ({ // devtool: 'source-map', mode: params.mode, entry: params.input || { - background: [mock, `${extpath}background/index`], - options: [mock, `${extpath}options/index`], - window: [`${extpath}window/index`], - remote: [`${extpath}window/remote`], - devpanel: [mock, `${extpath}devpanel/index`], - devtools: [`${extpath}devtools/index`], - content: [mock, `${extpath}inject/contentScript`], - pagewrap: [`${extpath}inject/pageScriptWrap`], + background: [ + path.resolve(__dirname, '../src/chromeApiMock'), + path.resolve(__dirname, '../src/background/index'), + ], + options: [ + path.resolve(__dirname, '../src/chromeApiMock'), + path.resolve(__dirname, '../src/options/index'), + ], + window: [path.resolve(__dirname, '../src/window/index')], + remote: [path.resolve(__dirname, '../src/remote/index')], + devpanel: [ + path.resolve(__dirname, '../src/chromeApiMock'), + path.resolve(__dirname, '../src/devpanel/index'), + ], + devtools: [path.resolve(__dirname, '../src/devtools/index')], + content: [ + path.resolve(__dirname, '../src/chromeApiMock'), + path.resolve(__dirname, '../src/contentScript/index'), + ], + pagewrap: [path.resolve(__dirname, '../src/pageScriptWrap')], ...params.inputExtra, }, output: { diff --git a/extension/webpack/dev.config.babel.js b/extension/webpack/dev.config.babel.js index cca1fa78..6abb9178 100644 --- a/extension/webpack/dev.config.babel.js +++ b/extension/webpack/dev.config.babel.js @@ -5,7 +5,7 @@ import baseConfig from './base.config'; let config = baseConfig({ mode: 'development', inputExtra: { - page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')], + page: [path.join(__dirname, '../src/pageScript')], }, output: { path: path.join(__dirname, '../dev') }, globals: { @@ -15,10 +15,7 @@ let config = baseConfig({ }, plugins: [new webpack.NoEmitOnErrorsPlugin()], copy: true, - manifestJsonPath: path.join( - __dirname, - '../src/browser/extension/manifest.json' - ), + manifestJsonPath: path.join(__dirname, '../chrome/manifest.json'), }); config.watch = true; diff --git a/extension/webpack/prod.config.babel.js b/extension/webpack/prod.config.babel.js index ff04e735..c29e9924 100644 --- a/extension/webpack/prod.config.babel.js +++ b/extension/webpack/prod.config.babel.js @@ -4,7 +4,7 @@ import baseConfig from './base.config'; export default baseConfig({ mode: 'production', inputExtra: { - page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')], + page: [path.join(__dirname, '../src/pageScript')], }, output: { path: path.join(__dirname, '../build/extension') }, globals: { @@ -13,8 +13,5 @@ export default baseConfig({ }, }, copy: true, - manifestJsonPath: path.join( - __dirname, - '../src/browser/extension/manifest.json' - ), + manifestJsonPath: path.join(__dirname, '../chrome/manifest.json'), }); diff --git a/extension/webpack/prod.firefox.config.babel.js b/extension/webpack/prod.firefox.config.babel.js index 54fdf8b9..f14b8d35 100644 --- a/extension/webpack/prod.firefox.config.babel.js +++ b/extension/webpack/prod.firefox.config.babel.js @@ -10,8 +10,5 @@ export default baseConfig({ }, }, copy: true, - manifestJsonPath: path.join( - __dirname, - '../src/browser/firefox/manifest.json' - ), + manifestJsonPath: path.join(__dirname, '../firefox/manifest.json'), }); diff --git a/extension/webpack/wrap.config.babel.js b/extension/webpack/wrap.config.babel.js index 25b57d11..ced8a881 100644 --- a/extension/webpack/wrap.config.babel.js +++ b/extension/webpack/wrap.config.babel.js @@ -4,7 +4,7 @@ import baseConfig from './base.config'; export default baseConfig({ mode: 'production', input: { - page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')], + page: [path.join(__dirname, '../src/pageScript')], }, output: { path: path.join(__dirname, '../build/tmp') }, globals: { diff --git a/package.json b/package.json index dba12736..3baf32d1 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,21 @@ { "private": true, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@changesets/cli": "^2.24.2", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@changesets/cli": "^2.25.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "prettier": "2.7.1", - "typescript": "~4.7.4", - "nx": "^14.5.4", - "@nrwl/nx-cloud": "^14.3.0" + "typescript": "~4.8.4", + "nx": "^15.0.0", + "@nrwl/nx-cloud": "^15.0.0" }, "scripts": { "format": "prettier --write .", @@ -38,7 +38,7 @@ "packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-slider-monitor/examples/todomvc" ], - "packageManager": "pnpm@7.9.0", + "packageManager": "pnpm@7.13.5", "pnpm": { "overrides": { "@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process" diff --git a/packages/d3-state-visualizer/examples/tree/package.json b/packages/d3-state-visualizer/examples/tree/package.json index c9271652..f513ba16 100644 --- a/packages/d3-state-visualizer/examples/tree/package.json +++ b/packages/d3-state-visualizer/examples/tree/package.json @@ -29,22 +29,22 @@ "map2tree": "^2.1.0" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.47", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index 4252f0a9..a031825f 100644 --- a/packages/d3-state-visualizer/package.json +++ b/packages/d3-state-visualizer/package.json @@ -42,7 +42,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/d3": "^3.5.47", "d3": "^3.5.17", "d3tooltip": "^2.1.0", @@ -51,26 +51,26 @@ "ramda": "^0.28.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.2", - "@rollup/plugin-node-resolve": "^13.3.0", - "@types/node": "^16.11.47", - "@types/ramda": "^0.28.15", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@rollup/plugin-babel": "^6.0.0", + "@rollup/plugin-commonjs": "^23.0.0", + "@rollup/plugin-node-resolve": "^15.0.0", + "@rollup/plugin-terser": "^0.1.0", + "@types/node": "^18.11.7", + "@types/ramda": "^0.28.16", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.77.3", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.1", + "rollup": "^3.2.3", + "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", - "typescript": "~4.7.4" + "typescript": "~4.8.4" } } diff --git a/packages/d3-state-visualizer/rollup.config.js b/packages/d3-state-visualizer/rollup.config.mjs similarity index 96% rename from packages/d3-state-visualizer/rollup.config.js rename to packages/d3-state-visualizer/rollup.config.mjs index 70ce4df1..e144a1bb 100644 --- a/packages/d3-state-visualizer/rollup.config.js +++ b/packages/d3-state-visualizer/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index 352fd7eb..1e91221a 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -38,33 +38,33 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "ramda": "^0.28.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.2", - "@rollup/plugin-node-resolve": "^13.3.0", + "@rollup/plugin-babel": "^6.0.0", + "@rollup/plugin-commonjs": "^23.0.0", + "@rollup/plugin-node-resolve": "^15.0.0", + "@rollup/plugin-terser": "^0.1.0", "@types/d3": "^3.5.47", - "@types/node": "^16.11.47", - "@types/ramda": "^0.28.15", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", + "@types/node": "^18.11.7", + "@types/ramda": "^0.28.16", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "d3": "^3.5.17", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.77.3", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.1", + "rollup": "^3.2.3", + "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@types/d3": "^3.5.47", diff --git a/packages/d3tooltip/rollup.config.js b/packages/d3tooltip/rollup.config.mjs similarity index 96% rename from packages/d3tooltip/rollup.config.js rename to packages/d3tooltip/rollup.config.mjs index 6a442f22..b2b9e71c 100644 --- a/packages/d3tooltip/rollup.config.js +++ b/packages/d3tooltip/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/map2tree/jest.config.js b/packages/map2tree/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/map2tree/jest.config.js +++ b/packages/map2tree/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index d5b38f2e..84731f8c 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -42,35 +42,35 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "lodash": "^4.17.21" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.2", - "@rollup/plugin-node-resolve": "^13.3.0", - "@types/jest": "^27.5.2", - "@types/lodash": "^4.14.182", - "@types/node": "^16.11.47", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@rollup/plugin-babel": "^6.0.0", + "@rollup/plugin-commonjs": "^23.0.0", + "@rollup/plugin-node-resolve": "^15.0.0", + "@rollup/plugin-terser": "^0.1.0", + "@types/jest": "^29.2.0", + "@types/lodash": "^4.14.186", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", + "eslint-plugin-jest": "^27.1.2", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "rimraf": "^3.0.2", - "rollup": "^2.77.3", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.1", - "ts-jest": "^27.1.5", + "rollup": "^3.2.3", + "rollup-plugin-typescript2": "^0.34.1", + "ts-jest": "^29.0.3", "tslib": "^2.4.0", - "typescript": "~4.7.4" + "typescript": "~4.8.4" } } diff --git a/packages/map2tree/rollup.config.js b/packages/map2tree/rollup.config.mjs similarity index 95% rename from packages/map2tree/rollup.config.js rename to packages/map2tree/rollup.config.mjs index f977bb7c..d7a30f91 100644 --- a/packages/map2tree/rollup.config.js +++ b/packages/map2tree/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/react-base16-styling/jest.config.js b/packages/react-base16-styling/jest.config.js index f0ecd734..dcef0803 100644 --- a/packages/react-base16-styling/jest.config.js +++ b/packages/react-base16-styling/jest.config.js @@ -1,9 +1,7 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-base16-styling/package.json b/packages/react-base16-styling/package.json index 905ac686..12ce46b7 100644 --- a/packages/react-base16-styling/package.json +++ b/packages/react-base16-styling/package.json @@ -39,32 +39,33 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/base16": "^1.0.2", - "@types/lodash": "^4.14.182", + "@types/lodash": "^4.14.186", "base16": "^1.0.0", "color": "^4.2.3", - "csstype": "^3.1.0", + "csstype": "^3.1.1", "lodash.curry": "^4.1.1" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/color": "^3.0.3", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash.curry": "^4.1.7", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" } } diff --git a/packages/react-dock/demo/package.json b/packages/react-dock/demo/package.json index 30e08670..8fe80c98 100644 --- a/packages/react-dock/demo/package.json +++ b/packages/react-dock/demo/package.json @@ -14,33 +14,33 @@ "react-bootstrap": "^2.5.0", "react-dock": "^0.6.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/react-dock/jest.config.js b/packages/react-dock/jest.config.js index f0ecd734..dcef0803 100644 --- a/packages/react-dock/jest.config.js +++ b/packages/react-dock/jest.config.js @@ -1,9 +1,7 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-dock/package.json b/packages/react-dock/package.json index 5b6443b6..5f58fd36 100644 --- a/packages/react-dock/package.json +++ b/packages/react-dock/package.json @@ -39,37 +39,38 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", - "@types/lodash": "^4.14.182", + "@babel/runtime": "^7.19.4", + "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "lodash.debounce": "^4.0.8", "prop-types": "^15.8.1" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/react-json-tree/examples/package.json b/packages/react-json-tree/examples/package.json index f4bb4725..283e3b4d 100644 --- a/packages/react-json-tree/examples/package.json +++ b/packages/react-json-tree/examples/package.json @@ -26,27 +26,27 @@ "react-json-tree": "^0.17.0" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/react-json-tree/jest.config.js b/packages/react-json-tree/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/react-json-tree/jest.config.js +++ b/packages/react-json-tree/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index 801e5b1f..39ede4a5 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -45,44 +45,44 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", - "@types/lodash": "^4.14.182", + "@babel/runtime": "^7.19.4", + "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "prop-types": "^15.8.1", "react-base16-styling": "^0.9.1" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.2", - "@rollup/plugin-node-resolve": "^13.3.0", - "@types/jest": "^27.5.2", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@rollup/plugin-babel": "^6.0.0", + "@rollup/plugin-commonjs": "^23.0.0", + "@rollup/plugin-node-resolve": "^15.0.0", + "@rollup/plugin-terser": "^0.1.0", + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.77.3", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.1", - "ts-jest": "^27.1.5", + "rollup": "^3.2.3", + "rollup-plugin-typescript2": "^0.34.1", + "ts-jest": "^29.0.3", "tslib": "^2.4.0", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/react-json-tree/rollup.config.js b/packages/react-json-tree/rollup.config.mjs similarity index 96% rename from packages/react-json-tree/rollup.config.js rename to packages/react-json-tree/rollup.config.mjs index 8d2e2555..de6c3688 100644 --- a/packages/react-json-tree/rollup.config.js +++ b/packages/react-json-tree/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/redux-devtools-app/jest.config.js b/packages/redux-devtools-app/jest.config.js index 2aaa8218..2bef3a04 100644 --- a/packages/redux-devtools-app/jest.config.js +++ b/packages/redux-devtools-app/jest.config.js @@ -5,9 +5,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-app/jestResolver.js b/packages/redux-devtools-app/jestResolver.js new file mode 100644 index 00000000..8e066aa4 --- /dev/null +++ b/packages/redux-devtools-app/jestResolver.js @@ -0,0 +1,15 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + if (pkg.name === 'uuid' && pkg.version.startsWith('8.')) { + delete pkg.exports; + delete pkg.module; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index f4cddf52..145f722f 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -29,9 +29,9 @@ "build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs", "build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm", "build:types": "tsc --emitDeclarationOnly", - "build:web": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env platform=web --progress", - "build:umd": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --progress --config webpack.config.umd.ts", - "build:umd:min": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env production --progress --config webpack.config.umd.ts", + "build:web": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env platform=web", + "build:umd": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --config webpack.config.umd.ts", + "build:umd:min": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env production --config webpack.config.umd.ts", "clean": "rimraf build lib umd", "test": "jest", "lint": "eslint . --ext .ts,.tsx", @@ -40,7 +40,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/chart-monitor": "^3.0.0", "@redux-devtools/core": "^3.13.0", "@redux-devtools/inspector-monitor": "^3.0.0", @@ -50,7 +50,7 @@ "@redux-devtools/rtk-query-monitor": "^3.0.0", "@redux-devtools/slider-monitor": "^4.0.0", "@redux-devtools/ui": "^1.3.0", - "@reduxjs/toolkit": "^1.8.4", + "@reduxjs/toolkit": "^1.8.6", "@types/prop-types": "^15.7.5", "d3-state-visualizer": "^1.6.0", "javascript-stringify": "^2.1.0", @@ -59,66 +59,67 @@ "localforage": "^1.10.0", "lodash": "^4.17.21", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "redux-persist": "^6.0.0", - "socketcluster-client": "^16.1.1" + "socketcluster-client": "^17.1.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@rjsf/core": "^4.2.3", "@testing-library/jest-dom": "^5.16.5", - "@testing-library/react": "^13.3.0", - "@types/jest": "^27.5.2", + "@testing-library/react": "^13.4.0", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", "@types/json-schema": "^7.0.11", - "@types/lodash": "^4.14.182", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/lodash": "^4.14.186", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.26", "@types/testing-library__jest-dom": "^5.14.5", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", - "html-loader": "^4.1.0", + "html-loader": "^4.2.0", "html-webpack-plugin": "^5.5.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "path-browserify": "^1.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", "rimraf": "^3.0.2", "style-loader": "^3.3.1", - "styled-components": "^5.3.5", - "ts-jest": "^27.1.5", + "styled-components": "^5.3.6", + "ts-jest": "^29.0.3", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/styled-components": "^5.1.26", "react": "^16.3.0 || ^17.0.0 || ^18.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" } } diff --git a/packages/redux-devtools-chart-monitor/package.json b/packages/redux-devtools-chart-monitor/package.json index d0ff0f6e..2ddeb740 100644 --- a/packages/redux-devtools-chart-monitor/package.json +++ b/packages/redux-devtools-chart-monitor/package.json @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", "d3-state-visualizer": "^1.6.0", @@ -48,25 +48,25 @@ "redux-devtools-themes": "^1.0.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-cli/jest.config.js b/packages/redux-devtools-cli/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-cli/jest.config.js +++ b/packages/redux-devtools-cli/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index da807af3..a592b855 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -41,57 +41,57 @@ }, "dependencies": { "@redux-devtools/app": "^2.1.3", - "@types/react": "^18.0.17", - "apollo-server-express": "^3.10.1", - "body-parser": "^1.20.0", + "@types/react": "^18.0.21", + "apollo-server-express": "^3.10.3", + "body-parser": "^1.20.1", "chalk": "^4.1.2", "cors": "^2.8.5", "cross-spawn": "^7.0.3", - "electron": "^20.0.2", - "express": "^4.18.1", + "electron": "^21.1.1", + "express": "^4.18.2", "getport": "^0.1.0", - "graphql": "^16.5.0", - "knex": "^2.2.0", + "graphql": "^16.6.0", + "knex": "^2.3.0", "lodash": "^4.17.21", - "minimist": "^1.2.6", + "minimist": "^1.2.7", "morgan": "^1.10.0", "open": "^8.4.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", - "semver": "^7.3.7", - "socketcluster-server": "^16.2.1", - "sqlite3": "^5.0.11", - "styled-components": "^5.3.5", - "uuid": "^8.3.2" + "semver": "^7.3.8", + "socketcluster-server": "^17.2.0", + "sqlite3": "^5.1.2", + "styled-components": "^5.3.6", + "uuid": "^9.0.0" }, "devDependencies": { "@types/body-parser": "^1.19.2", "@types/cors": "^2.8.12", "@types/cross-spawn": "^6.0.2", - "@types/express": "^4.17.13", - "@types/jest": "^27.5.2", - "@types/lodash": "^4.14.182", + "@types/express": "^4.17.14", + "@types/jest": "^29.2.0", + "@types/lodash": "^4.14.186", "@types/minimist": "^1.2.2", "@types/morgan": "^1.9.3", - "@types/node": "^16.11.47", + "@types/node": "^18.11.7", "@types/semver": "^7.3.12", "@types/socketcluster-client": "^16.0.0", "@types/socketcluster-server": "^16.1.0", "@types/styled-components": "^5.1.26", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", "ncp": "^2.0.0", "rimraf": "^3.0.2", - "socketcluster-client": "^16.1.1", - "supertest": "^6.2.4", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "socketcluster-client": "^17.1.0", + "supertest": "^6.3.0", + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" } } diff --git a/packages/redux-devtools-dock-monitor/package.json b/packages/redux-devtools-dock-monitor/package.json index 589f7235..9774fa37 100644 --- a/packages/redux-devtools-dock-monitor/package.json +++ b/packages/redux-devtools-dock-monitor/package.json @@ -41,33 +41,33 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/prop-types": "^15.7.5", "parse-key": "^0.2.1", "prop-types": "^15.8.1", "react-dock": "^0.6.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@types/parse-key": "^0.2.0", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-extension/package.json b/packages/redux-devtools-extension/package.json index e3448910..ecb566c0 100644 --- a/packages/redux-devtools-extension/package.json +++ b/packages/redux-devtools-extension/package.json @@ -29,23 +29,23 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "immutable": "^4.1.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "redux": "^3.1.0 || ^4.0.0" diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index 7a264b90..fd20c1ad 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -20,40 +20,40 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", - "react-redux": "^8.0.2", - "react-router-dom": "^6.3.0", + "react-redux": "^8.0.4", + "react-router-dom": "^6.4.2", "redux": "^4.2.0", "redux-logger": "^3.0.6", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.26", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js b/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js +++ b/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js b/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-inspector-monitor-test-tab/package.json b/packages/redux-devtools-inspector-monitor-test-tab/package.json index 89ab6458..c7c9d45e 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/package.json @@ -43,7 +43,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", "@types/prop-types": "^15.7.5", "es6template": "^1.0.5", @@ -51,40 +51,41 @@ "jsan": "^3.1.14", "object-path": "^0.11.8", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "simple-diff": "^1.6.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.0", "@redux-devtools/inspector-monitor": "^3.0.0", - "@testing-library/react": "^13.3.0", + "@testing-library/react": "^13.4.0", "@types/es6template": "^1.0.0", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", "@types/object-path": "^0.11.1", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/simple-diff": "^1.6.1", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/inspector-monitor": "^3.0.0", @@ -92,6 +93,6 @@ "@types/styled-components": "^5.1.26", "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" } } diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/package.json b/packages/redux-devtools-inspector-monitor-trace-tab/package.json index 97af0def..e9173823 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-trace-tab/package.json @@ -31,8 +31,8 @@ }, "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/runtime": "^7.18.9", - "@types/chrome": "^0.0.193", + "@babel/runtime": "^7.19.4", + "@types/chrome": "^0.0.198", "anser": "^2.1.1", "html-entities": "^2.3.3", "path-browserify": "^1.0.1", @@ -40,39 +40,40 @@ "source-map": "^0.5.7" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.0", "@redux-devtools/inspector-monitor": "^3.0.0", - "@testing-library/react": "^13.3.0", + "@testing-library/react": "^13.4.0", "@types/babel__code-frame": "^7.0.3", "@types/html-entities": "^1.3.4", - "@types/jest": "^27.5.2", - "@types/node": "^16.11.47", + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", "@types/path-browserify": "^1.0.0", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/redux-devtools-themes": "^1.0.0", "@types/source-map": "0.5.2", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-test-renderer": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/inspector-monitor": "^3.0.0", diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index 2d417de0..60225c57 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -19,37 +19,37 @@ "react": "^18.2.0", "react-bootstrap": "^2.5.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.2", - "react-router-dom": "^6.3.0", + "react-redux": "^8.0.4", + "react-router-dom": "^6.4.2", "redux": "^4.2.0", "redux-logger": "^3.0.6" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/base16": "^1.0.2", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/redux-logger": "^3.0.9", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/redux-devtools-inspector-monitor/package.json b/packages/redux-devtools-inspector-monitor/package.json index b7425def..f0361949 100644 --- a/packages/redux-devtools-inspector-monitor/package.json +++ b/packages/redux-devtools-inspector-monitor/package.json @@ -35,9 +35,9 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/dragula": "^3.7.1", - "@types/lodash": "^4.14.182", + "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "dateformat": "^4.6.3", "hex-rgba": "^1.0.2", @@ -54,11 +54,11 @@ "redux-devtools-themes": "^1.0.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", @@ -66,19 +66,19 @@ "@types/hex-rgba": "^1.0.1", "@types/history": "^4.7.11", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/react-dragula": "^1.1.0", "@types/redux-devtools-themes": "^1.0.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-inspector-monitor/src/ActionPreview.tsx b/packages/redux-devtools-inspector-monitor/src/ActionPreview.tsx index 5fbf4f3c..0d28d107 100644 --- a/packages/redux-devtools-inspector-monitor/src/ActionPreview.tsx +++ b/packages/redux-devtools-inspector-monitor/src/ActionPreview.tsx @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import { Base16Theme } from 'redux-devtools-themes'; import { Action } from 'redux'; -import { StylingFunction } from 'react-base16-styling'; +import type { StylingFunction } from 'react-base16-styling'; import { PerformAction } from '@redux-devtools/core'; import { Delta } from 'jsondiffpatch'; import { DEFAULT_STATE, DevtoolsInspectorState } from './redux'; diff --git a/packages/redux-devtools-inspector-monitor/src/index.ts b/packages/redux-devtools-inspector-monitor/src/index.ts index 0b0cd949..2861d4e5 100644 --- a/packages/redux-devtools-inspector-monitor/src/index.ts +++ b/packages/redux-devtools-inspector-monitor/src/index.ts @@ -1,3 +1,4 @@ +export type { StylingFunction } from 'react-base16-styling'; export { default as InspectorMonitor } from './DevtoolsInspector'; export type { Tab, TabComponentProps } from './ActionPreview'; export type { DevtoolsInspectorState } from './redux'; diff --git a/packages/redux-devtools-instrument/jest.config.js b/packages/redux-devtools-instrument/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-instrument/jest.config.js +++ b/packages/redux-devtools-instrument/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-instrument/package.json b/packages/redux-devtools-instrument/package.json index cbb4f0e3..3fa56fb6 100644 --- a/packages/redux-devtools-instrument/package.json +++ b/packages/redux-devtools-instrument/package.json @@ -41,30 +41,30 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "lodash": "^4.17.21" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", - "@types/lodash": "^4.14.182", - "@types/node": "^16.11.47", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/jest": "^29.2.0", + "@types/lodash": "^4.14.186", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", "redux": "^4.2.0", "rimraf": "^3.0.2", - "rxjs": "^7.5.6", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "rxjs": "^7.5.7", + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "redux": "^3.4.0 || ^4.0.0" diff --git a/packages/redux-devtools-log-monitor/package.json b/packages/redux-devtools-log-monitor/package.json index 2017c56a..467fbd5a 100644 --- a/packages/redux-devtools-log-monitor/package.json +++ b/packages/redux-devtools-log-monitor/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@types/lodash.debounce": "^4.0.7", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", @@ -51,25 +51,25 @@ "redux-devtools-themes": "^1.0.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index 9e8fba2d..66017c0b 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -41,32 +41,32 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/instrument": "^2.1.0", "@redux-devtools/utils": "^2.0.0", "jsan": "^3.1.14", "querystring": "^0.2.1", "rn-host-detect": "^1.2.0", - "socketcluster-client": "^16.1.1" + "socketcluster-client": "^17.1.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/jsan": "^3.1.2", - "@types/node": "^16.11.47", + "@types/node": "^18.11.7", "@types/rn-host-detect": "^1.2.0", "@types/socketcluster-client": "^16.0.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "redux": "^3.5.2 || ^4.0.0" diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index 8fd326b1..8b8008fb 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -10,54 +10,54 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@babel/runtime": "^7.18.9", - "@chakra-ui/react": "^2.2.1", - "@emotion/react": "^11.10.0", - "@emotion/styled": "^11.10.0", - "@mswjs/data": "^0.10.1", + "@babel/runtime": "^7.19.4", + "@chakra-ui/react": "^2.3.6", + "@emotion/react": "^11.10.4", + "@emotion/styled": "^11.10.4", + "@mswjs/data": "^0.10.2", "@redux-devtools/core": "^3.13.0", "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/rtk-query-monitor": "^3.1.0", - "@reduxjs/toolkit": "^1.8.4", - "framer-motion": "^7.1.0", - "msw": "^0.44.2", + "@reduxjs/toolkit": "^1.8.6", + "framer-motion": "^7.6.1", + "msw": "^0.47.4", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", - "react-redux": "^8.0.2", - "react-router-dom": "^6.3.0", - "styled-components": "^5.3.5" + "react-redux": "^8.0.4", + "react-router-dom": "^6.4.2", + "styled-components": "^5.3.6" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/copy-webpack-plugin": "^8.0.1", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" }, "msw": { "workerDirectory": "public" diff --git a/packages/redux-devtools-rtk-query-monitor/jest.config.js b/packages/redux-devtools-rtk-query-monitor/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-rtk-query-monitor/jest.config.js +++ b/packages/redux-devtools-rtk-query-monitor/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-rtk-query-monitor/jestResolver.js b/packages/redux-devtools-rtk-query-monitor/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-rtk-query-monitor/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-rtk-query-monitor/package.json b/packages/redux-devtools-rtk-query-monitor/package.json index abebef0b..de294c9b 100644 --- a/packages/redux-devtools-rtk-query-monitor/package.json +++ b/packages/redux-devtools-rtk-query-monitor/package.json @@ -44,9 +44,9 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", - "@types/lodash": "^4.14.182", + "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", "hex-rgba": "^1.0.2", @@ -60,44 +60,45 @@ "redux-devtools-themes": "^1.0.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", - "@reduxjs/toolkit": "^1.8.4", + "@reduxjs/toolkit": "^1.8.6", "@testing-library/jest-dom": "^5.16.5", - "@testing-library/react": "^13.3.0", - "@types/jest": "^27.5.2", + "@testing-library/react": "^13.4.0", + "@types/jest": "^29.2.0", "@types/hex-rgba": "^1.0.1", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", - "@reduxjs/toolkit": "^1.8.4", + "@reduxjs/toolkit": "^1.8.6", "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/styled-components": "^5.1.26", "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" } } diff --git a/packages/redux-devtools-rtk-query-monitor/src/containers/mapProps.tsx b/packages/redux-devtools-rtk-query-monitor/src/containers/mapProps.tsx index 2dc00182..79271e9f 100644 --- a/packages/redux-devtools-rtk-query-monitor/src/containers/mapProps.tsx +++ b/packages/redux-devtools-rtk-query-monitor/src/containers/mapProps.tsx @@ -16,7 +16,8 @@ export function mapProps( render(): ReactNode { const mappedProps = mapper(this.props); - return ; + // TODO Not really sure why this is needed, but it is + return ; } static displayName = `mapProps(${ diff --git a/packages/redux-devtools-rtk-query-monitor/src/utils/comparators.ts b/packages/redux-devtools-rtk-query-monitor/src/utils/comparators.ts index ff923a21..8714a864 100644 --- a/packages/redux-devtools-rtk-query-monitor/src/utils/comparators.ts +++ b/packages/redux-devtools-rtk-query-monitor/src/utils/comparators.ts @@ -55,6 +55,9 @@ export function compareJSONPrimitive< return 0; } + if (a == null) return -1; + if (b == null) return 1; + return a > b ? 1 : -1; } diff --git a/packages/redux-devtools-serialize/jest.config.js b/packages/redux-devtools-serialize/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-serialize/jest.config.js +++ b/packages/redux-devtools-serialize/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-serialize/package.json b/packages/redux-devtools-serialize/package.json index 7dfa661f..239c5f78 100644 --- a/packages/redux-devtools-serialize/package.json +++ b/packages/redux-devtools-serialize/package.json @@ -37,28 +37,28 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "jsan": "^3.1.14" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", + "eslint-plugin-jest": "^27.1.2", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "immutable": "^4.1.0" diff --git a/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap b/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap index 00056f49..14984dc6 100644 --- a/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap +++ b/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap @@ -1,34 +1,34 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Helpers extract 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } `; exports[`Helpers mark 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } `; exports[`Helpers mark 2`] = ` -Object { +{ "__serializedType__": "testType", "data": "[object Object]", } `; exports[`Helpers refer 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } diff --git a/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap b/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap index 4c460e04..2fe2a9f9 100644 --- a/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap +++ b/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap @@ -1,23 +1,23 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Immutable Nested stringify 1`] = `"{\\"data\\":[{\\"data\\":{\\"map\\":{\\"data\\":{\\"seq\\":{\\"data\\":[1,2,3,4,5,6,7,8],\\"__serializedType__\\":\\"ImmutableSeq\\"},\\"stack\\":{\\"data\\":[\\"a\\",\\"b\\",\\"c\\"],\\"__serializedType__\\":\\"ImmutableStack\\"}},\\"__serializedType__\\":\\"ImmutableOrderedMap\\"},\\"repeat\\":{\\"data\\":{\\"_value\\":\\"hi\\",\\"size\\":100},\\"__serializedType__\\":\\"ImmutableRepeat\\"}},\\"__serializedType__\\":\\"ImmutableRecord\\",\\"__serializedRef__\\":0},{\\"data\\":[10,9,8,7,6,5,4,3,2,1],\\"__serializedType__\\":\\"ImmutableOrderedSet\\"},{\\"data\\":{\\"_start\\":0,\\"_end\\":7,\\"_step\\":1,\\"size\\":7},\\"__serializedType__\\":\\"ImmutableRange\\"}],\\"__serializedType__\\":\\"ImmutableSet\\"}"`; +exports[`Immutable Nested stringify 1`] = `"{"data":[{"data":{"map":{"data":{"seq":{"data":[1,2,3,4,5,6,7,8],"__serializedType__":"ImmutableSeq"},"stack":{"data":["a","b","c"],"__serializedType__":"ImmutableStack"}},"__serializedType__":"ImmutableOrderedMap"},"repeat":{"data":{"_value":"hi","size":100},"__serializedType__":"ImmutableRepeat"}},"__serializedType__":"ImmutableRecord","__serializedRef__":0},{"data":[10,9,8,7,6,5,4,3,2,1],"__serializedType__":"ImmutableOrderedSet"},{"data":{"_start":0,"_end":7,"_step":1,"size":7},"__serializedType__":"ImmutableRange"}],"__serializedType__":"ImmutableSet"}"`; -exports[`Immutable Record stringify 1`] = `"{\\"data\\":{\\"a\\":1,\\"b\\":3},\\"__serializedType__\\":\\"ImmutableRecord\\",\\"__serializedRef__\\":0}"`; +exports[`Immutable Record stringify 1`] = `"{"data":{"a":1,"b":3},"__serializedType__":"ImmutableRecord","__serializedRef__":0}"`; -exports[`Immutable Stringify list 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8,9,10],\\"__serializedType__\\":\\"ImmutableList\\"}"`; +exports[`Immutable Stringify list 1`] = `"{"data":[1,2,3,4,5,6,7,8,9,10],"__serializedType__":"ImmutableList"}"`; -exports[`Immutable Stringify map 1`] = `"{\\"data\\":{\\"a\\":1,\\"b\\":2,\\"c\\":3,\\"d\\":4},\\"__serializedType__\\":\\"ImmutableMap\\"}"`; +exports[`Immutable Stringify map 1`] = `"{"data":{"a":1,"b":2,"c":3,"d":4},"__serializedType__":"ImmutableMap"}"`; -exports[`Immutable Stringify orderedMap 1`] = `"{\\"data\\":{\\"b\\":2,\\"a\\":1,\\"c\\":3,\\"d\\":4},\\"__serializedType__\\":\\"ImmutableOrderedMap\\"}"`; +exports[`Immutable Stringify orderedMap 1`] = `"{"data":{"b":2,"a":1,"c":3,"d":4},"__serializedType__":"ImmutableOrderedMap"}"`; -exports[`Immutable Stringify orderedSet 1`] = `"{\\"data\\":[10,9,8,7,6,5,4,3,2,1],\\"__serializedType__\\":\\"ImmutableOrderedSet\\"}"`; +exports[`Immutable Stringify orderedSet 1`] = `"{"data":[10,9,8,7,6,5,4,3,2,1],"__serializedType__":"ImmutableOrderedSet"}"`; -exports[`Immutable Stringify range 1`] = `"{\\"data\\":{\\"_start\\":0,\\"_end\\":7,\\"_step\\":1,\\"size\\":7},\\"__serializedType__\\":\\"ImmutableRange\\"}"`; +exports[`Immutable Stringify range 1`] = `"{"data":{"_start":0,"_end":7,"_step":1,"size":7},"__serializedType__":"ImmutableRange"}"`; -exports[`Immutable Stringify repeat 1`] = `"{\\"data\\":{\\"_value\\":\\"hi\\",\\"size\\":100},\\"__serializedType__\\":\\"ImmutableRepeat\\"}"`; +exports[`Immutable Stringify repeat 1`] = `"{"data":{"_value":"hi","size":100},"__serializedType__":"ImmutableRepeat"}"`; -exports[`Immutable Stringify seq 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8],\\"__serializedType__\\":\\"ImmutableSeq\\"}"`; +exports[`Immutable Stringify seq 1`] = `"{"data":[1,2,3,4,5,6,7,8],"__serializedType__":"ImmutableSeq"}"`; -exports[`Immutable Stringify set 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8,9,10],\\"__serializedType__\\":\\"ImmutableSet\\"}"`; +exports[`Immutable Stringify set 1`] = `"{"data":[1,2,3,4,5,6,7,8,9,10],"__serializedType__":"ImmutableSet"}"`; -exports[`Immutable Stringify stack 1`] = `"{\\"data\\":[\\"a\\",\\"b\\",\\"c\\"],\\"__serializedType__\\":\\"ImmutableStack\\"}"`; +exports[`Immutable Stringify stack 1`] = `"{"data":["a","b","c"],"__serializedType__":"ImmutableStack"}"`; diff --git a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json index 331d36e6..2e68a13e 100644 --- a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json +++ b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json @@ -19,44 +19,44 @@ "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/log-monitor": "^4.0.0", "@redux-devtools/slider-monitor": "^4.0.0", - "classnames": "^2.3.1", + "classnames": "^2.3.2", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", - "styled-components": "^5.3.5", + "styled-components": "^5.3.6", "todomvc-app-css": "^2.4.2" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.47", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/redux-devtools-slider-monitor/package.json b/packages/redux-devtools-slider-monitor/package.json index 3cb56327..e358385f 100644 --- a/packages/redux-devtools-slider-monitor/package.json +++ b/packages/redux-devtools-slider-monitor/package.json @@ -32,7 +32,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", @@ -40,30 +40,30 @@ "redux-devtools-themes": "^1.0.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", - "@rollup/plugin-babel": "^5.3.1", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@rollup/plugin-babel": "^6.0.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "rollup": "^2.77.3", - "rollup-plugin-typescript2": "^0.32.1", + "rollup": "^3.2.3", + "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", @@ -71,6 +71,6 @@ "@types/styled-components": "^5.1.26", "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" } } diff --git a/packages/redux-devtools-ui/.storybook/main.js b/packages/redux-devtools-ui/.storybook/main.js index 0b048608..b2931238 100644 --- a/packages/redux-devtools-ui/.storybook/main.js +++ b/packages/redux-devtools-ui/.storybook/main.js @@ -1,4 +1,7 @@ module.exports = { + core: { + builder: 'webpack5', + }, stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'], addons: [ { diff --git a/packages/redux-devtools-ui/jest.config.js b/packages/redux-devtools-ui/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-ui/jest.config.js +++ b/packages/redux-devtools-ui/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-ui/jestResolver.js b/packages/redux-devtools-ui/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-ui/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-ui/package.json b/packages/redux-devtools-ui/package.json index d0fba578..9883a1c0 100644 --- a/packages/redux-devtools-ui/package.json +++ b/packages/redux-devtools-ui/package.json @@ -25,8 +25,8 @@ }, "scripts": { "start": "pnpm run storybook", - "storybook": "start-storybook -p 6006 -s ./fonts", - "build:storybook": "build-storybook -s ./fonts", + "storybook": "start-storybook --port 6006 --static-dir ./fonts", + "build:storybook": "build-storybook --static-dir ./fonts --quiet", "build": "pnpm run build:lib && pnpm run build:storybook", "build:lib": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types && pnpm run build:css", "build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs", @@ -42,7 +42,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@rjsf/core": "^4.2.3", "@types/base16": "^1.0.2", "@types/codemirror": "^5.60.5", @@ -51,61 +51,64 @@ "@types/redux-devtools-themes": "^1.0.0", "@types/simple-element-resize-detector": "^1.3.0", "base16": "^1.0.0", - "codemirror": "^5.65.7", + "codemirror": "^5.65.9", "color": "^4.2.3", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", - "react-select": "^5.4.0", + "react-icons": "^4.6.0", + "react-select": "^5.5.2", "redux-devtools-themes": "^1.0.0", "simple-element-resize-detector": "^1.3.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@storybook/addon-essentials": "^6.5.10", - "@storybook/react": "^6.5.10", - "@testing-library/dom": "^8.17.1", - "@testing-library/react": "^13.3.0", + "@storybook/addon-essentials": "^6.5.12", + "@storybook/builder-webpack5": "^6.5.13", + "@storybook/manager-webpack5": "^6.5.13", + "@storybook/react": "^6.5.12", + "@testing-library/dom": "^8.19.0", + "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "@types/color": "^3.0.3", - "@types/jest": "^27.5.2", - "@types/react": "^18.0.17", + "@types/jest": "^29.2.0", + "@types/react": "^18.0.21", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", - "csstype": "^3.1.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", + "csstype": "^3.1.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "ncp": "^2.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", "require-from-string": "^2.0.2", "rimraf": "^3.0.2", - "styled-components": "^5.3.5", - "stylelint": "^14.10.0", + "styled-components": "^5.3.6", + "stylelint": "^14.14.0", "stylelint-config-prettier": "^9.0.3", - "stylelint-config-standard": "^25.0.0", + "stylelint-config-standard": "^29.0.0", "stylelint-config-styled-components": "^0.1.1", "stylelint-processor-styled-components": "^1.10.0", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4", + "ts-jest": "^29.0.3", + "typescript": "~4.8.4", "webpack": "^5.74.0" }, "peerDependencies": { "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/styled-components": "^5.1.26", "react": "^16.3.0 || ^17.0.0 || ^18.0.0", - "styled-components": "^5.3.5" + "styled-components": "^5.3.6" } } diff --git a/packages/redux-devtools-ui/src/index.ts b/packages/redux-devtools-ui/src/index.ts index fdfad8bd..58b36732 100644 --- a/packages/redux-devtools-ui/src/index.ts +++ b/packages/redux-devtools-ui/src/index.ts @@ -1,3 +1,5 @@ +export type { Base16Theme } from 'base16'; + export { default as Container } from './Container'; export { default as Button } from './Button'; export { default as ContextMenu } from './ContextMenu'; diff --git a/packages/redux-devtools-ui/test/__snapshots__/Button.test.tsx.snap b/packages/redux-devtools-ui/test/__snapshots__/Button.test.tsx.snap index 1bcb5caf..9d6c2198 100644 --- a/packages/redux-devtools-ui/test/__snapshots__/Button.test.tsx.snap +++ b/packages/redux-devtools-ui/test/__snapshots__/Button.test.tsx.snap @@ -2,10 +2,10 @@ exports[`Button renders correctly 1`] = `
diff --git a/packages/redux-devtools-ui/test/__snapshots__/Container.test.tsx.snap b/packages/redux-devtools-ui/test/__snapshots__/Container.test.tsx.snap index bd15d5d5..7e498f65 100644 --- a/packages/redux-devtools-ui/test/__snapshots__/Container.test.tsx.snap +++ b/packages/redux-devtools-ui/test/__snapshots__/Container.test.tsx.snap @@ -2,7 +2,7 @@ exports[`Container renders correctly 1`] = `
Text
diff --git a/packages/redux-devtools-ui/test/__snapshots__/ContextMenu.test.tsx.snap b/packages/redux-devtools-ui/test/__snapshots__/ContextMenu.test.tsx.snap index ea4037d8..6a21114e 100644 --- a/packages/redux-devtools-ui/test/__snapshots__/ContextMenu.test.tsx.snap +++ b/packages/redux-devtools-ui/test/__snapshots__/ContextMenu.test.tsx.snap @@ -2,7 +2,7 @@ exports[`ContextMenu renders correctly 1`] = `
@@ -45,7 +45,7 @@ exports[`Dialog renders correctly 1`] = ` exports[`Dialog renders modal 1`] = `
@@ -61,19 +61,19 @@ exports[`Dialog renders modal 1`] = ` class="mc-dialog--footer" >
@@ -85,7 +85,7 @@ exports[`Dialog renders modal 1`] = ` exports[`Dialog renders with props 1`] = `
@@ -109,19 +109,19 @@ exports[`Dialog renders with props 1`] = ` class="mc-dialog--footer" >
diff --git a/packages/redux-devtools-ui/test/__snapshots__/Editor.test.tsx.snap b/packages/redux-devtools-ui/test/__snapshots__/Editor.test.tsx.snap index a47f3afd..0eb7381d 100644 --- a/packages/redux-devtools-ui/test/__snapshots__/Editor.test.tsx.snap +++ b/packages/redux-devtools-ui/test/__snapshots__/Editor.test.tsx.snap @@ -2,7 +2,7 @@ exports[`Editor renders correctly 1`] = `
@@ -33,6 +33,6 @@ exports[`Toolbar renders correctly 1`] = ` exports[`Toolbar renders with props 1`] = `
`; diff --git a/packages/redux-devtools-utils/package.json b/packages/redux-devtools-utils/package.json index 832bb646..b8f50285 100644 --- a/packages/redux-devtools-utils/package.json +++ b/packages/redux-devtools-utils/package.json @@ -32,7 +32,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/core": "^3.13.1", "@redux-devtools/serialize": "^0.4.1", "@types/get-params": "^0.1.0", @@ -44,21 +44,21 @@ "redux": "^4.2.0" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/jsan": "^3.1.2", - "@types/lodash": "^4.14.182", - "@types/node": "^16.11.47", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/lodash": "^4.14.186", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "typescript": "~4.7.4" + "typescript": "~4.8.4" }, "peerDependencies": { "@redux-devtools/core": "^3.13.1", diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index 51cdbecf..fd277531 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -25,34 +25,34 @@ "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "redux-thunk": "^2.4.1" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.47", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index 318e6017..e36b6d0a 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -34,41 +34,41 @@ "@redux-devtools/core": "^3.13.0", "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/log-monitor": "^4.0.0", - "classnames": "^2.3.1", + "classnames": "^2.3.2", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "todomvc-app-css": "^2.4.2" }, "devDependencies": { - "@babel/core": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.47", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", - "@types/react": "^18.0.17", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@types/webpack-env": "^1.17.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "babel-loader": "^8.2.5", + "@types/webpack-env": "^1.18.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.21.0", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-node": "^10.9.1", - "typescript": "~4.7.4", + "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.10.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/packages/redux-devtools/jest.config.js b/packages/redux-devtools/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools/jest.config.js +++ b/packages/redux-devtools/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index b1a56740..dec81606 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -41,39 +41,39 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.18.9", + "@babel/runtime": "^7.19.4", "@redux-devtools/instrument": "^2.1.0", "@types/prop-types": "^15.7.5", "lodash": "^4.17.21", "prop-types": "^15.8.1" }, "devDependencies": { - "@babel/cli": "^7.18.10", - "@babel/core": "^7.18.10", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-transform-runtime": "^7.18.10", - "@babel/preset-env": "^7.18.10", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.19.3", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-transform-runtime": "^7.19.1", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", - "@types/lodash": "^4.14.182", - "@types/node": "^16.11.47", - "@types/react": "^18.0.17", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.21.0", + "@types/jest": "^29.2.0", + "@types/lodash": "^4.14.186", + "@types/node": "^18.11.7", + "@types/react": "^18.0.21", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.8.2", - "eslint-plugin-react": "^7.30.1", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.2", + "react-redux": "^8.0.4", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", - "typescript": "~4.7.4" + "ts-jest": "^29.0.3", + "typescript": "~4.8.4" }, "peerDependencies": { "react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1cc50aa6..26811798 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,43 +7,43 @@ importers: .: specifiers: - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@changesets/cli': ^2.24.2 - '@nrwl/nx-cloud': ^14.3.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@changesets/cli': ^2.25.0 + '@nrwl/nx-cloud': ^15.0.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 - nx: ^14.5.4 + jest: ^29.2.2 + nx: ^15.0.0 prettier: 2.7.1 - typescript: ~4.7.4 + typescript: ~4.8.4 devDependencies: - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@changesets/cli': 2.24.2 - '@nrwl/nx-cloud': 14.3.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 - nx: 14.5.4 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@changesets/cli': 2.25.0 + '@nrwl/nx-cloud': 15.0.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2 + nx: 15.0.0 prettier: 2.7.1 - typescript: 4.7.4 + typescript: 4.8.4 extension: specifiers: - '@babel/core': ^7.18.10 + '@babel/core': ^7.19.3 '@babel/polyfill': ^7.12.1 - '@babel/preset-env': ^7.18.10 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@babel/register': ^7.18.9 @@ -55,30 +55,31 @@ importers: '@redux-devtools/ui': ^1.3.0 '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.5 - '@testing-library/react': ^13.3.0 - '@types/chrome': ^0.0.193 + '@testing-library/react': ^13.4.0 + '@types/chrome': ^0.0.198 '@types/jsan': ^3.1.2 - '@types/lodash': ^4.14.182 - '@types/react': ^18.0.17 + '@types/lodash': ^4.14.186 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - babel-loader: ^8.2.5 + babel-loader: ^9.0.0 bestzip: ^2.2.1 - chromedriver: ^104.0.0 + chromedriver: ^106.0.1 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - electron: ^20.0.2 - eslint: ^8.21.0 + electron: ^21.1.1 + eslint: ^8.25.0 eslint-config-airbnb: ^19.0.4 eslint-plugin-import: ^2.26.0 eslint-plugin-jsx-a11y: ^6.6.1 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 file-loader: ^6.2.0 fork-ts-checker-webpack-plugin: ^7.2.13 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 localforage: ^1.10.0 lodash: ^4.17.21 @@ -87,21 +88,21 @@ importers: raw-loader: ^4.0.2 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 react-json-tree: ^0.17.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 react-transform-catch-errors: ^1.0.2 react-transform-hmr: ^1.0.4 redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - selenium-webdriver: ^4.4.0 + selenium-webdriver: ^4.5.0 sinon-chrome: ^3.0.1 style-loader: ^3.3.1 - styled-components: ^5.3.5 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + styled-components: ^5.3.6 + ts-jest: ^29.0.3 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 dependencies: @@ -119,89 +120,90 @@ importers: lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 react-json-tree: link:../packages/react-json-tree - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@babel/register': 7.18.9_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/register': 7.18.9_@babel+core@7.19.3 '@testing-library/jest-dom': 5.16.5 - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y - '@types/chrome': 0.0.193 - '@types/lodash': 4.14.182 - '@types/react': 18.0.17 + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y + '@types/chrome': 0.0.198 + '@types/lodash': 4.14.186 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde bestzip: 2.2.1 - chromedriver: 104.0.0 + chromedriver: 106.0.1 copy-webpack-plugin: 11.0.0_webpack@5.74.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - electron: 20.0.2 - eslint: 8.21.0 - eslint-config-airbnb: 19.0.4_oyn2uifcemcbkyuj2uapcqffk4 - eslint-plugin-import: 2.26.0_eslint@8.21.0 - eslint-plugin-jsx-a11y: 6.6.1_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + electron: 21.1.1 + eslint: 8.25.0 + eslint-config-airbnb: 19.0.4_4ces55zid76bgvayjtslcl5sne + eslint-plugin-import: 2.26.0_eslint@8.25.0 + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 file-loader: 6.2.0_webpack@5.74.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 path-browserify: 1.0.1 pug-html-loader: 1.1.5 raw-loader: 4.0.2_webpack@5.74.0 react-transform-catch-errors: 1.0.2 react-transform-hmr: 1.0.4 rimraf: 3.0.2 - selenium-webdriver: 4.4.0 + selenium-webdriver: 4.5.0 sinon-chrome: 3.0.1 style-loader: 3.3.1_webpack@5.74.0 - ts-jest: 27.1.5_yimvri5xxiu7oetotjr3m5ivle - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_webpack@5.74.0 packages/d3-state-visualizer: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.2 - '@rollup/plugin-node-resolve': ^13.3.0 + '@babel/runtime': ^7.19.4 + '@rollup/plugin-babel': ^6.0.0 + '@rollup/plugin-commonjs': ^23.0.0 + '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.47 - '@types/ramda': ^0.28.15 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@types/node': ^18.11.7 + '@types/ramda': ^0.28.16 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3: ^3.5.17 d3tooltip: ^2.1.0 deepmerge: ^4.2.2 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 map2tree: ^2.1.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.77.3 - rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.1 + rollup: ^3.2.3 + rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/d3': 3.5.47 d3: 3.5.17 d3tooltip: link:../d3tooltip @@ -209,322 +211,326 @@ importers: map2tree: link:../map2tree ramda: 0.28.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.3 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.3 - '@types/node': 16.11.47 - '@types/ramda': 0.28.15 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/node': 18.11.7 + '@types/ramda': 0.28.16 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 - rollup: 2.77.3 - rollup-plugin-terser: 7.0.2_rollup@2.77.3 - rollup-plugin-typescript2: 0.32.1_u7uwnjpwzdscdmf57dt35g5b44 + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 packages/d3-state-visualizer/examples/tree: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.47 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 d3-state-visualizer: ^1.6.0 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 map2tree: ^2.1.0 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: d3-state-visualizer: link:../.. map2tree: link:../../../map2tree devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/node': 16.11.47 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/d3tooltip: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.2 - '@rollup/plugin-node-resolve': ^13.3.0 + '@babel/runtime': ^7.19.4 + '@rollup/plugin-babel': ^6.0.0 + '@rollup/plugin-commonjs': ^23.0.0 + '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.47 - '@types/ramda': ^0.28.15 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@types/node': ^18.11.7 + '@types/ramda': ^0.28.16 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3: ^3.5.17 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.77.3 - rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.1 + rollup: ^3.2.3 + rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 ramda: 0.28.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.3 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.3 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 '@types/d3': 3.5.47 - '@types/node': 16.11.47 - '@types/ramda': 0.28.15 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@types/node': 18.11.7 + '@types/ramda': 0.28.16 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q d3: 3.5.17 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 - rollup: 2.77.3 - rollup-plugin-terser: 7.0.2_rollup@2.77.3 - rollup-plugin-typescript2: 0.32.1_u7uwnjpwzdscdmf57dt35g5b44 + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 packages/map2tree: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.2 - '@rollup/plugin-node-resolve': ^13.3.0 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@babel/runtime': ^7.19.4 + '@rollup/plugin-babel': ^6.0.0 + '@rollup/plugin-commonjs': ^23.0.0 + '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 + eslint-plugin-jest: ^27.1.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 lodash: ^4.17.21 rimraf: ^3.0.2 - rollup: ^2.77.3 - rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.1 - ts-jest: ^27.1.5 + rollup: ^3.2.3 + rollup-plugin-typescript2: ^0.34.1 + ts-jest: ^29.0.3 tslib: ^2.4.0 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.3 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.3 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 - '@types/node': 16.11.47 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/jest': 29.2.0 + '@types/lodash': 4.14.186 + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 rimraf: 3.0.2 - rollup: 2.77.3 - rollup-plugin-terser: 7.0.2_rollup@2.77.3 - rollup-plugin-typescript2: 0.32.1_u7uwnjpwzdscdmf57dt35g5b44 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 packages/react-base16-styling: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@types/base16': ^1.0.2 '@types/color': ^3.0.3 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 '@types/lodash.curry': ^4.1.7 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 base16: ^1.0.0 color: ^4.2.3 - csstype: ^3.1.0 - eslint: ^8.21.0 + csstype: ^3.1.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - jest: ^27.5.1 + eslint-plugin-jest: ^27.1.2 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 lodash.curry: ^4.1.1 rimraf: ^3.0.2 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/base16': 1.0.2 - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 base16: 1.0.0 color: 4.2.3 - csstype: 3.1.0 + csstype: 3.1.1 lodash.curry: 4.1.1 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/color': 3.0.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash.curry': 4.1.7 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/react-dock: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 react: ^18.2.0 react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 - '@types/lodash': 4.14.182 + '@babel/runtime': 7.19.4 + '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 lodash.debounce: 4.0.8 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/jest': 27.5.2 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/jest': 29.2.0 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/react-dock/demo: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -532,140 +538,140 @@ importers: react-bootstrap: ^2.5.0 react-dock: ^0.6.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 - styled-components: ^5.3.5 + styled-components: ^5.3.6 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: react: 18.2.0 - react-bootstrap: 2.5.0_zxljzmqdrxwnuenbkrz77w74uy + react-bootstrap: 2.5.0_rj7ozvcq3uehdlnj3cbwzbi5ce react-dock: link:.. react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/react-json-tree: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.2 - '@rollup/plugin-node-resolve': ^13.3.0 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 + '@babel/runtime': ^7.19.4 + '@rollup/plugin-babel': ^6.0.0 + '@rollup/plugin-commonjs': ^23.0.0 + '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 prop-types: ^15.8.1 react: ^18.2.0 react-base16-styling: ^0.9.1 react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.77.3 - rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.1 - ts-jest: ^27.1.5 + rollup: ^3.2.3 + rollup-plugin-typescript2: ^0.34.1 + ts-jest: ^29.0.3 tslib: ^2.4.0 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 - '@types/lodash': 4.14.182 + '@babel/runtime': 7.19.4 + '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 prop-types: 15.8.1 react-base16-styling: link:../react-base16-styling devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.3 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.3 - '@types/jest': 27.5.2 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/jest': 29.2.0 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2_@types+node@18.11.7 react: 18.2.0 react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.77.3 - rollup-plugin-terser: 7.0.2_rollup@2.77.3 - rollup-plugin-typescript2: 0.32.1_u7uwnjpwzdscdmf57dt35g5b44 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 packages/react-json-tree/examples: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -675,10 +681,10 @@ importers: react-dom: ^18.2.0 react-json-tree: ^0.17.0 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: immutable: 4.1.0 react: 18.2.0 @@ -686,106 +692,106 @@ importers: react-dom: 18.2.0_react@18.2.0 react-json-tree: link:.. devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/instrument': ^2.1.0 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@types/react': ^18.0.21 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 lodash: ^4.17.21 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/instrument': link:../redux-devtools-instrument '@types/prop-types': 15.7.5 lodash: 4.17.21 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 - '@types/node': 16.11.47 - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/jest': 29.2.0 + '@types/lodash': 4.14.186 + '@types/node': 18.11.7 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2_@types+node@18.11.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-redux: 8.0.2_aaa45f7jnlnm2uprinsrzxzaje + react-redux: 8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-app: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/chart-monitor': ^3.0.0 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 @@ -795,38 +801,39 @@ importers: '@redux-devtools/rtk-query-monitor': ^3.0.0 '@redux-devtools/slider-monitor': ^4.0.0 '@redux-devtools/ui': ^1.3.0 - '@reduxjs/toolkit': ^1.8.4 + '@reduxjs/toolkit': ^1.8.6 '@rjsf/core': ^4.2.3 '@testing-library/jest-dom': ^5.16.5 - '@testing-library/react': ^13.3.0 - '@types/jest': ^27.5.2 + '@testing-library/react': ^13.4.0 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 '@types/json-schema': ^7.0.11 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/socketcluster-client': ^16.0.0 '@types/styled-components': ^5.1.26 '@types/testing-library__jest-dom': ^5.14.5 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 d3-state-visualizer: ^1.6.0 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 - html-loader: ^4.1.0 + html-loader: ^4.2.0 html-webpack-plugin: ^5.5.0 javascript-stringify: ^2.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 jsondiffpatch: ^0.4.1 localforage: ^1.10.0 @@ -835,23 +842,23 @@ importers: prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - socketcluster-client: ^16.1.1 + socketcluster-client: ^17.1.0 style-loader: ^3.3.1 - styled-components: ^5.3.5 - ts-jest: ^27.1.5 + styled-components: ^5.3.6 + ts-jest: ^29.0.3 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/chart-monitor': link:../redux-devtools-chart-monitor '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor @@ -861,7 +868,7 @@ importers: '@redux-devtools/rtk-query-monitor': link:../redux-devtools-rtk-query-monitor '@redux-devtools/slider-monitor': link:../redux-devtools-slider-monitor '@redux-devtools/ui': link:../redux-devtools-ui - '@reduxjs/toolkit': 1.8.4_kkwg4cbsojnjnupd3btipussee + '@reduxjs/toolkit': 1.8.6_kuo2ie247izvzll3jejufdtq3q '@types/prop-types': 15.7.5 d3-state-visualizer: link:../d3-state-visualizer javascript-stringify: 2.1.0 @@ -870,91 +877,92 @@ importers: localforage: 1.10.0 lodash: 4.17.21 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 - socketcluster-client: 16.1.1 + socketcluster-client: 17.1.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@rjsf/core': 4.2.3_react@18.2.0 '@testing-library/jest-dom': 5.16.5 - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y - '@types/jest': 27.5.2 + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 '@types/json-schema': 7.0.11 - '@types/lodash': 4.14.182 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@types/lodash': 4.14.186 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.26 '@types/testing-library__jest-dom': 5.14.5 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm - html-loader: 4.1.0_webpack@5.74.0 + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e + html-loader: 4.2.0_webpack@5.74.0 html-webpack-plugin: 5.5.0_webpack@5.74.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-environment-jsdom: 29.2.2 path-browserify: 1.0.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 rimraf: 3.0.2 style-loader: 3.3.1_webpack@5.74.0 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools-chart-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3-state-visualizer: ^1.6.0 deepmerge: ^4.2.2 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 d3-state-visualizer: link:../d3-state-visualizer @@ -962,25 +970,25 @@ importers: prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-cli: specifiers: @@ -988,37 +996,37 @@ importers: '@types/body-parser': ^1.19.2 '@types/cors': ^2.8.12 '@types/cross-spawn': ^6.0.2 - '@types/express': ^4.17.13 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 + '@types/express': ^4.17.14 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 '@types/minimist': ^1.2.2 '@types/morgan': ^1.9.3 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/semver': ^7.3.12 '@types/socketcluster-client': ^16.0.0 '@types/socketcluster-server': ^16.1.0 '@types/styled-components': ^5.1.26 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - apollo-server-express: ^3.10.1 - body-parser: ^1.20.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + apollo-server-express: ^3.10.3 + body-parser: ^1.20.1 chalk: ^4.1.2 cors: ^2.8.5 cross-spawn: ^7.0.3 - electron: ^20.0.2 - eslint: ^8.21.0 + electron: ^21.1.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - express: ^4.18.1 + eslint-plugin-jest: ^27.1.2 + express: ^4.18.2 getport: ^0.1.0 - graphql: ^16.5.0 - jest: ^27.5.1 - knex: ^2.2.0 + graphql: ^16.6.0 + jest: ^29.2.2 + knex: ^2.3.0 lodash: ^4.17.21 - minimist: ^1.2.6 + minimist: ^1.2.7 morgan: ^1.10.0 ncp: ^2.0.0 open: ^8.4.0 @@ -1026,88 +1034,88 @@ importers: react-dom: ^18.2.0 react-is: ^18.2.0 rimraf: ^3.0.2 - semver: ^7.3.7 - socketcluster-client: ^16.1.1 - socketcluster-server: ^16.2.1 - sqlite3: ^5.0.11 - styled-components: ^5.3.5 - supertest: ^6.2.4 - ts-jest: ^27.1.5 - typescript: ~4.7.4 - uuid: ^8.3.2 + semver: ^7.3.8 + socketcluster-client: ^17.1.0 + socketcluster-server: ^17.2.0 + sqlite3: ^5.1.2 + styled-components: ^5.3.6 + supertest: ^6.3.0 + ts-jest: ^29.0.3 + typescript: ~4.8.4 + uuid: ^9.0.0 dependencies: '@redux-devtools/app': link:../redux-devtools-app - '@types/react': 18.0.17 - apollo-server-express: 3.10.1_g7snex6epo2tsaz6yhvyva23iq - body-parser: 1.20.0 + '@types/react': 18.0.21 + apollo-server-express: 3.10.3_5ha345eiak62qiwwva5z4dp6gu + body-parser: 1.20.1 chalk: 4.1.2 cors: 2.8.5 cross-spawn: 7.0.3 - electron: 20.0.2 - express: 4.18.1 + electron: 21.1.1 + express: 4.18.2 getport: 0.1.0 - graphql: 16.5.0 - knex: 2.2.0_sqlite3@5.0.11 + graphql: 16.6.0 + knex: 2.3.0_sqlite3@5.1.2 lodash: 4.17.21 - minimist: 1.2.6 + minimist: 1.2.7 morgan: 1.10.0 open: 8.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 - semver: 7.3.7 - socketcluster-server: 16.2.1 - sqlite3: 5.0.11 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba - uuid: 8.3.2 + semver: 7.3.8 + socketcluster-server: 17.2.0 + sqlite3: 5.1.2 + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba + uuid: 9.0.0 devDependencies: '@types/body-parser': 1.19.2 '@types/cors': 2.8.12 '@types/cross-spawn': 6.0.2 - '@types/express': 4.17.13 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 + '@types/express': 4.17.14 + '@types/jest': 29.2.0 + '@types/lodash': 4.14.186 '@types/minimist': 1.2.2 '@types/morgan': 1.9.3 - '@types/node': 16.11.47 + '@types/node': 18.11.7 '@types/semver': 7.3.12 '@types/socketcluster-client': 16.0.0 '@types/socketcluster-server': 16.1.0 '@types/styled-components': 5.1.26 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2_@types+node@18.11.7 ncp: 2.0.0 rimraf: 3.0.2 - socketcluster-client: 16.1.1 - supertest: 6.2.4 - ts-jest: 27.1.5_mqaoisgizytgigbr3gbjwvnjie - typescript: 4.7.4 + socketcluster-client: 17.1.0 + supertest: 6.3.0 + ts-jest: 29.0.3_r7gdwuj75x2gz25bauak3xcnbm + typescript: 4.8.4 packages/redux-devtools-dock-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@types/react': ^18.0.21 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 parse-key: ^0.2.1 prop-types: ^15.8.1 @@ -1115,97 +1123,97 @@ importers: react-dock: ^0.6.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/prop-types': 15.7.5 parse-key: 0.2.1 prop-types: 15.8.1 react-dock: link:../react-dock devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-extension: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@babel/runtime': ^7.19.4 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 immutable: ^4.1.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 immutable: 4.1.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-inspector-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/dateformat': ^3.0.1 '@types/dragula': ^3.7.1 '@types/hex-rgba': ^1.0.1 '@types/history': ^4.7.11 - '@types/lodash': ^4.14.182 + '@types/lodash': ^4.14.186 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 dateformat: ^4.6.3 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 @@ -1222,11 +1230,11 @@ importers: redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/dragula': 3.7.1 - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 dateformat: 4.6.3 hex-rgba: 1.0.2 @@ -1242,76 +1250,77 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@types/dateformat': 3.0.1 '@types/hex-rgba': 1.0.1 '@types/history': 4.7.11 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-inspector-monitor-test-tab: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 '@redux-devtools/ui': ^1.3.0 - '@testing-library/react': ^13.3.0 + '@testing-library/react': ^13.4.0 '@types/es6template': ^1.0.0 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 '@types/object-path': ^0.11.1 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/simple-diff': ^1.6.1 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 es6template: ^1.0.5 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 javascript-stringify: ^2.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 object-path: ^0.11.8 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 redux: ^4.2.0 rimraf: ^3.0.2 simple-diff: ^1.6.0 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 es6template: 1.0.5 @@ -1319,44 +1328,45 @@ importers: jsan: 3.1.14 object-path: 0.11.8 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 simple-diff: 1.6.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/es6template': 1.0.0 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 '@types/object-path': 0.11.1 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/simple-diff': 1.6.1 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-inspector-monitor-test-tab/demo: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -1365,20 +1375,20 @@ importers: '@redux-devtools/inspector-monitor-test-tab': ^1.0.0 '@redux-devtools/ui': ^1.3.0 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.26 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -1387,17 +1397,17 @@ importers: react: ^18.2.0 react-dom: ^18.2.0 react-is: ^18.2.0 - react-redux: ^8.0.2 - react-router-dom: ^6.3.0 + react-redux: ^8.0.4 + react-router-dom: ^6.4.2 redux: ^4.2.0 redux-logger: ^3.0.6 style-loader: ^3.3.1 - styled-components: ^5.3.5 + styled-components: ^5.3.6 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor @@ -1409,74 +1419,75 @@ importers: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa - react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu + react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.26 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools-inspector-monitor-trace-tab: specifiers: - '@babel/cli': ^7.18.10 + '@babel/cli': ^7.19.3 '@babel/code-frame': ^7.18.6 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 - '@testing-library/react': ^13.3.0 + '@testing-library/react': ^13.4.0 '@types/babel__code-frame': ^7.0.3 - '@types/chrome': ^0.0.193 + '@types/chrome': ^0.0.198 '@types/html-entities': ^1.3.4 - '@types/jest': ^27.5.2 - '@types/node': ^16.11.47 + '@types/jest': ^29.2.0 + '@types/node': ^18.11.7 '@types/path-browserify': ^1.0.0 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 anser: ^2.1.1 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 html-entities: ^2.3.3 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 path-browserify: ^1.0.1 react: ^18.2.0 react-dom: ^18.2.0 @@ -1485,56 +1496,57 @@ importers: redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 source-map: ^0.5.7 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.18.9 - '@types/chrome': 0.0.193 + '@babel/runtime': 7.19.4 + '@types/chrome': 0.0.198 anser: 2.1.1 html-entities: 2.3.3 path-browserify: 1.0.1 redux-devtools-themes: 1.0.0 source-map: 0.5.7 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/babel__code-frame': 7.0.3 '@types/html-entities': 1.3.4 - '@types/jest': 27.5.2 - '@types/node': 16.11.47 + '@types/jest': 29.2.0 + '@types/node': 18.11.7 '@types/path-browserify': 1.0.0 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2_@types+node@18.11.7 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-test-renderer: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-inspector-monitor/demo: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -1542,19 +1554,19 @@ importers: '@redux-devtools/inspector-monitor': ^3.0.0 '@types/base16': ^1.0.2 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/redux-logger': ^3.0.9 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 base16: ^1.0.0 cross-env: ^7.0.3 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -1563,15 +1575,15 @@ importers: react: ^18.2.0 react-bootstrap: ^2.5.0 react-dom: ^18.2.0 - react-redux: ^8.0.2 - react-router-dom: ^6.3.0 + react-redux: ^8.0.4 + react-router-dom: ^6.4.2 redux: ^4.2.0 redux-logger: ^3.0.6 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor @@ -1580,109 +1592,109 @@ importers: immutable: 4.1.0 lodash.shuffle: 4.2.0 react: 18.2.0 - react-bootstrap: 2.5.0_zxljzmqdrxwnuenbkrz77w74uy + react-bootstrap: 2.5.0_rj7ozvcq3uehdlnj3cbwzbi5ce react-dom: 18.2.0_react@18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa - react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu + react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/base16': 1.0.2 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/redux-logger': 3.0.9 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools-instrument: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - jest: ^27.5.1 + eslint-plugin-jest: ^27.1.2 + jest: ^29.2.2 lodash: ^4.17.21 redux: ^4.2.0 rimraf: ^3.0.2 - rxjs: ^7.5.6 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + rxjs: ^7.5.7 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 - '@types/node': 16.11.47 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - jest: 27.5.1 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/jest': 29.2.0 + '@types/lodash': 4.14.186 + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2_@types+node@18.11.7 redux: 4.2.0 rimraf: 3.0.2 - rxjs: 7.5.6 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + rxjs: 7.5.7 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-log-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 @@ -1691,9 +1703,9 @@ importers: redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/lodash.debounce': 4.0.7 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 @@ -1702,111 +1714,112 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-remote: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/instrument': ^2.1.0 '@redux-devtools/utils': ^2.0.0 '@types/jsan': ^3.1.2 - '@types/node': ^16.11.47 + '@types/node': ^18.11.7 '@types/rn-host-detect': ^1.2.0 '@types/socketcluster-client': ^16.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 jsan: ^3.1.14 querystring: ^0.2.1 redux: ^4.2.0 rimraf: ^3.0.2 rn-host-detect: ^1.2.0 - socketcluster-client: ^16.1.1 - typescript: ~4.7.4 + socketcluster-client: ^17.1.0 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/instrument': link:../redux-devtools-instrument '@redux-devtools/utils': link:../redux-devtools-utils jsan: 3.1.14 querystring: 0.2.1 rn-host-detect: 1.2.0 - socketcluster-client: 16.1.1 + socketcluster-client: 17.1.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/jsan': 3.1.2 - '@types/node': 16.11.47 + '@types/node': 18.11.7 '@types/rn-host-detect': 1.2.0 '@types/socketcluster-client': 16.0.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-rtk-query-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@redux-devtools/ui': ^1.3.0 - '@reduxjs/toolkit': ^1.8.4 + '@reduxjs/toolkit': ^1.8.6 '@testing-library/jest-dom': ^5.16.5 - '@testing-library/react': ^13.3.0 + '@testing-library/react': ^13.4.0 '@types/hex-rgba': ^1.0.1 - '@types/jest': ^27.5.2 - '@types/lodash': ^4.14.182 + '@types/jest': ^29.2.0 + '@types/lodash': ^4.14.186 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jss: ^10.9.2 jss-preset-default: ^10.9.2 lodash.debounce: ^4.0.8 @@ -1815,16 +1828,16 @@ importers: react-base16-styling: ^0.9.1 react-dom: ^18.2.0 react-json-tree: ^0.17.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 hex-rgba: 1.0.2 @@ -1837,248 +1850,249 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools - '@reduxjs/toolkit': 1.8.4_kkwg4cbsojnjnupd3btipussee + '@reduxjs/toolkit': 1.8.6_kuo2ie247izvzll3jejufdtq3q '@testing-library/jest-dom': 5.16.5 - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/hex-rgba': 1.0.1 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash.debounce': 4.0.7 - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-redux: 8.0.2_aaa45f7jnlnm2uprinsrzxzaje + react-redux: 8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-rtk-query-monitor/demo: specifiers: - '@babel/core': ^7.18.10 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@chakra-ui/react': ^2.2.1 - '@emotion/react': ^11.10.0 - '@emotion/styled': ^11.10.0 - '@mswjs/data': ^0.10.1 + '@babel/runtime': ^7.19.4 + '@chakra-ui/react': ^2.3.6 + '@emotion/react': ^11.10.4 + '@emotion/styled': ^11.10.4 + '@mswjs/data': ^0.10.2 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/rtk-query-monitor': ^3.1.0 - '@reduxjs/toolkit': ^1.8.4 + '@reduxjs/toolkit': ^1.8.6 '@types/copy-webpack-plugin': ^8.0.1 - '@types/node': ^16.11.47 - '@types/react': ^18.0.17 + '@types/node': ^18.11.7 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 - framer-motion: ^7.1.0 + framer-motion: ^7.6.1 html-webpack-plugin: ^5.5.0 - msw: ^0.44.2 + msw: ^0.47.4 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 - react-redux: ^8.0.2 - react-router-dom: ^6.3.0 + react-redux: ^8.0.4 + react-router-dom: ^6.4.2 style-loader: ^3.3.1 - styled-components: ^5.3.5 + styled-components: ^5.3.6 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: - '@babel/runtime': 7.18.9 - '@chakra-ui/react': 2.2.1_jqesa6ebkoapfeenc26drtibfe - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly - '@mswjs/data': 0.10.1_typescript@4.7.4 + '@babel/runtime': 7.19.4 + '@chakra-ui/react': 2.3.6_4a5gkdj7phvhqinmegnu2kpw7m + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty + '@mswjs/data': 0.10.2_typescript@4.8.4 '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. - '@reduxjs/toolkit': 1.8.4_kkwg4cbsojnjnupd3btipussee - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y - msw: 0.44.2_typescript@4.7.4 + '@reduxjs/toolkit': 1.8.6_kuo2ie247izvzll3jejufdtq3q + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y + msw: 0.47.4_typescript@4.8.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 - react-redux: 8.0.2_76am3hp3mjvgy3cckgdecixdi4 - react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + react-redux: 8.0.4_5uumaiclxbdbzaqafclbf6maf4 + react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.10.0 - '@types/node': 16.11.47 - '@types/react': 18.0.17 + '@types/node': 18.11.7 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde copy-webpack-plugin: 11.0.0_webpack@5.74.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools-serialize: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 - '@types/jest': ^27.5.2 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 + eslint-plugin-jest: ^27.1.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 jsan: ^3.1.14 rimraf: ^3.0.2 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jsan: 3.1.14 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/jest': 27.5.2 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2 rimraf: 3.0.2 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 packages/redux-devtools-slider-monitor: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@redux-devtools/ui': ^1.3.0 - '@rollup/plugin-babel': ^5.3.1 - '@types/node': ^16.11.47 + '@rollup/plugin-babel': ^6.0.0 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - rollup: ^2.77.3 - rollup-plugin-typescript2: ^0.32.1 + rollup: ^3.2.3 + rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools - '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i - '@types/node': 16.11.47 - '@types/react': 18.0.17 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@types/node': 18.11.7 + '@types/react': 18.0.21 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - rollup: 2.77.3 - rollup-plugin-typescript2: 0.32.1_u7uwnjpwzdscdmf57dt35g5b44 + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools-slider-monitor/examples/todomvc: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -2086,21 +2100,21 @@ importers: '@redux-devtools/log-monitor': ^4.0.0 '@redux-devtools/slider-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.47 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 - classnames: ^2.3.1 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 + classnames: ^2.3.2 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -2108,121 +2122,124 @@ importers: react: ^18.2.0 react-dom: ^18.2.0 react-is: ^18.2.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 style-loader: ^3.3.1 - styled-components: ^5.3.5 + styled-components: ^5.3.6 todomvc-app-css: ^2.4.2 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: '@redux-devtools/core': link:../../../redux-devtools '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor '@redux-devtools/slider-monitor': link:../.. - classnames: 2.3.1 + classnames: 2.3.2 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/classnames': 2.3.1 - '@types/node': 16.11.47 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools-ui: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@rjsf/core': ^4.2.3 - '@storybook/addon-essentials': ^6.5.10 - '@storybook/react': ^6.5.10 - '@testing-library/dom': ^8.17.1 - '@testing-library/react': ^13.3.0 + '@storybook/addon-essentials': ^6.5.12 + '@storybook/builder-webpack5': ^6.5.13 + '@storybook/manager-webpack5': ^6.5.13 + '@storybook/react': ^6.5.12 + '@testing-library/dom': ^8.19.0 + '@testing-library/react': ^13.4.0 '@testing-library/user-event': ^14.4.3 '@types/base16': ^1.0.2 '@types/codemirror': ^5.60.5 '@types/color': ^3.0.3 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/json-schema': ^7.0.11 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 base16: ^1.0.0 - codemirror: ^5.65.7 + codemirror: ^5.65.9 color: ^4.2.3 - csstype: ^3.1.0 - eslint: ^8.21.0 + csstype: ^3.1.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.8.2 - eslint-plugin-react: ^7.30.1 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 ncp: ^2.0.0 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 - react-select: ^5.4.0 + react-select: ^5.5.2 redux-devtools-themes: ^1.0.0 require-from-string: ^2.0.2 rimraf: ^3.0.2 simple-element-resize-detector: ^1.3.0 - styled-components: ^5.3.5 - stylelint: ^14.10.0 + styled-components: ^5.3.6 + stylelint: ^14.14.0 stylelint-config-prettier: ^9.0.3 - stylelint-config-standard: ^25.0.0 + stylelint-config-standard: ^29.0.0 stylelint-config-styled-components: ^0.1.1 stylelint-processor-styled-components: ^1.10.0 - ts-jest: ^27.1.5 - typescript: ~4.7.4 + ts-jest: ^29.0.3 + typescript: ~4.8.4 webpack: ^5.74.0 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@rjsf/core': 4.2.3_react@18.2.0 '@types/base16': 1.0.2 '@types/codemirror': 5.60.5 @@ -2231,74 +2248,77 @@ importers: '@types/redux-devtools-themes': 1.0.0 '@types/simple-element-resize-detector': 1.3.0 base16: 1.0.0 - codemirror: 5.65.7 + codemirror: 5.65.9 color: 4.2.3 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 - react-select: 5.4.0_dvp6wxm7rs4sirs67lhxth6k7q + react-icons: 4.6.0_react@18.2.0 + react-select: 5.5.2_eat7hc23gfabdflnphmz6xfchm redux-devtools-themes: 1.0.0 simple-element-resize-detector: 1.3.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@storybook/addon-essentials': 6.5.10_egvqfdazsinegjdfjpjsjh6fyi - '@storybook/react': 6.5.10_v3px4sshlpmiq6tqqws5mil25u - '@testing-library/dom': 8.17.1 - '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y - '@testing-library/user-event': 14.4.3_wl4iynrlixafokvgqnhzlvigei + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@storybook/addon-essentials': 6.5.12_fozf472gp4suu37hs2nje52g7q + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/react': 6.5.12_z7mbqtlf63qmqxqctdyj6vphwm + '@testing-library/dom': 8.19.0 + '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/user-event': 14.4.3_aaq3sbffpfe3jnxzm2zngsddei '@types/color': 3.0.3 - '@types/jest': 27.5.2 - '@types/react': 18.0.17 + '@types/jest': 29.2.0 + '@types/react': 18.0.21 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm - csstype: 3.1.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-jest: 26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde + csstype: 3.1.1 + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 ncp: 2.0.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 require-from-string: 2.0.2 rimraf: 3.0.2 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba - stylelint: 14.10.0 - stylelint-config-prettier: 9.0.3_stylelint@14.10.0 - stylelint-config-standard: 25.0.0_stylelint@14.10.0 + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba + stylelint: 14.14.0 + stylelint-config-prettier: 9.0.3_stylelint@14.14.0 + stylelint-config-standard: 29.0.0_stylelint@14.14.0 stylelint-config-styled-components: 0.1.1 stylelint-processor-styled-components: 1.10.0 - ts-jest: 27.1.5_5ad62742t534jpseix4ezmbr64 - typescript: 4.7.4 + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + typescript: 4.8.4 webpack: 5.74.0 packages/redux-devtools-utils: specifiers: - '@babel/cli': ^7.18.10 - '@babel/core': ^7.18.10 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-transform-runtime': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.19.3 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-transform-runtime': ^7.19.1 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.18.9 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@redux-devtools/serialize': ^0.4.1 '@types/get-params': ^0.1.0 '@types/jsan': ^3.1.2 - '@types/lodash': ^4.14.182 - '@types/node': ^16.11.47 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - eslint: ^8.21.0 + '@types/lodash': ^4.14.186 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 get-params: ^0.1.2 immutable: ^4.1.0 @@ -2307,9 +2327,9 @@ importers: nanoid: ^3.3.4 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.7.4 + typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/serialize': link:../redux-devtools-serialize '@types/get-params': 0.1.0 @@ -2320,57 +2340,57 @@ importers: nanoid: 3.3.4 redux: 4.2.0 devDependencies: - '@babel/cli': 7.18.10_@babel+core@7.18.10 - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_xqt7ek4fk233nrovqiamjvck4u - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/cli': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.3 + '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y + '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/jsan': 3.1.2 - '@types/lodash': 4.14.182 - '@types/node': 16.11.47 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + '@types/lodash': 4.14.186 + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 - typescript: 4.7.4 + typescript: 4.8.4 packages/redux-devtools/examples/counter: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/log-monitor': ^4.0.0 - '@types/node': ^16.11.47 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 redux-thunk: ^2.4.1 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor @@ -2378,113 +2398,113 @@ importers: prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@types/node': 16.11.47 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages/redux-devtools/examples/todomvc: specifiers: - '@babel/core': ^7.18.10 - '@babel/preset-env': ^7.18.10 + '@babel/core': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/log-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.47 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 - '@types/react': ^18.0.17 + '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 - '@types/webpack-env': ^1.17.0 - '@typescript-eslint/eslint-plugin': ^5.33.0 - '@typescript-eslint/parser': ^5.33.0 - babel-loader: ^8.2.5 - classnames: ^2.3.1 + '@types/webpack-env': ^1.18.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 + classnames: ^2.3.2 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.21.0 + eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.30.1 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-redux: ^8.0.2 + react-redux: ^8.0.4 redux: ^4.2.0 style-loader: ^3.3.1 todomvc-app-css: ^2.4.2 ts-node: ^10.9.1 - typescript: ~4.7.4 + typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.10.0 + webpack-dev-server: ^4.11.1 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor - classnames: 2.3.1 + classnames: 2.3.2 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-redux: 8.0.2_ps4ywwwjjeajezffxxirqk36qa + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/classnames': 2.3.1 - '@types/node': 16.11.47 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - '@types/webpack-env': 1.17.0 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + '@types/webpack-env': 1.18.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - fork-ts-checker-webpack-plugin: 7.2.13_xnp4kzegbjokq62cajex2ovgkm + eslint: 8.25.0 + eslint-config-prettier: 8.5.0_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - typescript: 4.7.4 + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages: @@ -2497,10 +2517,10 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.17 - /@apollo/protobufjs/1.2.4: - resolution: {integrity: sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng==} + /@apollo/protobufjs/1.2.6: + resolution: {integrity: sha512-Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw==} hasBin: true requiresBuild: true dependencies: @@ -2519,104 +2539,104 @@ packages: long: 4.0.0 dev: false - /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@16.5.0: + /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false /@apollo/utils.keyvaluecache/1.0.1: resolution: {integrity: sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==} dependencies: - '@apollo/utils.logger': 1.0.0 - lru-cache: 7.10.1 + '@apollo/utils.logger': 1.0.1 + lru-cache: 7.14.0 dev: false - /@apollo/utils.logger/1.0.0: - resolution: {integrity: sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==} + /@apollo/utils.logger/1.0.1: + resolution: {integrity: sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA==} dev: false - /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.5.0: + /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.removealiases/1.0.0_graphql@16.5.0: + /@apollo/utils.removealiases/1.0.0_graphql@16.6.0: resolution: {integrity: sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.sortast/1.1.0_graphql@16.5.0: + /@apollo/utils.sortast/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 lodash.sortby: 4.7.0 dev: false - /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@16.5.0: + /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@16.6.0: resolution: {integrity: sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.usagereporting/1.0.0_graphql@16.5.0: + /@apollo/utils.usagereporting/1.0.0_graphql@16.6.0: resolution: {integrity: sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@16.5.0 - '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@16.5.0 - '@apollo/utils.removealiases': 1.0.0_graphql@16.5.0 - '@apollo/utils.sortast': 1.1.0_graphql@16.5.0 - '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@16.5.0 - apollo-reporting-protobuf: 3.3.2 - graphql: 16.5.0 + '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@16.6.0 + '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@16.6.0 + '@apollo/utils.removealiases': 1.0.0_graphql@16.6.0 + '@apollo/utils.sortast': 1.1.0_graphql@16.6.0 + '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@16.6.0 + apollo-reporting-protobuf: 3.3.3 + graphql: 16.6.0 dev: false - /@apollographql/apollo-tools/0.5.4_graphql@16.5.0: + /@apollographql/apollo-tools/0.5.4_graphql@16.6.0: resolution: {integrity: sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==} engines: {node: '>=8', npm: '>=6'} peerDependencies: graphql: ^14.2.1 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false /@apollographql/graphql-playground-html/1.6.29: resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==} dependencies: - xss: 1.0.13 + xss: 1.0.14 dev: false - /@babel/cli/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-dLvWH+ZDFAkd2jPBSghrsFBuXrREvFwjpDycXbmUoeochqKYe4zNSLEJYErpLg8dvxvZYe79/MkN461XCwpnGw==} + /@babel/cli/7.19.3_@babel+core@7.19.3: + resolution: {integrity: sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@jridgewell/trace-mapping': 0.3.13 + '@babel/core': 7.19.3 + '@jridgewell/trace-mapping': 0.3.17 commander: 4.1.1 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fs-readdir-recursive: 1.1.0 glob: 7.2.3 make-dir: 2.1.0 @@ -2626,21 +2646,14 @@ packages: chokidar: 3.5.3 dev: true - /@babel/code-frame/7.16.7: - resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.17.12 - dev: true - /@babel/code-frame/7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.18.8: - resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} + /@babel/compat-data/7.19.4: + resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==} engines: {node: '>=6.9.0'} /@babel/core/7.12.9: @@ -2648,14 +2661,14 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.11 + '@babel/generator': 7.19.5 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helpers': 7.19.4 + '@babel/parser': 7.19.4 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 - convert-source-map: 1.8.0 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -2667,21 +2680,21 @@ packages: - supports-color dev: true - /@babel/core/7.18.10: - resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==} + /@babel/core/7.19.3: + resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.11 + '@babel/generator': 7.19.5 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helpers': 7.19.4 + '@babel/parser': 7.19.4 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 - convert-source-map: 1.8.0 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -2689,109 +2702,93 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.18.9_xqt7ek4fk233nrovqiamjvck4u: - resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} + /@babel/eslint-parser/7.19.1_v37dtiefj2fmp2s4n57pt7n35y: + resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} 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.10 - eslint: 8.21.0 - eslint-scope: 5.1.1 + '@babel/core': 7.19.3 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 8.25.0 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/generator/7.18.12: - resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==} + /@babel/generator/7.19.5: + resolution: {integrity: sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - /@babel/generator/7.18.2: - resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.4 - '@jridgewell/gen-mapping': 0.3.1 - jsesc: 2.5.2 - dev: true - - /@babel/helper-annotate-as-pure/7.16.7: - resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.10 - /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 - dev: true + '@babel/types': 7.19.4 /@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.18.6 - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 dev: true - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: + resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 + '@babel/compat-data': 7.19.4 + '@babel/core': 7.19.3 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.4 + browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@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-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10: - resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.1.0 + regexpu-core: 5.2.1 dev: true - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.10: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.19.3: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/traverse': 7.18.11 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/traverse': 7.19.4 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -2800,14 +2797,14 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10: - resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.3: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -2816,10 +2813,6 @@ packages: - supports-color dev: true - /@babel/helper-environment-visitor/7.18.2: - resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} - engines: {node: '>=6.9.0'} - /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} @@ -2828,66 +2821,47 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 dev: true - /@babel/helper-function-name/7.17.9: - resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.18.10 - - /@babel/helper-function-name/7.18.9: - resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.18.10 - - /@babel/helper-hoist-variables/7.16.7: - resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 /@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.10 + '@babel/types': 7.19.4 dev: true - /@babel/helper-module-imports/7.16.7: - resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.10 - /@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.10 + '@babel/types': 7.19.4 - /@babel/helper-module-transforms/7.18.9: - resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + /@babel/helper-module-transforms/7.19.0: + resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.19.4 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color @@ -2895,296 +2869,268 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 dev: true /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-plugin-utils/7.17.12: - resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-plugin-utils/7.18.9: - resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + /@babel/helper-plugin-utils/7.19.0: + resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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.10 + '@babel/helper-wrap-function': 7.19.0 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.18.9: - resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} + /@babel/helper-replace-supers/7.19.1: + resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} 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.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-simple-access/7.19.4: + resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 /@babel/helper-skip-transparent-expression-wrappers/7.18.9: resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 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.10 + '@babel/types': 7.19.4 - /@babel/helper-string-parser/7.18.10: - resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.16.7: - resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-validator-identifier/7.18.6: - resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} /@babel/helper-validator-option/7.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==} + /@babel/helper-wrap-function/7.19.0: + resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.18.9: - resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + /@babel/helpers/7.19.4: + resolution: {integrity: sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 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: github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2 - js-tokens: 4.0.0 - dev: true - /@babel/highlight/7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 chalk: github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2 js-tokens: 4.0.0 - /@babel/parser/7.18.11: - resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==} + /@babel/parser/7.19.4: + resolution: {integrity: sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.19.4 - /@babel/parser/7.18.5: - resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.18.4 - dev: true - - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} + /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.3: + resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.18.10: - resolution: {integrity: sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==} + /@babel/plugin-proposal-decorators/7.19.3_@babel+core@7.19.3: + resolution: {integrity: sha512-MbgXtNXqo7RTKYIXVchVJGPvaVufQH3pxvQyfbGvNw1DObIhph+PesYXJTcd8J4DdWibvf6Z2eanOyItX8WnJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.10 - charcodes: 0.2.0 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==} + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.19.3: + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -3193,198 +3139,198 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + '@babel/compat-data': 7.19.4 + '@babel/core': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.3: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==} + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.18.10: - resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.19.3: + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==} + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.3: + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: @@ -3393,43 +3339,43 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: @@ -3438,332 +3384,323 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.3: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.17.12 - dev: true - - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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.10 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} + /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} + /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==} + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.3 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-function-name': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helper-plugin-utils': 7.19.0 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-simple-access': 7.18.6 + '@babel/core': 7.19.3 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-simple-access': 7.19.4 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} + /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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/helper-module-transforms': 7.19.0 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-validator-identifier': 7.19.1 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10: - resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.3: + resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -3775,196 +3712,196 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 dev: true - /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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.10 - '@babel/types': 7.18.10 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 + '@babel/types': 7.19.4 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==} + /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.19.3: + resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@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.10 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.19.0 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3: + resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.10: - resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==} + /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.3: + resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.3: 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.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/polyfill/7.12.1: @@ -3972,156 +3909,156 @@ packages: deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. dependencies: core-js: 2.6.12 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: false - /@babel/preset-env/7.18.10_@babel+core@7.18.10: - resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} + /@babel/preset-env/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/compat-data': 7.19.4 + '@babel/core': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 - '@babel/types': 7.18.10 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 - core-js-compat: 3.23.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.3 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.3 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.3 + '@babel/preset-modules': 0.1.5_@babel+core@7.19.3 + '@babel/types': 7.19.4 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3 + core-js-compat: 3.25.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.17.12_@babel+core@7.18.10: - resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==} + /@babel/preset-flow/7.18.6_@babel+core@7.19.3: + resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.10 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.3 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.18.10: + /@babel/preset-modules/0.1.5_@babel+core@7.19.3: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 - '@babel/types': 7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3 + '@babel/types': 7.19.4 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.18.10: + /@babel/preset-react/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.3 dev: true - /@babel/preset-typescript/7.18.6_@babel+core@7.18.10: + /@babel/preset-typescript/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.10 + '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.18.9_@babel+core@7.18.10: + /@babel/register/7.18.9_@babel+core@7.19.3: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4129,112 +4066,70 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/runtime-corejs3/7.18.3: - resolution: {integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==} + /@babel/runtime-corejs3/7.19.4: + resolution: {integrity: sha512-HzjQ8+dzdx7dmZy4DQ8KV8aHi/74AjEbBGTFutBmg/pd3dY5/q1sfuOGPTFGEytlQhWoeVXqcK5BwMgIkRkNDQ==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.23.1 - regenerator-runtime: 0.13.9 + core-js-pure: 3.25.5 + regenerator-runtime: 0.13.10 dev: true - /@babel/runtime/7.18.3: - resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} + /@babel/runtime/7.19.4: + resolution: {integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.9 - dev: false - - /@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==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/parser': 7.18.5 - '@babel/types': 7.18.4 - dev: true + regenerator-runtime: 0.13.10 /@babel/template/7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.11 - '@babel/types': 7.18.10 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 - /@babel/traverse/7.18.11: - resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==} + /@babel/traverse/7.19.4: + resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 + '@babel/generator': 7.19.5 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.11 - '@babel/types': 7.18.10 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.18.5: - resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} + /@babel/traverse/7.19.4_supports-color@5.5.0: + resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 + '@babel/generator': 7.19.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.11 - '@babel/types': 7.18.10 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse/7.18.5_supports-color@5.5.0: - resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.11 - '@babel/types': 7.18.10 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.18.10: - resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==} + /@babel/types/7.19.4: + resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.18.10 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@babel/types/7.18.4: - resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - to-fast-properties: 2.0.0 - dev: true - /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -4243,479 +4138,696 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm: - resolution: {integrity: sha512-3fu5q6I6QtYVfpBHK+xxIkZ3b/spHgDongXuKuLEJZswcSU8+X5B9YmNfv73ZMRKO3PboYtyHAmZZo4pYqzbbA==} + /@chakra-ui/accordion/2.1.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 3.0.2_react@18.2.0 - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.2_enons6ofcbv6wnhdfce7mzlh5m - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/descendant': 3.0.10_react@18.2.0 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/alert/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-QqXFYeX74mHSVp5Peqc+0CkYGQlvKQzpvOKkn00M3ZczsgVxoDNrUv0PI2V3fuZDwo1ziLBGJsjgMFbJ+JrYgA==} + /@chakra-ui/alert/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/anatomy/2.0.1_@chakra-ui+system@2.1.3: - resolution: {integrity: sha512-lbOUfPmCtgIe0G7Iu6C2MaFP3FKOHgKWxDrYc3498TQ7/z5N1r7AO6jB+gFRGDbxJNLjRGOLG7tV0bufagGTUw==} - peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' - dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 + /@chakra-ui/anatomy/2.0.7: + resolution: {integrity: sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg==} dev: false - /@chakra-ui/avatar/2.0.3_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-LbCQBJzDLkx2jqOjuEG5zOWA5njEAhUlQ3GnSkqOGaiDQWgM6eSLxWkgpI5fKhBlZ2OvMxjSSFaCCpf8wvU+YQ==} + /@chakra-ui/avatar/2.2.0_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/image': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-rJOkgaWqtxaPfISNXjhl9J4efD96FBnQnAKQJZtlG3WpWmIse/BPv1Pg4OCexPTBQQSwFkbTBgBD0lWD/i2UUw==} + /@chakra-ui/breadcrumb/2.1.0_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/button/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-l2RE1031HR+vVqNQhfrJCuC1OzKTTLmyA8+ScGZhjV6G4LWGzU5LfsyGAXq53l1lFcx6O9XJzfgnxAvnGGKJsw==} + /@chakra-ui/breakpoint-utils/2.0.4: + resolution: {integrity: sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg==} + dev: false + + /@chakra-ui/button/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.1.0_jrbr2z4q4th6w7e7r7y6gcaakm: - resolution: {integrity: sha512-LPKhJM/IMp8LKdr52PVfSGAnmqcgwTMPcjyWT8jXQ3OhEXRUKc5rSUORmPtJmffNLjLq1nPCcSMWQsVHhJ9MXw==} + /@chakra-ui/checkbox/2.2.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/visually-hidden': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@zag-js/focus-visible': 0.1.0 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/clickable/2.0.2_react@18.2.0: - resolution: {integrity: sha512-Zn0Hd9BCGVNMOXerUlfmOdCeVAyl6XYo5WC/Skm/REAQygk22/WjV42sLeT+1+bpOLpSvO4ZnheXfD5sIuDdfA==} + /@chakra-ui/clickable/2.0.10_react@18.2.0: + resolution: {integrity: sha512-G6JdR6yAMlXpfjOJ70W2FL7aUwNuomiMFtkneeTpk7Q42bJ5iGHfYlbZEx5nJd8iB+UluXVM4xlhMv2MyytjGw==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 react: 18.2.0 dev: false - /@chakra-ui/close-button/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-aIpkIQdmbuKTiM1IuZRI4iUPzcaWla8mXysKIL+M6g0QbpaO/Xw3eucnAS0qO24djCzkcCZSLnHsEimBOBJdgA==} + /@chakra-ui/close-button/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/color-mode/2.0.4_react@18.2.0: - resolution: {integrity: sha512-DIR6CSPlkmi92LDR3IhjIediLk7GFWttlTUvJQP06ZUvN+iCpd5TjgchxOYzqlP4T9W0L62eZXsluOxmRF/JSQ==} + /@chakra-ui/color-mode/2.1.9_react@18.2.0: + resolution: {integrity: sha512-0kx0I+AQon8oS23/X+qMtnhsv/1BUulyJvU56p3Uh8CRaBfgJ7Ly9CerShoUL+5kadu6hN1M9oty4cugaCwv2w==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 react: 18.2.0 dev: false - /@chakra-ui/control-box/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-D3vQoyCRjAwCmB39jFvTv+fAXmALLhScXe6s/S7rdgSYxuSEksuGlNjvBUYAVwDXeE2sjDoeWMvrHydRGv44Bw==} + /@chakra-ui/control-box/2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/counter/2.0.2_react@18.2.0: - resolution: {integrity: sha512-mRYrnu1924spsPU5GaHSbaoX28Gbzf8PDkO6Y1R6r6MQKTLjpdbkFmyG0QyEixD8aoaSaCO7iVbJRnUJ+dhlww==} + /@chakra-ui/counter/2.0.10_react@18.2.0: + resolution: {integrity: sha512-MZK8UKUZp4nFMd+GlV/cq0NIARS7UdlubTuCx+wockw9j2JI5OHzsyK0XiWuJiq5psegSTzpbtT99QfAUm3Yiw==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/number-utils': 2.0.4 + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 react: 18.2.0 dev: false - /@chakra-ui/css-reset/2.0.1_g566eayvhbit5eqxocdac5mhdm: - resolution: {integrity: sha512-8RhAC7l5RHp9hNDN2M2feZ2wPaoSrgxzqx6VqLTIul2lwucpp1LTlrDlPCBMJe8fp51Q83IOCW4882ktsXxktA==} + /@chakra-ui/css-reset/2.0.8_gyryel6m34lsxtsejhafetjriq: + resolution: {integrity: sha512-VuDD1rk1pFc+dItk4yUcstyoC9D2B35hatHDBtlPMqTczFAzpbgVJJYgEHANatXGfulM5SdckmYEIJ3Tac1Rtg==} peerDependencies: '@emotion/react': '>=10.0.35' react: '>=18 || 18' dependencies: - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu react: 18.2.0 dev: false - /@chakra-ui/descendant/3.0.2_react@18.2.0: - resolution: {integrity: sha512-BV4IpONYr52V7rJnEYj5Ej946HD2BTOgOQpSB/LMeITfkp51/O9pOayNoVghYW7cFts+Opy4YmvLcuxFhWrD3Q==} + /@chakra-ui/descendant/3.0.10_react@18.2.0: + resolution: {integrity: sha512-MHH0Qdm0fGllGP2xgx4WOycmrpctyyEdGw6zxcfs2VqZNlrwmjG3Yb9eVY+Q7UmEv5rwAq6qRn7BhQxgSPn3Cg==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 react: 18.2.0 dev: false - /@chakra-ui/editable/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-hZBD4K1i3a8+RnW5jaoVfHeEm0zDKcyZ7yZCNGmmM7sz2LAw/LdE6+IKBoEbXc5Gf8KnEs9eH/TBcPDhS9KUQg==} + /@chakra-ui/dom-utils/2.0.3: + resolution: {integrity: sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA==} + dev: false + + /@chakra-ui/editable/2.0.13_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-focus-on-pointer-down': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/shared-utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/focus-lock/2.0.3_ug65io7jkbhmo4fihdmbrh3ina: - resolution: {integrity: sha512-QcKUy0n26T1qOEoqk9rDmr9tumZs/+VXh9gIhWYKlmScm8Dy87qCMfOJ2M8/sUCQcqypl8SwlONQdiCZ99FUFQ==} + /@chakra-ui/event-utils/2.0.5: + resolution: {integrity: sha512-VXoOAIsM0PFKDlhm+EZxkWlUXd5UFTb/LTux3y3A+S9G5fDxLRvpiLWByPUgTFTCDFcgTCF+YnQtdWJB4DLyxg==} + dev: false + + /@chakra-ui/focus-lock/2.0.12_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-NvIP59A11ZNbxXZ3qwxSiQ5npjABkpSbTIjK0uZ9bZm5LMfepRnuuA19VsVlq31/BYV9nHFAy6xzIuG+Qf9xMA==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/dom-utils': 2.0.3 react: 18.2.0 - react-focus-lock: 2.9.1_ug65io7jkbhmo4fihdmbrh3ina + react-focus-lock: 2.9.1_iapumuv4e6jcjznwuxpf4tt22e transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-uelLKIZgrcahvodEAd2WjdCJUus9q9Wq++KliN+8VIhPti89s8eewyDh3xWvurbgby+oGkHyjDMmxHrkfa3YYQ==} + /@chakra-ui/form-control/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/hooks/2.0.2_react@18.2.0: - resolution: {integrity: sha512-3B4zsl51tevmO6T6xUKcclwxf4FClKtScaNvb8jMmVczTGRL7WhZ6LxXeYUJMms11C8W9uZczE5yXSP0qweeAw==} + /@chakra-ui/hooks/2.1.0_react@18.2.0: + resolution: {integrity: sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-utils': 2.0.8_react@18.2.0 + '@chakra-ui/utils': 2.0.11 compute-scroll-into-view: 1.0.14 copy-to-clipboard: 3.3.1 react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-sas37byldn5O/TTIKHzxHBujEYqVPXegisoMqutLtF60fpXnb62aG1JTyorXSG3zJxJWQW7+AvjbOGyWKHXc0Q==} + /@chakra-ui/icon/3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/shared-utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/image/2.0.3_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-GLMJXLdR0y7CCZ0hKHf6YZLb8dlPpx4vdXWTbtLnIU5EfGIOSiCU4N3+0KcjvMtDB69hBr5W4h1XMJNpetP1EA==} + /@chakra-ui/image/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/input/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-ODwdlsLha+EBPFSnCEqWjlndeXaL4cXvCk4rrKuvs9vexhOBr+X9V6KNn5Rmn/bXah+Wsrn+5g6T9V7BvRES3Q==} + /@chakra-ui/input/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/object-utils': 2.0.4 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/shared-utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/layout/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-iElUGxj8YmVGcaCQlQovJJC4APHMh5vwlZU37IC6W3FdJzv+orVhzbuB98tuzfWHxjKQZeGhcz7+npIkN87D5w==} + /@chakra-ui/layout/2.1.9_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/breakpoint-utils': 2.0.4 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/object-utils': 2.0.4 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/shared-utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/live-region/2.0.2_react@18.2.0: - resolution: {integrity: sha512-aRJRaJInqNkFRRIjW57SPNhj7ngxh0xkdQZeOohvOcd7VbjvHNgXO1glKjIXRzSRHyteCdGUzb/jo68NizE3bQ==} + /@chakra-ui/lazy-utils/2.0.2: + resolution: {integrity: sha512-MTxutBJZvqNNqrrS0722cI7qrnGu0yUQpIebmTxYwI+F3cOnPEKf5Ni+hrA8hKcw4XJhSY4npAPPYu1zJbOV4w==} + dev: false + + /@chakra-ui/live-region/2.0.10_react@18.2.0: + resolution: {integrity: sha512-eQ2ZIreR/plzi/KGszDYTi1TvIyGEBcPiWP52BQOS7xwpzb1vsoR1FgFAIELxAGJvKnMUs+9qVogfyRBX8PdOg==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.2 react: 18.2.0 dev: false - /@chakra-ui/media-query/3.1.0_swpbf3sk2xubz3bowba44eqanu: - resolution: {integrity: sha512-E05PUom+izNILJff0Yje8OMWHVN5C2H2A/F0aaptIJ+600YNWn5CuGvdlSMb/VWHziHT7u5xyrtv0mdbxMlYBA==} + /@chakra-ui/media-query/3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' - '@chakra-ui/theme': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/react-env': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/breakpoint-utils': 2.0.4 + '@chakra-ui/react-env': 2.0.10_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/menu/2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm: - resolution: {integrity: sha512-hW1XBK0ZOEvnrwurqZiQ7+CFW8Olfk82BilNOulQ7LxQ2hQAAg4JBQxs755jVEtqhSAP+oe/yuWEabWtCWLGQw==} + /@chakra-ui/menu/2.1.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 2.0.2_react@18.2.0 - '@chakra-ui/descendant': 3.0.2_react@18.2.0 - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/popper': 3.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.2_enons6ofcbv6wnhdfce7mzlh5m - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/clickable': 2.0.10_react@18.2.0 + '@chakra-ui/descendant': 3.0.10_react@18.2.0 + '@chakra-ui/lazy-utils': 2.0.2 + '@chakra-ui/popper': 3.0.8_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-animation-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-disclosure': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-focus-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-outside-click': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/modal/2.0.3_afnayjro3tvoh37b7xw3myydwq: - resolution: {integrity: sha512-GS1Apvrsr8scM1d/awVgJdcheITja4fMKTKwWljstw7SfAMOPc4skKIg+MzriLvtIialm1WFxOWYfiQ5MKAAcQ==} + /@chakra-ui/modal/2.2.2_atjqpbku7q7yrg5rd36sdz5ug4: + resolution: {integrity: sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/focus-lock': 2.0.3_ug65io7jkbhmo4fihdmbrh3ina - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.2_enons6ofcbv6wnhdfce7mzlh5m - '@chakra-ui/utils': 2.0.2 - aria-hidden: 1.1.3 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/focus-lock': 2.0.12_iapumuv4e6jcjznwuxpf4tt22e + '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + aria-hidden: 1.2.1_iapumuv4e6jcjznwuxpf4tt22e + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.4_ug65io7jkbhmo4fihdmbrh3ina + react-remove-scroll: 2.5.5_iapumuv4e6jcjznwuxpf4tt22e transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/number-input/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-7RT5TMCSPtghX7M2Uy2cruLwO0uYCzIa49tQFDzQ2YCGMuRimzma9i0nuOqQz2yGHxa3C8WJJoO91jPKzCjIbg==} + /@chakra-ui/number-input/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/counter': 2.0.2_react@18.2.0 - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/counter': 2.0.10_react@18.2.0 + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-interval': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/pin-input/2.0.3_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-tnISIFno2Nqmh5ZjXyRnUiyuw94xLpFWoVK9tTo/yoR5Llbh58BqRyybOZZpu3DIjuK9qy9M67KBhRdqkOLUFQ==} + /@chakra-ui/number-utils/2.0.4: + resolution: {integrity: sha512-MdYd29GboBoKaXY9jhbY0Wl+0NxG1t/fa32ZSIbU6VrfMsZuAMl4NEJsz7Xvhy50fummLdKn5J6HFS7o5iyIgw==} + dev: false + + /@chakra-ui/object-utils/2.0.4: + resolution: {integrity: sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ==} + dev: false + + /@chakra-ui/pin-input/2.0.15_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 3.0.2_react@18.2.0 - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/descendant': 3.0.10_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/popover/2.0.2_jrbr2z4q4th6w7e7r7y6gcaakm: - resolution: {integrity: sha512-i9Tsx+gpN470V7eLPng+lVK25DfUdQ44OAzWMUavIiutCtVJknZEPYbSr72JnT4NHBnr7b8rqUBEYq9+36LmlQ==} + /@chakra-ui/popover/2.1.1_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/popper': 3.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/lazy-utils': 2.0.2 + '@chakra-ui/popper': 3.0.8_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-animation-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-disclosure': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-focus-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-focus-on-pointer-down': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/popper/3.0.2_react@18.2.0: - resolution: {integrity: sha512-oEUsaFR4EPY3CvhEVeZNoa+mA/w+TvLlG3xlicIwv/3Fcfl6LD2Jhr6utnqAvHFxE/qRcUcXLX20ovy0Zrgm/Q==} + /@chakra-ui/popper/3.0.8_react@18.2.0: + resolution: {integrity: sha512-246eUwuCRsLpTPxn5T8D8T9/6ODqmmz6pRRJAjGnLlUB0gNHgjisBn0UDBic5Gbxcg0sqKvxOMY3uurbW5lXTA==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@popperjs/core': 2.11.5 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@popperjs/core': 2.11.6 react: 18.2.0 dev: false - /@chakra-ui/portal/2.0.2_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-bk8P/hxvGbKhEZSI2LAFwk98W7ivff3NwpFOHjsna0uuBPG772mEOXnxsHBsr2moGroMXdBOS++czHn1T3cHhw==} + /@chakra-ui/portal/2.0.10_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-VRYvVAggIuqIZ3IQ6XZ1b5ujjjOUgPk9PPdc9jssUngZa7RG+5NXNhgoM8a5TsXv6aPEolBOlDNWuxzRQ4RSSg==} peerDependencies: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/progress/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-nx/aDZGEAnRx6jC4RLbfoXTTEeHoHGVlwBTUx7OKPus+hopBVvXHpA/UH+H8OJ5nq0PJ6XaDPCHc1FTrK+j0aw==} + /@chakra-ui/progress/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/provider/2.0.6_tyh4ta3a3jg5wknldy4g2a7uiy: - resolution: {integrity: sha512-EwwFF8ib9L5OYTRJq450Uvk7DqQJA/W6TyBo2f7mUE0j56GmV8ZRdsaXGqqag/aopCS/1n+ZfpQvQr/qNhAQBQ==} + /@chakra-ui/provider/2.0.20_6xnkn2aqnlmdvuspwqrjexfduy: + resolution: {integrity: sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/css-reset': 2.0.1_g566eayvhbit5eqxocdac5mhdm - '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-env': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly + '@chakra-ui/css-reset': 2.0.8_gyryel6m34lsxtsejhafetjriq + '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-env': 2.0.10_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/utils': 2.0.11 + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/radio/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-f3YF7sL13qpbiqlFF8eGcL8lZeAmY3ZwqJk8m2v3Ofi0M7Et/CV00E1TxY5kK3tvDtmMXC5lILf5QlHHNgH6wQ==} + /@chakra-ui/radio/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@zag-js/focus-visible': 0.1.0 react: 18.2.0 dev: false - /@chakra-ui/react-env/2.0.2_react@18.2.0: - resolution: {integrity: sha512-iQdc58d1HjfkPi+CEoZNqY77oX94bsWpMie30UYIaTonc9OOH6r1WCGQc8cyQa3jKiX2m9v9IbnxZa9Z0rYrHw==} + /@chakra-ui/react-children-utils/2.0.3_react@18.2.0: + resolution: {integrity: sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.2 react: 18.2.0 dev: false - /@chakra-ui/react-utils/2.0.1_react@18.2.0: - resolution: {integrity: sha512-xLiTn7WeUo2e3zvo8zUGpICgIGsLCPpkVbjEKhr1jAV41urqEtwlLc6uGir595OYqAC8zFDqs4HXhHouqNEtiw==} + /@chakra-ui/react-context/2.0.4_react@18.2.0: + resolution: {integrity: sha512-eBITFkf7fLSiMZrSdhweK4fYr41WUNMEeIEOP2dCWolE7WgKxNYaYleC+iRGY0GeXkFM2KYywUtixjJe29NuVA==} peerDependencies: react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.2 react: 18.2.0 dev: false - /@chakra-ui/react/2.2.1_jqesa6ebkoapfeenc26drtibfe: - resolution: {integrity: sha512-m2vFICTUO3GivTkJROnTTJT+w8otcYMraKqOSdrAGmsjqtZAp8/FaGS+1bxzeZnZTszMn65LoLvlgBUDrTHhQA==} + /@chakra-ui/react-env/2.0.10_react@18.2.0: + resolution: {integrity: sha512-3Yab5EbFcCGYzEsoijy4eA3354Z/JoXyk9chYIuW7Uwd+K6g/R8C0mUSAHeTmfp6Fix9kzDgerO5MWNM87b8cA==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-types/2.0.3_react@18.2.0: + resolution: {integrity: sha512-1mJYOQldFTALE0Wr3j6tk/MYvgQIp6CKkJulNzZrI8QN+ox/bJOh8OVP4vhwqvfigdLTui0g0k8M9h+j2ub/Mw==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-animation-state/2.0.5_react@18.2.0: + resolution: {integrity: sha512-8gZIqZpMS5yTGlC+IqYoSrV13joiAYoeI0YR2t68WuDagcZ459OrjE57+gF04NLxfdV7eUgwqnpuv7IOLbJX/A==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/dom-utils': 2.0.3 + '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-callback-ref/2.0.4_react@18.2.0: + resolution: {integrity: sha512-he7EQfwMA4mwiDDKvX7cHIJaboCqf7UD3KYHGUcIjsF4dSc2Y8X5Ze4w+hmVZoJWIe4DWUzb3ili2SUm8eTgPg==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-controllable-state/2.0.5_react@18.2.0: + resolution: {integrity: sha512-JrZZpMX24CUyfDuyqDczw9Z9IMvjH8ujETHK0Zu4M0SIsX/q4EqOwwngUFL03I2gx/O38HfSdeX8hMu4zbTAGA==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-disclosure/2.0.5_react@18.2.0: + resolution: {integrity: sha512-kPLB9oxImASRhAbKfvfc03/lbAJbsXndEVRzd+nvvL+QZm2RRfnel3k6OIkWvGFOXXYOPE2+slLe8ZPwbTGg9g==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-event-listener/2.0.4_react@18.2.0: + resolution: {integrity: sha512-VqmalfKWMO8D21XuZO19WUtcP5xhbHXKzkggApTChZUN02UC5TC4pe0pYbDygoeUuNBhY+9lJKHeS08vYsljRg==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-focus-effect/2.0.5_react@18.2.0: + resolution: {integrity: sha512-sbe1QnsXXfjukM+laxbKnT0UnMpHe/7kTzEPG/BYM6/ZDUUmrC1Nz+8l+3H/52iWIaruikDBdif/Xd37Yvu3Kg==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/dom-utils': 2.0.3 + '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-focus-on-pointer-down/2.0.3_react@18.2.0: + resolution: {integrity: sha512-8cKmpv26JnblexNaekWxEDI7M+MZnJcp1PJUz6lByjfQ1m4YjFr1cdbdhG4moaqzzYs7vTmO/qL8KVq8ZLUwyQ==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-interval/2.0.2_react@18.2.0: + resolution: {integrity: sha512-5U1c0pEB5n0Yri0E4RdFXWx2RVBZBBhD8Uu49dM33jkIguCbIPmZ+YgVry5DDzCHyz4RgDg4yZKOPK0PI8lEUg==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-latest-ref/2.0.2_react@18.2.0: + resolution: {integrity: sha512-Ra/NMV+DSQ3n0AdKsyIqdgnFzls5UntabtIRfDXLrqmJ4tI0a1tDdop2qop0Ue87AcqD9P1KtQue4KPx7wCElw==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-merge-refs/2.0.4_react@18.2.0: + resolution: {integrity: sha512-aoWvtE5tDQNaLCiNUI6WV+MA2zVcCLR5mHSCISmowlTXyXOqOU5Fo9ZoUftzrmgCJpDu5x1jfUOivxuHUueb0g==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-outside-click/2.0.4_react@18.2.0: + resolution: {integrity: sha512-uerJKS8dqg2kHs1xozA5vcCqW0UInuwrfCPb+rDWBTpu7aEqxABMw9W3e4gfOABrAjhKz2I0a/bu2i8zbVwdLw==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-pan-event/2.0.5_react@18.2.0: + resolution: {integrity: sha512-nhE3b85++EEmBD2v6m46TLoA4LehSCZ349P8kvEjw/RC0K6XDOZndaBucIeAlnpEENSSUpczFfMSOLxSHdu0oA==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/event-utils': 2.0.5 + '@chakra-ui/react-use-latest-ref': 2.0.2_react@18.2.0 + framesync: 5.3.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-previous/2.0.2_react@18.2.0: + resolution: {integrity: sha512-ap/teLRPKopaHYD80fnf0TR/NpTWHJO5VdKg6sPyF1y5ediYLAzPT1G2OqMCj4QfJsYDctioT142URDYe0Nn7w==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-safe-layout-effect/2.0.2_react@18.2.0: + resolution: {integrity: sha512-gl5HDq9RVeDJiT8udtpx12KRV8JPLJHDIUX8f/yZcKpXow0C7FFGg5Yy5I9397NQog5ZjKMuOg+AUq9TLJxsyQ==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-size/2.0.4_react@18.2.0: + resolution: {integrity: sha512-W6rgTLuoSC4ovZtqYco8cG+yBadH3bhlg92T5lgpKDakSDr0mXcZdbGx6g0AOkgxXm0V1jWNGO1743wudtF7ew==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@zag-js/element-size': 0.1.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-timeout/2.0.2_react@18.2.0: + resolution: {integrity: sha512-n6zb3OmxtDmRMxYkDgILqKh15aDOa8jNLHBlqHzmlL6mEGNKmMFPW9j/KvpAqSgKjUTDRnnXcpneprTMKy/yrw==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-update-effect/2.0.4_react@18.2.0: + resolution: {integrity: sha512-F/I9LVnGAQyvww+x7tQb47wCwjhMYjpxtM1dTg1U3oCEXY0yF1Ts3NJLUAlsr3nAW6epJIwWx61niC7KWpam1w==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-utils/2.0.8_react@18.2.0: + resolution: {integrity: sha512-OSHHBKZlJWTi2NZcPnBx1PyZvLQY+n5RPBtcri7/89EDdAwz2NdEhp2Dz1yQRctOSCF1kB/rnCYDP1U0oRk9RQ==} + peerDependencies: + react: '>=18 || 18' + dependencies: + '@chakra-ui/utils': 2.0.11 + react: 18.2.0 + dev: false + + /@chakra-ui/react/2.3.6_4a5gkdj7phvhqinmegnu2kpw7m: + resolution: {integrity: sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -4723,296 +4835,304 @@ packages: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/accordion': 2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/avatar': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/breadcrumb': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/checkbox': 2.1.0_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/control-box': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/counter': 2.0.2_react@18.2.0 - '@chakra-ui/css-reset': 2.0.1_g566eayvhbit5eqxocdac5mhdm - '@chakra-ui/editable': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/input': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/layout': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/live-region': 2.0.2_react@18.2.0 - '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu - '@chakra-ui/menu': 2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/modal': 2.0.3_afnayjro3tvoh37b7xw3myydwq - '@chakra-ui/number-input': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/pin-input': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/popover': 2.0.2_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/popper': 3.0.2_react@18.2.0 - '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/progress': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/provider': 2.0.6_tyh4ta3a3jg5wknldy4g2a7uiy - '@chakra-ui/radio': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/react-env': 2.0.2_react@18.2.0 - '@chakra-ui/select': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/skeleton': 2.0.6_6fvfryypbryy7ecdkfxyof7pdu - '@chakra-ui/slider': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/stat': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/switch': 2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/table': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/tabs': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/tag': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/textarea': 2.0.3_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/toast': 2.1.0_csvx7i6msol53jgjsrqpr4ryeu - '@chakra-ui/tooltip': 2.0.2_pbyqz4mp7ngecqb5ynou7bcm7q - '@chakra-ui/transition': 2.0.2_enons6ofcbv6wnhdfce7mzlh5m - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/accordion': 2.1.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/alert': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/avatar': 2.2.0_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/breadcrumb': 2.1.0_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/checkbox': 2.2.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/control-box': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/counter': 2.0.10_react@18.2.0 + '@chakra-ui/css-reset': 2.0.8_gyryel6m34lsxtsejhafetjriq + '@chakra-ui/editable': 2.0.13_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/hooks': 2.1.0_react@18.2.0 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/image': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/input': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/layout': 2.1.9_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/live-region': 2.0.10_react@18.2.0 + '@chakra-ui/media-query': 3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/menu': 2.1.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/modal': 2.2.2_atjqpbku7q7yrg5rd36sdz5ug4 + '@chakra-ui/number-input': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/pin-input': 2.0.15_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/popover': 2.1.1_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/popper': 3.0.8_react@18.2.0 + '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/progress': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/provider': 2.0.20_6xnkn2aqnlmdvuspwqrjexfduy + '@chakra-ui/radio': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-env': 2.0.10_react@18.2.0 + '@chakra-ui/select': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/skeleton': 2.0.17_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/slider': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/stat': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/switch': 2.0.14_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/table': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/tabs': 2.1.4_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/tag': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/textarea': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + '@chakra-ui/theme-utils': 2.0.1 + '@chakra-ui/toast': 4.0.0_nx5unifb7niehzuoy5sk3t3nim + '@chakra-ui/tooltip': 2.2.0_nx5unifb7niehzuoy5sk3t3nim + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + '@chakra-ui/utils': 2.0.11 + '@chakra-ui/visually-hidden': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-aXYRJFsi3xrcacPI+FDZ1fxRQc9PMFnYXvqTug4I7wIwZUE467vD4G90c6/b/tUzrerDkVcPhHbqFy8ENbrvdA==} + /@chakra-ui/select/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/skeleton/2.0.6_6fvfryypbryy7ecdkfxyof7pdu: - resolution: {integrity: sha512-nbZEfA7vSxJ8qXM0sb+e/Dh8t2ZcAkjWUzScMvO8FWfblk3wkoeUT0ocTwJ4eDyTzEVBu+ym7Uc+ACZmBheabQ==} + /@chakra-ui/shared-utils/2.0.2: + resolution: {integrity: sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg==} + dev: false + + /@chakra-ui/skeleton/2.0.17_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg==} peerDependencies: - '@chakra-ui/theme': '>=2.0.0-next.0' - '@emotion/react': ^11.0.0 - '@emotion/styled': ^11.0.0 + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/utils': 2.0.2 - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly + '@chakra-ui/media-query': 3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-use-previous': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/slider/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-aWpjqFGN61fv3dKyBrP6c68MXmkYtZ6jeDWIKkgzc7ntb6Nnf6KDK8seZM0SmQR2F3GIejLt8AgnuIW/UBUa/Q==} + /@chakra-ui/slider/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/number-utils': 2.0.4 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-latest-ref': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-pan-event': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-size': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-jC6+pwkCQb5vfGsS/55EhH2UzsToeCvpfXLQ6TPWDPA2NHMTRskilHwKQT/i0nAgRcCq400FvcfIr5uAPs+Igg==} + /@chakra-ui/spinner/2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/stat/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-GrQgiof8olOEVFAUtq5GA2cCUJqcSLMpS/6StBFR4fesrg5MAblfVYYY7uayqX/RnJU1BNElLOl/JAQ965LGXw==} + /@chakra-ui/stat/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/styled-system/2.2.0: - resolution: {integrity: sha512-5THQlrMr6CsiulNtjzZV3DqYD85eQ+S8G6rsnjAKqFVJ1G29R392RKK/67R96WIRUJRtsHPq2REeTgAxGLDhOQ==} + /@chakra-ui/styled-system/2.3.4: + resolution: {integrity: sha512-Lozbedu+GBj4EbHB/eGv475SFDLApsIEN9gNKiZJBJAE1HIhHn3Seh1iZQSrHC/Beq+D5cQq3Z+yPn3bXtFU7w==} dependencies: - '@chakra-ui/utils': 2.0.2 - csstype: 3.1.0 + csstype: 3.1.1 + lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/switch/2.0.3_jrbr2z4q4th6w7e7r7y6gcaakm: - resolution: {integrity: sha512-k7HLnKBM9GsY/RdqUWqe233QNFa2JtE+G4UyX8BsYLquWOkBfgJvI+f2gSUye1zLS8e1bFwz5BBIljTQMb/Smw==} + /@chakra-ui/switch/2.0.14_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 2.1.0_jrbr2z4q4th6w7e7r7y6gcaakm - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/checkbox': 2.2.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/system/2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy: - resolution: {integrity: sha512-f9GfJr7HGxxhyAbXmka/k/mPsLl8wl+5fZUWglfRg4iddmsuYQcJEYg8+ewCyr7MA1Ddw9bPVgsC5uf/KYlo3w==} + /@chakra-ui/system/2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq: + resolution: {integrity: sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18 || 18' dependencies: - '@chakra-ui/color-mode': 2.0.4_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/styled-system': 2.2.0 - '@chakra-ui/utils': 2.0.2 - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly + '@chakra-ui/color-mode': 2.1.9_react@18.2.0 + '@chakra-ui/react-utils': 2.0.8_react@18.2.0 + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/theme-utils': 2.0.1 + '@chakra-ui/utils': 2.0.11 + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty react: 18.2.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-VkcXAmvNlhWXZ5qPUAVqW4DKARSNdCN4Ib8ViiX8lXqBUHK+IBAe2s6iB70FwzdaPqwrw2LndqRrLg/4w4FE3w==} + /@chakra-ui/table/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/tabs/2.0.3_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-iBi7hSiNv7y9Zu0eR0b4SCBdKoY/5aOKhToZIm0iv5qJPunN3ap3zVAHL36ucPAIv19rC0GaOwqLsNQErMkMYQ==} + /@chakra-ui/tabs/2.1.4_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 2.0.2_react@18.2.0 - '@chakra-ui/descendant': 3.0.2_react@18.2.0 - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/clickable': 2.0.10_react@18.2.0 + '@chakra-ui/descendant': 3.0.10_react@18.2.0 + '@chakra-ui/lazy-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/tag/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-/TqjwPNTUjDofvTEulrNELS6/ls1n54YMFXMwGNwrEbNlJPgoE555t1N3jpdoNKH4kLhvkFcC6lfkDdWwnZ1BA==} + /@chakra-ui/tag/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-context': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/textarea/2.0.3_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-esOJa0vSrSsgDJGjPAbnPNPvemN1QUKYFYLFTOM/LR6BzI21EL8PX4Bh3AJM6aJK0GjeR0+SeKMuuuLL4oFnmw==} + /@chakra-ui/textarea/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/theme-tools/2.0.2_@chakra-ui+system@2.1.3: - resolution: {integrity: sha512-E01ZJZB4XVqkvn2hOXKQ/uVkvaPLQN1SyxAYXjFZGyZ1ppBLl362EWfY9IgWNzDITgq9MCJyQFfm2mXwQDUNzA==} + /@chakra-ui/theme-tools/2.0.12_kzevwk2hxgy6fnrjqv25jdmqp4: + resolution: {integrity: sha512-mnMlKSmXkCjHUJsKWmJbgBTGF2vnLaMLv1ihkBn5eQcCubMQrBLTiMAEFl5pZdzuHItU6QdnLGA10smcXbNl0g==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/styled-system': '>=2.0.0' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/anatomy': 2.0.7 + '@chakra-ui/styled-system': 2.3.4 '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/2.1.0_@chakra-ui+system@2.1.3: - resolution: {integrity: sha512-OHvKCQ/QUHc3ZVgKKshYkvholiDhPf7vEPZcNOi5rnaFSP4PzWd00d1i7HOXYSyv/TGDOBRzs1IcodKfG6FzgA==} - peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + /@chakra-ui/theme-utils/2.0.1: + resolution: {integrity: sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w==} dependencies: - '@chakra-ui/anatomy': 2.0.1_@chakra-ui+system@2.1.3 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/toast/2.1.0_csvx7i6msol53jgjsrqpr4ryeu: - resolution: {integrity: sha512-xXgwzff/gtNrq2HGGG3fuqcfRQEIObluHzHhqgS3gesf8KYut/5ZJoLdgV4RKE+NYgJIi77BFUcQDiLJttxxPA==} + /@chakra-ui/theme/2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4: + resolution: {integrity: sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw==} peerDependencies: + '@chakra-ui/styled-system': '>=2.0.0' + dependencies: + '@chakra-ui/anatomy': 2.0.7 + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/theme-tools': 2.0.12_kzevwk2hxgy6fnrjqv25jdmqp4 + dev: false + + /@chakra-ui/toast/4.0.0_nx5unifb7niehzuoy5sk3t3nim: + resolution: {integrity: sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og==} + peerDependencies: + '@chakra-ui/system': 2.3.0 framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 - '@chakra-ui/transition': 2.0.2_enons6ofcbv6wnhdfce7mzlh5m - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/alert': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-use-timeout': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - transitivePeerDependencies: - - '@emotion/react' - - '@emotion/styled' dev: false - /@chakra-ui/tooltip/2.0.2_pbyqz4mp7ngecqb5ynou7bcm7q: - resolution: {integrity: sha512-oK6gXybFe/MmHBXbd9w3XgNChVHQ9BeLW0IAtFeDyeHn5gJg0iKul/SNmJkD73Iyv/j+BsmBMn98mbNYQkeMQA==} + /@chakra-ui/tooltip/2.2.0_nx5unifb7niehzuoy5sk3t3nim: + resolution: {integrity: sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 2.0.2_react@18.2.0 - '@chakra-ui/popper': 3.0.2_react@18.2.0 - '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.1_react@18.2.0 - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 - '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/popper': 3.0.8_react@18.2.0 + '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-types': 2.0.3_react@18.2.0 + '@chakra-ui/react-use-disclosure': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/2.0.2_enons6ofcbv6wnhdfce7mzlh5m: - resolution: {integrity: sha512-s98gDFIGbv60WMyniVjy381NXxgS1Y/6RACR1Z1pReC5XZLY5GyMqeRYyFCAeE78qKkqon77Y8EDPQXl6X78dw==} + /@chakra-ui/transition/2.0.11_fptlbzezisbmawh6uxpkk3xo6a: + resolution: {integrity: sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 2.0.2 - framer-motion: 7.1.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/utils/2.0.2: - resolution: {integrity: sha512-9AC/ir9zm0shgFG7kdzOKUH2Wx5VB71M3uRMEsMZf75YlhhiU7AvBNtWXnJu+CBiTi41rKa5A+2ImMOsuPfGbA==} + /@chakra-ui/utils/2.0.11: + resolution: {integrity: sha512-4ZQdK6tbOuTrUCsAQBHWo7tw5/Q6pBV93ZbVpats61cSWMFGv32AIQw9/hA4un2zDeSWN9ZMVLNjAY2Dq/KQOA==} dependencies: '@types/lodash.mergewith': 4.6.6 css-box-model: 1.2.1 @@ -5020,70 +5140,69 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/2.0.2_smtw3k2wuexenqj33awaujbhle: - resolution: {integrity: sha512-zYeLzaeouPbBBPDBAdRwj+jyxLJbtU6vW6r4kSQKfHoQPxJ+1A1HxRmDrj4FZJXk0CnBc4m7HF6Zuy7A5eCokg==} + /@chakra-ui/visually-hidden/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ==} peerDependencies: - '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.1.3_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.2 + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@changesets/apply-release-plan/6.0.4: - resolution: {integrity: sha512-PutV/ymf8cZMqvaLe/Lh5cP3kBQ9FZl6oGQ3qRDxWD1ML+/uH3jrCE7S7Zw7IVSXkD0lnMD+1dAX7fsOJ6ZvgA==} + /@changesets/apply-release-plan/6.1.1: + resolution: {integrity: sha512-LaQiP/Wf0zMVR0HNrLQAjz3rsNsr0d/RlnP6Ef4oi8VafOwnY1EoWdK4kssuUJGgNgDyHpomS50dm8CU3D7k7g==} dependencies: - '@babel/runtime': 7.18.9 - '@changesets/config': 2.1.1 + '@babel/runtime': 7.19.4 + '@changesets/config': 2.2.0 '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 1.4.1 - '@changesets/types': 5.1.0 + '@changesets/git': 1.5.0 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 outdent: 0.5.0 - prettier: 1.19.1 + prettier: 2.7.1 resolve-from: 5.0.0 semver: 5.7.1 dev: true - /@changesets/assemble-release-plan/5.2.0: - resolution: {integrity: sha512-ewY24PEbSec2eKX0+KM7eyENA2hUUp6s4LF9p/iBxTtc+TX2Xbx5rZnlLKZkc8tpuQ3PZbyjLFXWhd1PP6SjCg==} + /@changesets/assemble-release-plan/5.2.2: + resolution: {integrity: sha512-B1qxErQd85AeZgZFZw2bDKyOfdXHhG+X5S+W3Da2yCem8l/pRy4G/S7iOpEcMwg6lH8q2ZhgbZZwZ817D+aLuQ==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 - '@changesets/types': 5.1.0 + '@changesets/get-dependents-graph': 1.3.4 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 semver: 5.7.1 dev: true - /@changesets/changelog-git/0.1.12: - resolution: {integrity: sha512-Xv2CPjTBmwjl8l4ZyQ3xrsXZMq8WafPUpEonDpTmcb24XY8keVzt7ZSCJuDz035EiqrjmDKDhODoQ6XiHudlig==} + /@changesets/changelog-git/0.1.13: + resolution: {integrity: sha512-zvJ50Q+EUALzeawAxax6nF2WIcSsC5PwbuLeWkckS8ulWnuPYx8Fn/Sjd3rF46OzeKA8t30loYYV6TIzp4DIdg==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 dev: true - /@changesets/cli/2.24.2: - resolution: {integrity: sha512-Bya7bnxF8Sz+O25M6kseAludVsCy5nXSW9u2Lbje/XbJTyU5q/xwIiXF9aTUzVi/4jyKoKoOasx7B1/z+NJLzg==} + /@changesets/cli/2.25.0: + resolution: {integrity: sha512-Svu5KD2enurVHGEEzCRlaojrHjVYgF9srmMP9VQSy9c1TspX6C9lDPpulsSNIjYY9BuU/oiWpjBgR7RI9eQiAA==} hasBin: true dependencies: - '@babel/runtime': 7.18.9 - '@changesets/apply-release-plan': 6.0.4 - '@changesets/assemble-release-plan': 5.2.0 - '@changesets/changelog-git': 0.1.12 - '@changesets/config': 2.1.1 + '@babel/runtime': 7.19.4 + '@changesets/apply-release-plan': 6.1.1 + '@changesets/assemble-release-plan': 5.2.2 + '@changesets/changelog-git': 0.1.13 + '@changesets/config': 2.2.0 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 - '@changesets/get-release-plan': 3.0.13 - '@changesets/git': 1.4.1 + '@changesets/get-dependents-graph': 1.3.4 + '@changesets/get-release-plan': 3.0.15 + '@changesets/git': 1.5.0 '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.12 - '@changesets/read': 0.5.7 - '@changesets/types': 5.1.0 - '@changesets/write': 0.1.9 + '@changesets/pre': 1.0.13 + '@changesets/read': 0.5.8 + '@changesets/types': 5.2.0 + '@changesets/write': 0.2.1 '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 @@ -5105,13 +5224,13 @@ packages: tty-table: 4.1.6 dev: true - /@changesets/config/2.1.1: - resolution: {integrity: sha512-nSRINMqHpdtBpNVT9Eh9HtmLhOwOTAeSbaqKM5pRmGfsvyaROTBXV84ujF9UsWNlV71YxFbxTbeZnwXSGQlyTw==} + /@changesets/config/2.2.0: + resolution: {integrity: sha512-GGaokp3nm5FEDk/Fv2PCRcQCOxGKKPRZ7prcMqxEr7VSsG75MnChQE8plaW1k6V8L2bJE+jZWiRm19LbnproOw==} dependencies: '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 + '@changesets/get-dependents-graph': 1.3.4 '@changesets/logger': 0.0.5 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 @@ -5123,25 +5242,25 @@ packages: extendable-error: 0.1.7 dev: true - /@changesets/get-dependents-graph/1.3.3: - resolution: {integrity: sha512-h4fHEIt6X+zbxdcznt1e8QD7xgsXRAXd2qzLlyxoRDFSa6SxJrDAUyh7ZUNdhjBU4Byvp4+6acVWVgzmTy4UNQ==} + /@changesets/get-dependents-graph/1.3.4: + resolution: {integrity: sha512-+C4AOrrFY146ydrgKOo5vTZfj7vetNu1tWshOID+UjPUU9afYGDXI8yLnAeib1ffeBXV3TuGVcyphKpJ3cKe+A==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 5.7.1 dev: true - /@changesets/get-release-plan/3.0.13: - resolution: {integrity: sha512-Zl/UN4FUzb5LwmzhO2STRijJT5nQCN4syPEs0p1HSIR+O2iVOzes+2yTLF2zGiOx8qPOsFx/GRSAvuhSzm+9ig==} + /@changesets/get-release-plan/3.0.15: + resolution: {integrity: sha512-W1tFwxE178/en+zSj/Nqbc3mvz88mcdqUMJhRzN1jDYqN3QI4ifVaRF9mcWUU+KI0gyYEtYR65tour690PqTcA==} dependencies: - '@babel/runtime': 7.18.9 - '@changesets/assemble-release-plan': 5.2.0 - '@changesets/config': 2.1.1 - '@changesets/pre': 1.0.12 - '@changesets/read': 0.5.7 - '@changesets/types': 5.1.0 + '@babel/runtime': 7.19.4 + '@changesets/assemble-release-plan': 5.2.2 + '@changesets/config': 2.2.0 + '@changesets/pre': 1.0.13 + '@changesets/read': 0.5.8 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 dev: true @@ -5149,12 +5268,12 @@ packages: resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} dev: true - /@changesets/git/1.4.1: - resolution: {integrity: sha512-GWwRXEqBsQ3nEYcyvY/u2xUK86EKAevSoKV/IhELoZ13caZ1A1TSak/71vyKILtzuLnFPk5mepP5HjBxr7lZ9Q==} + /@changesets/git/1.5.0: + resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 spawndamnit: 2.0.0 @@ -5166,31 +5285,31 @@ packages: chalk: 2.4.2 dev: true - /@changesets/parse/0.3.14: - resolution: {integrity: sha512-SWnNVyC9vz61ueTbuxvA6b4HXcSx2iaWr2VEa37lPg1Vw+cEyQp7lOB219P7uow1xFfdtIEEsxbzXnqLAAaY8w==} + /@changesets/parse/0.3.15: + resolution: {integrity: sha512-3eDVqVuBtp63i+BxEWHPFj2P1s3syk0PTrk2d94W9JD30iG+OER0Y6n65TeLlY8T2yB9Fvj6Ev5Gg0+cKe/ZUA==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 js-yaml: 3.14.1 dev: true - /@changesets/pre/1.0.12: - resolution: {integrity: sha512-RFzWYBZx56MtgMesXjxx7ymyI829/rcIw/41hvz3VJPnY8mDscN7RJyYu7Xm7vts2Fcd+SRcO0T/Ws3I1/6J7g==} + /@changesets/pre/1.0.13: + resolution: {integrity: sha512-jrZc766+kGZHDukjKhpBXhBJjVQMied4Fu076y9guY1D3H622NOw8AQaLV3oQsDtKBTrT2AUFjt9Z2Y9Qx+GfA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 dev: true - /@changesets/read/0.5.7: - resolution: {integrity: sha512-Iteg0ccTPpkJ+qFzY97k7qqdVE5Kz30TqPo9GibpBk2g8tcLFUqf+Qd0iXPLcyhUZpPL1U6Hia1gINHNKIKx4g==} + /@changesets/read/0.5.8: + resolution: {integrity: sha512-eYaNfxemgX7f7ELC58e7yqQICW5FB7V+bd1lKt7g57mxUrTveYME+JPaBPpYx02nP53XI6CQp6YxnR9NfmFPKw==} dependencies: - '@babel/runtime': 7.18.9 - '@changesets/git': 1.4.1 + '@babel/runtime': 7.19.4 + '@changesets/git': 1.5.0 '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.14 - '@changesets/types': 5.1.0 + '@changesets/parse': 0.3.15 + '@changesets/types': 5.2.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -5200,18 +5319,18 @@ packages: resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: true - /@changesets/types/5.1.0: - resolution: {integrity: sha512-uUByGATZCdaPkaO9JkBsgGDjEvHyY2Sb0e/J23+cwxBi5h0fxpLF/HObggO/Fw8T2nxK6zDfJbPsdQt5RwYFJA==} + /@changesets/types/5.2.0: + resolution: {integrity: sha512-km/66KOqJC+eicZXsm2oq8A8bVTSpkZJ60iPV/Nl5Z5c7p9kk8xxh6XGRTlnludHldxOOfudhnDN2qPxtHmXzA==} dev: true - /@changesets/write/0.1.9: - resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==} + /@changesets/write/0.2.1: + resolution: {integrity: sha512-KUd49nt2fnYdGixIqTi1yVE1nAoZYUMdtB3jBfp77IMqjZ65hrmZE5HdccDlTeClZN0420ffpnfET3zzeY8pdw==} dependencies: - '@babel/runtime': 7.18.9 - '@changesets/types': 5.1.0 + '@babel/runtime': 7.19.4 + '@changesets/types': 5.2.0 fs-extra: 7.0.1 human-id: 1.0.2 - prettier: 1.19.1 + prettier: 2.7.1 dev: true /@cnakazawa/watch/1.0.4: @@ -5220,7 +5339,7 @@ packages: hasBin: true dependencies: exec-sh: 0.3.6 - minimist: 1.2.6 + minimist: 1.2.7 dev: true /@colors/colors/1.5.0: @@ -5237,14 +5356,14 @@ packages: '@jridgewell/trace-mapping': 0.3.9 dev: true - /@csstools/selector-specificity/2.0.2_pnx64jze6bptzcedy5bidi3zdi: + /@csstools/selector-specificity/2.0.2_dvkg4kkb622mvceygg47xxdz3a: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-selector-parser: ^6.0.10 dependencies: - postcss: 8.4.16 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 dev: true @@ -5275,28 +5394,28 @@ packages: transitivePeerDependencies: - supports-color - /@emotion/babel-plugin/11.10.0_@babel+core@7.18.10: - resolution: {integrity: sha512-xVnpDAAbtxL1dsuSelU5A7BnY/lftws0wUexNJZTPsvX/1tM4GZJbclgODhvW4E+NH7E5VFcH0bBn30NvniPJA==} + /@emotion/babel-plugin/11.10.2_@babel+core@7.19.3: + resolution: {integrity: sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 - '@babel/runtime': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 + '@babel/runtime': 7.19.4 '@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 + convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 find-root: 1.1.0 source-map: 0.5.7 stylis: 4.0.13 dev: false - /@emotion/cache/11.10.1: - resolution: {integrity: sha512-uZTj3Yz5D69GE25iFZcIQtibnVCFsc/6+XIozyL3ycgWvEdif2uEw9wlUt6umjLr4Keg9K6xRPHmD8LGi+6p1A==} + /@emotion/cache/11.10.3: + resolution: {integrity: sha512-Psmp/7ovAa8appWh3g51goxu/z3iVms7JXOreq136D8Bbn6dYraPnmL6mdM8GThEx9vwSn92Fz+mGSjBzN8UPQ==} dependencies: '@emotion/memoize': 0.8.0 '@emotion/sheet': 1.2.0 @@ -5305,16 +5424,6 @@ packages: stylis: 4.0.13 dev: false - /@emotion/cache/11.9.3: - resolution: {integrity: sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==} - dependencies: - '@emotion/memoize': 0.7.5 - '@emotion/sheet': 1.1.1 - '@emotion/utils': 1.2.0 - '@emotion/weak-memoize': 0.2.5 - stylis: 4.0.13 - dev: false - /@emotion/hash/0.9.0: resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==} dev: false @@ -5327,31 +5436,21 @@ packages: dev: false optional: true - /@emotion/is-prop-valid/1.1.3: - resolution: {integrity: sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==} - dependencies: - '@emotion/memoize': 0.7.5 - /@emotion/is-prop-valid/1.2.0: resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==} dependencies: '@emotion/memoize': 0.8.0 - dev: false /@emotion/memoize/0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} 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.10.0_msmmgljd7hl2w2irtggflhmema: - resolution: {integrity: sha512-K6z9zlHxxBXwN8TcpwBKcEsBsOw4JWCCmR+BeeOWgqp8GIU1yA2Odd41bwdAAr0ssbQrbJbVnndvv7oiv1bZeQ==} + /@emotion/react/11.10.4_bjroym7kxlcs2vvwnej4p3gzwu: + resolution: {integrity: sha512-j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA==} peerDependencies: '@babel/core': ^7.0.0 '@types/react': '*' @@ -5362,14 +5461,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/runtime': 7.18.9 - '@emotion/babel-plugin': 11.10.0_@babel+core@7.18.10 - '@emotion/cache': 11.10.1 + '@babel/core': 7.19.3 + '@babel/runtime': 7.19.4 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.3 + '@emotion/cache': 11.10.3 '@emotion/serialize': 1.1.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.0.17 + '@types/react': 18.0.21 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -5381,19 +5481,15 @@ packages: '@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.1: - resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==} + csstype: 3.1.1 dev: false /@emotion/sheet/1.2.0: resolution: {integrity: sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==} dev: false - /@emotion/styled/11.10.0_5sec57kzpgkzooe4crua5kfcly: - resolution: {integrity: sha512-V9oaEH6V4KePeQpgUE83i8ht+4Ri3E8Djp/ZPJ4DQlqWhSKITvgzlR3/YQE2hdfP4Jw3qVRkANJz01LLqK9/TA==} + /@emotion/styled/11.10.4_ogudqqhlstsi7uge4lir7ff3ty: + resolution: {integrity: sha512-pRl4R8Ez3UXvOPfc2bzIoV8u9P97UedgHS4FPX594ntwEuAMA114wlaHvOK24HB48uqfXiGlYIZYCxVJ1R1ttQ==} peerDependencies: '@babel/core': ^7.0.0 '@emotion/react': ^11.0.0-rc.0 @@ -5405,14 +5501,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/runtime': 7.18.9 - '@emotion/babel-plugin': 11.10.0_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/runtime': 7.19.4 + '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.3 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu '@emotion/serialize': 1.1.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 '@emotion/utils': 1.2.0 - '@types/react': 18.0.17 + '@types/react': 18.0.21 react: 18.2.0 dev: false @@ -5426,26 +5523,30 @@ packages: resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} dev: false - /@emotion/utils/1.2.0: - resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==} + /@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@18.2.0: + resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==} + peerDependencies: + react: '>=16.8.0 || 18' + dependencies: + react: 18.2.0 dev: false - /@emotion/weak-memoize/0.2.5: - resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} + /@emotion/utils/1.2.0: + resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==} dev: false /@emotion/weak-memoize/0.3.0: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} dev: false - /@eslint/eslintrc/1.3.0: - resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} + /@eslint/eslintrc/1.3.3: + resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.3.3 - globals: 13.15.0 + espree: 9.4.0 + globals: 13.17.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -5455,54 +5556,95 @@ packages: - supports-color dev: true + /@floating-ui/core/1.0.1: + resolution: {integrity: sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA==} + dev: false + + /@floating-ui/dom/1.0.2: + resolution: {integrity: sha512-5X9WSvZ8/fjy3gDu8yx9HAA4KG1lazUN2P4/VnaXLxTO9Dz53HI1oYoh1OlhqFNlHgGDiwFX5WhFCc2ljbW3yA==} + dependencies: + '@floating-ui/core': 1.0.1 + dev: false + /@gar/promisify/1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - /@graphql-tools/merge/8.2.14_graphql@16.5.0: - resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} + /@graphql-tools/merge/8.3.1_graphql@16.6.0: + resolution: {integrity: sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.6.13_graphql@16.5.0 - graphql: 16.5.0 + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 tslib: 2.4.0 dev: false - /@graphql-tools/mock/8.6.12_graphql@16.5.0: - resolution: {integrity: sha512-o4plehiIgwqIB3TJDlEx7s6CHucTnrYsv4LqBXfyiXN10E9x0Ab44UxXjePbAd9yJFYEUYp0thqb7WjI3/3cmQ==} + /@graphql-tools/merge/8.3.6_graphql@16.6.0: + resolution: {integrity: sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 8.3.14_graphql@16.5.0 - '@graphql-tools/utils': 8.6.13_graphql@16.5.0 + '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.0 + dev: false + + /@graphql-tools/mock/8.7.6_graphql@16.6.0: + resolution: {integrity: sha512-cQGPyY6dF4x28552zjAg9En2WWVury62u1/xzipCNUSCdKRVOsAupTNBcAGdMjsKPLcGzzk1cPA8dP0DUfNqzg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/schema': 9.0.4_graphql@16.6.0 + '@graphql-tools/utils': 8.12.0_graphql@16.6.0 fast-json-stable-stringify: 2.1.0 - graphql: 16.5.0 + graphql: 16.6.0 tslib: 2.4.0 dev: false - /@graphql-tools/schema/8.3.14_graphql@16.5.0: - resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} + /@graphql-tools/schema/8.5.1_graphql@16.6.0: + resolution: {integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.2.14_graphql@16.5.0 - '@graphql-tools/utils': 8.6.13_graphql@16.5.0 - graphql: 16.5.0 + '@graphql-tools/merge': 8.3.1_graphql@16.6.0 + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/utils/8.6.13_graphql@16.5.0: - resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} + /@graphql-tools/schema/9.0.4_graphql@16.6.0: + resolution: {integrity: sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.5.0 + '@graphql-tools/merge': 8.3.6_graphql@16.6.0 + '@graphql-tools/utils': 8.12.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.0 + value-or-promise: 1.0.11 + dev: false + + /@graphql-tools/utils/8.12.0_graphql@16.6.0: + resolution: {integrity: sha512-TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.6.0 tslib: 2.4.0 dev: false - /@humanwhocodes/config-array/0.10.4: - resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==} + /@graphql-tools/utils/8.9.0_graphql@16.6.0: + resolution: {integrity: sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.6.0 + tslib: 2.4.0 + dev: false + + /@humanwhocodes/config-array/0.10.7: + resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -5512,8 +5654,9 @@ packages: - supports-color dev: true - /@humanwhocodes/gitignore-to-minimatch/1.0.2: - resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==} + /@humanwhocodes/module-importer/1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} dev: true /@humanwhocodes/object-schema/1.2.1: @@ -5536,142 +5679,156 @@ packages: engines: {node: '>=8'} dev: true - /@jest/console/27.5.1: - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/console/29.2.1: + resolution: {integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 - jest-message-util: 27.5.1 - jest-util: 27.5.1 + jest-message-util: 29.2.1 + jest-util: 29.2.1 slash: 3.0.0 dev: true - /@jest/core/27.5.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/core/29.2.2: + resolution: {integrity: sha512-susVl8o2KYLcZhhkvSB+b7xX575CX3TmSvxfeDjpRko7KmT89rHkXj6XkDkNpSeFMBzIENw5qIchO9HC9Sem+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/console': 29.2.1 + '@jest/reporters': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - emittery: 0.8.1 + ci-info: 3.5.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 + jest-changed-files: 29.2.0 + jest-config: 29.2.2_@types+node@18.11.7 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-resolve-dependencies: 29.2.2 + jest-runner: 29.2.2 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 micromatch: 4.0.5 - rimraf: 3.0.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - ts-node - - utf-8-validate dev: true - /@jest/core/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/core/29.2.2_ts-node@10.9.1: + resolution: {integrity: sha512-susVl8o2KYLcZhhkvSB+b7xX575CX3TmSvxfeDjpRko7KmT89rHkXj6XkDkNpSeFMBzIENw5qIchO9HC9Sem+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/console': 29.2.1 + '@jest/reporters': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - emittery: 0.8.1 + ci-info: 3.5.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@10.9.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 + jest-changed-files: 29.2.0 + jest-config: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-resolve-dependencies: 29.2.2 + jest-runner: 29.2.2 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 micromatch: 4.0.5 - rimraf: 3.0.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - ts-node - - utf-8-validate dev: true - /@jest/environment/27.5.1: - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/environment/29.2.2: + resolution: {integrity: sha512-OWn+Vhu0I1yxuGBJEFFekMYc8aGBGrY4rt47SOh/IFaI+D7ZHCk7pKRiSoZ2/Ml7b0Ony3ydmEHRx/tEOC7H1A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 - jest-mock: 27.5.1 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-mock: 29.2.2 dev: true - /@jest/fake-timers/27.5.1: - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/expect-utils/29.2.2: + resolution: {integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@sinonjs/fake-timers': 8.1.0 - '@types/node': 18.0.0 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-util: 27.5.1 + jest-get-type: 29.2.0 dev: true - /@jest/globals/27.5.1: - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/expect/29.2.2: + resolution: {integrity: sha512-zwblIZnrIVt8z/SiEeJ7Q9wKKuB+/GS4yZe9zw7gMqfGf4C5hBLGrVyxu1SzDbVSqyMSlprKl3WL1r80cBNkgg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/types': 27.5.1 - expect: 27.5.1 + expect: 29.2.2 + jest-snapshot: 29.2.2 + transitivePeerDependencies: + - supports-color dev: true - /@jest/reporters/27.5.1: - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/fake-timers/29.2.2: + resolution: {integrity: sha512-nqaW3y2aSyZDl7zQ7t1XogsxeavNpH6kkdq+EpXncIDvAkjvFD7hmhcIs1nWloengEWUoWqkqSA6MSbf9w6DgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.2.1 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 18.11.7 + jest-message-util: 29.2.1 + jest-mock: 29.2.2 + jest-util: 29.2.1 + dev: true + + /@jest/globals/29.2.2: + resolution: {integrity: sha512-/nt+5YMh65kYcfBhj38B3Hm0Trk4IsuMXNDGKE/swp36yydBWfz3OXkLqkSvoAtPW8IJMSJDFCbTM2oj5SNprw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.2.2 + '@jest/expect': 29.2.2 + '@jest/types': 29.2.1 + jest-mock: 29.2.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters/29.2.2: + resolution: {integrity: sha512-AzjL2rl2zJC0njIzcooBvjA4sJjvdoq98sDuuNs4aNugtLPSQ+91nysGKRF0uY1to5k0MdGMdOBggUsPqvBcpA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -5679,74 +5836,78 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/console': 29.2.1 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 18.11.7 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.1 istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.4 - jest-haste-map: 27.5.1 - jest-resolve: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 + istanbul-reports: 3.1.5 + jest-message-util: 29.2.1 + jest-util: 29.2.1 + jest-worker: 29.2.1 slash: 3.0.0 - source-map: 0.6.1 string-length: 4.0.2 - terminal-link: 2.1.1 - v8-to-istanbul: 8.1.1 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.0.1 transitivePeerDependencies: - supports-color dev: true - /@jest/source-map/27.5.1: - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/schemas/29.0.0: + resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.10 - source-map: 0.6.1 + '@sinclair/typebox': 0.24.51 dev: true - /@jest/test-result/27.5.1: - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/source-map/29.2.0: + resolution: {integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 27.5.1 - '@jest/types': 27.5.1 + '@jridgewell/trace-mapping': 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.10 + dev: true + + /@jest/test-result/29.2.1: + resolution: {integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.2.1 + '@jest/types': 29.2.1 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/27.5.1: - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/test-sequencer/29.2.2: + resolution: {integrity: sha512-Cuc1znc1pl4v9REgmmLf0jBd3Y65UXJpioGYtMr/JNpQEIGEzkmHhy6W6DLbSsXeUA13TDzymPv0ZGZ9jH3eIw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 27.5.1 + '@jest/test-result': 29.2.1 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-runtime: 27.5.1 - transitivePeerDependencies: - - supports-color + jest-haste-map: 29.2.1 + slash: 3.0.0 dev: true /@jest/transform/26.6.2: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 jest-haste-map: 26.6.2 @@ -5761,25 +5922,25 @@ packages: - supports-color dev: true - /@jest/transform/27.5.1: - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/transform/29.2.2: + resolution: {integrity: sha512-aPe6rrletyuEIt2axxgdtxljmzH8O/nrov4byy6pDw9S8inIrTV+2PnjyP/oFHMSynzGxJ2s6OHowBNMXp/Jzg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.10 - '@jest/types': 27.5.1 + '@babel/core': 7.19.3 + '@jest/types': 29.2.1 + '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-regex-util: 27.5.1 - jest-util: 27.5.1 + jest-haste-map: 29.2.1 + jest-regex-util: 29.2.0 + jest-util: 29.2.1 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 - source-map: 0.6.1 - write-file-atomic: 3.0.3 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color dev: true @@ -5790,19 +5951,20 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.0.0 + '@types/node': 18.11.7 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true - /@jest/types/27.5.1: - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/types/29.2.1: + resolution: {integrity: sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: + '@jest/schemas': 29.0.0 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.0.0 - '@types/yargs': 16.0.4 + '@types/node': 18.11.7 + '@types/yargs': 17.0.13 chalk: 4.1.2 dev: true @@ -5814,55 +5976,46 @@ packages: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.13 - - /@jridgewell/gen-mapping/0.3.1: - resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.13 - '@jridgewell/trace-mapping': 0.3.13 - dev: true + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 /@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.17 - /@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/source-map/0.3.2: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: - '@jridgewell/gen-mapping': 0.3.1 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 dev: true - /@jridgewell/sourcemap-codec/1.4.13: - resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} + /@jridgewell/sourcemap-codec/1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.13: - resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} + /@jridgewell/trace-mapping/0.3.17: + resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: - '@jridgewell/resolve-uri': 3.0.7 - '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/trace-mapping/0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - '@jridgewell/resolve-uri': 3.0.7 - '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 dev: true /@leichtgewicht/ip-codec/2.0.4: @@ -5872,7 +6025,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -5881,7 +6034,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -5889,8 +6042,8 @@ packages: read-yaml-file: 1.1.0 dev: true - /@mapbox/node-pre-gyp/1.0.9: - resolution: {integrity: sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==} + /@mapbox/node-pre-gyp/1.0.10: + resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==} hasBin: true dependencies: detect-libc: 2.0.1 @@ -5900,7 +6053,7 @@ packages: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.3.7 + semver: 7.3.8 tar: 6.1.11 transitivePeerDependencies: - encoding @@ -5945,49 +6098,49 @@ packages: resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} dev: true - /@motionone/animation/10.13.2: - resolution: {integrity: sha512-YGWss58IR2X4lOjW89rv1Q+/Nq/QhfltaggI7i8sZTpKC1yUvM+XYDdvlRpWc6dk8LviMBrddBJAlLdbaqeRmw==} + /@motionone/animation/10.14.0: + resolution: {integrity: sha512-h+1sdyBP8vbxEBW5gPFDnj+m2DCqdlAuf2g6Iafb1lcMnqjsRXWlPw1AXgvUMXmreyhqmPbJqoNfIKdytampRQ==} dependencies: - '@motionone/easing': 10.13.2 - '@motionone/types': 10.13.2 - '@motionone/utils': 10.13.2 + '@motionone/easing': 10.14.0 + '@motionone/types': 10.14.0 + '@motionone/utils': 10.14.0 tslib: 2.4.0 dev: false /@motionone/dom/10.13.1: resolution: {integrity: sha512-zjfX+AGMIt/fIqd/SL1Lj93S6AiJsEA3oc5M9VkUr+Gz+juRmYN1vfvZd6MvEkSqEjwPQgcjN7rGZHrDB9APfQ==} dependencies: - '@motionone/animation': 10.13.2 - '@motionone/generators': 10.13.2 - '@motionone/types': 10.13.2 - '@motionone/utils': 10.13.2 + '@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.13.2: - resolution: {integrity: sha512-3HqctS5NyDfDQ+8+cZqc3Pu7I6amFCt9zDUjcozHyFXHh4PKYHK4+GJDFjJIS8bCAF2BrJmpmduDQ2V7lFEYeQ==} + /@motionone/easing/10.14.0: + resolution: {integrity: sha512-2vUBdH9uWTlRbuErhcsMmt1jvMTTqvGmn9fHq8FleFDXBlHFs5jZzHJT9iw+4kR1h6a4SZQuCf72b9ji92qNYA==} dependencies: - '@motionone/utils': 10.13.2 + '@motionone/utils': 10.14.0 tslib: 2.4.0 dev: false - /@motionone/generators/10.13.2: - resolution: {integrity: sha512-QMoXV1MXEEhR6D3dct/RMMS1FwJlAsW+kMPbFGzBA4NbweblgeYQCft9DcDAVpV9wIwD6qvlBG9u99sOXLfHiA==} + /@motionone/generators/10.14.0: + resolution: {integrity: sha512-6kRHezoFfIjFN7pPpaxmkdZXD36tQNcyJe3nwVqwJ+ZfC0e3rFmszR8kp9DEVFs9QL/akWjuGPSLBI1tvz+Vjg==} dependencies: - '@motionone/types': 10.13.2 - '@motionone/utils': 10.13.2 + '@motionone/types': 10.14.0 + '@motionone/utils': 10.14.0 tslib: 2.4.0 dev: false - /@motionone/types/10.13.2: - resolution: {integrity: sha512-yYV4q5v5F0iADhab4wHfqaRJnM/eVtQLjUPhyEcS72aUz/xyOzi09GzD/Gu+K506BDfqn5eULIilUI77QNaqhw==} + /@motionone/types/10.14.0: + resolution: {integrity: sha512-3bNWyYBHtVd27KncnJLhksMFQ5o2MSdk1cA/IZqsHtA9DnRM1SYgN01CTcJ8Iw8pCXF5Ocp34tyAjY7WRpOJJQ==} dev: false - /@motionone/utils/10.13.2: - resolution: {integrity: sha512-6Lw5bDA/w7lrPmT/jYWQ76lkHlHs9fl2NZpJ22cVy1kKDdEH+Cl1U6hMTpdphO6VQktQ6v2APngag91WBKLqlA==} + /@motionone/utils/10.14.0: + resolution: {integrity: sha512-sLWBLPzRqkxmOTRzSaD3LFQXCPHvDzyHJ1a3VP9PRzBxyVd2pv51/gMOsdAcxQ9n+MIeGJnxzXBYplUHKj4jkw==} dependencies: - '@motionone/types': 10.13.2 + '@motionone/types': 10.14.0 hey-listen: 1.0.8 tslib: 2.4.0 dev: false @@ -6005,44 +6158,44 @@ packages: engines: {node: '>=14'} dependencies: '@types/set-cookie-parser': 2.4.2 - set-cookie-parser: 2.5.0 + set-cookie-parser: 2.5.1 dev: false - /@mswjs/data/0.10.1_typescript@4.7.4: - resolution: {integrity: sha512-ne1vRWjUK9W24mCvuTH0EGPYq1RM01NMF4UtjvrLuQYfCf2nKEoy+iw+/j5EzXxZv6G+VnKTtAlYm63cPWd+sw==} + /@mswjs/data/0.10.2_typescript@4.8.4: + resolution: {integrity: sha512-L6AGyse4GjFfyF9OI7AfYtcLbALN5MZQSvSr7p48wj6zlrrrgIKGkRVf9IEEfqaWimKP31mJDdHhie3lfJQ4SQ==} dependencies: - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 '@types/md5': 2.3.2 '@types/pluralize': 0.0.29 '@types/uuid': 8.3.4 - date-fns: 2.28.0 + date-fns: 2.29.3 debug: 4.3.4 graphql: 15.8.0 lodash: 4.17.21 md5: 2.3.0 outvariant: 1.3.0 pluralize: 8.0.0 - strict-event-emitter: 0.2.4 + strict-event-emitter: 0.2.7 uuid: 8.3.2 optionalDependencies: - msw: 0.44.2_typescript@4.7.4 + msw: 0.47.4_typescript@4.8.4 transitivePeerDependencies: - encoding - supports-color - typescript dev: false - /@mswjs/interceptors/0.17.3: - resolution: {integrity: sha512-jBRFPeHBPqKv3od8KPjmrvt4b/+e1DorizFDYJ8NQCrjFT9YGnxA8ojGi0MIo64x/JgdjYkhP8bG9EY4BGPoqg==} + /@mswjs/interceptors/0.17.6: + resolution: {integrity: sha512-201pBIWehTURb6q8Gheu4Zhvd3Ox1U4BJq5KiOQsYzkWyfiOG4pwcz5hPZIEryztgrf8/sdwABpvY757xMmfrQ==} engines: {node: '>=14'} dependencies: '@open-draft/until': 1.0.3 '@types/debug': 4.1.7 - '@xmldom/xmldom': 0.7.5 + '@xmldom/xmldom': 0.8.3 debug: 4.3.4 - headers-polyfill: 3.0.7 + headers-polyfill: 3.1.2 outvariant: 1.3.0 - strict-event-emitter: 0.2.4 + strict-event-emitter: 0.2.7 web-encoding: 1.1.5 transitivePeerDependencies: - supports-color @@ -6054,6 +6207,12 @@ packages: dev: true optional: true + /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + dependencies: + eslint-scope: 5.1.1 + dev: true + /@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -6084,7 +6243,7 @@ packages: resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} dependencies: '@gar/promisify': 1.1.3 - semver: 7.3.7 + semver: 7.3.8 /@npmcli/move-file/1.1.2: resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} @@ -6093,36 +6252,41 @@ packages: mkdirp: 1.0.4 rimraf: 3.0.2 - /@nrwl/cli/14.5.4: - resolution: {integrity: sha512-UYr14hxeYV8p/zt6D6z33hljZJQROJAVxSC+mm72fyVvy88Gt0sQNLfMmOARXur0p/73PSLM0jJ2Sr7Ftsuu+A==} + /@nrwl/cli/15.0.0: + resolution: {integrity: sha512-D0zAhZ375bQnoUM2HLifMzAa75A3/lC9OkkewsiVVbqaznjEIry8ezHZepgfjFRVzLr3ue7FIpDEH3iJIYzvVw==} dependencies: - nx: 14.5.4 + nx: 15.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' + - debug dev: true - /@nrwl/nx-cloud/14.3.0: - resolution: {integrity: sha512-aByHe8Gp1/IT9CtQYlGLIYBgU+ZtrgEwblBX8kcoBNRPf1OOdouahjyasAjQ9zi1cznve8AzTTcLt2eSCHWfrw==} + /@nrwl/nx-cloud/15.0.0: + resolution: {integrity: sha512-KAYmbx8M4we9gUn14rDnt5vMz+yYwIa4xJNsByWf7mjzC4lvBVZKqFzFGaklWzp/gJN/xyNleZt/Fg64k/kF+A==} hasBin: true dependencies: axios: 0.21.4 chalk: 4.1.0 + dotenv: 10.0.0 + fs-extra: 10.1.0 node-machine-id: 1.1.12 strip-json-comments: 3.1.1 tar: 6.1.11 + yargs-parser: 21.1.1 transitivePeerDependencies: - debug dev: true - /@nrwl/tao/14.5.4: - resolution: {integrity: sha512-a2GCuSE8WghjehuU3GVO63KZEnZXXQiqEg137yN/Na+PxwSu68XeaX53SLyzRskTV120YwBBy1YCTNzAZxxsjg==} + /@nrwl/tao/15.0.0: + resolution: {integrity: sha512-qup1eSWYwp/KVrw/wxeWBvYttQ9dcbQnqpXb5NQMD31SpXEZSpJB1i3GV/o6CF5qQQSNLwICXZx25rNTTQAqpg==} hasBin: true dependencies: - nx: 14.5.4 + nx: 15.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' + - debug dev: true /@open-draft/until/1.0.3: @@ -6135,17 +6299,17 @@ packages: requiresBuild: true dependencies: node-addon-api: 3.2.1 - node-gyp-build: 4.4.0 + node-gyp-build: 4.5.0 dev: true - /@pmmmwh/react-refresh-webpack-plugin/0.5.7_metx475lqcp4j5c75za4zf7xbi: - resolution: {integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==} + /@pmmmwh/react-refresh-webpack-plugin/0.5.8_metx475lqcp4j5c75za4zf7xbi: + resolution: {integrity: sha512-wxXRwf+IQ6zvHSJZ+5T2RQNEsq+kx4jKRXfFvdt3nBIUzJUAvXEFsUeoaohDe/Kr84MTjGwcuIUPNcstNJORsA==} engines: {node: '>= 10.13'} peerDependencies: '@types/webpack': 4.x || 5.x react-refresh: '>=0.10.0 <1.0.0' sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <3.0.0' + type-fest: '>=0.17.0 <4.0.0' webpack: '>=4.43.0 <6.0.0' webpack-dev-server: 3.x || 4.x webpack-hot-middleware: 2.x @@ -6166,7 +6330,7 @@ packages: dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 - core-js-pure: 3.23.1 + core-js-pure: 3.25.5 error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.3 @@ -6177,8 +6341,8 @@ packages: webpack: 5.74.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 /@protobufjs/aspromise/1.1.2: @@ -6224,17 +6388,17 @@ packages: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@react-aria/ssr/3.2.0_react@18.2.0: - resolution: {integrity: sha512-wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA==} + /@react-aria/ssr/3.3.0_react@18.2.0: + resolution: {integrity: sha512-yNqUDuOVZIUGP81R87BJVi/ZUZp/nYOBXbPsRe7oltJOfErQZD+UezMpw4vM2KRz18cURffvmC8tJ6JTeyDtaQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 react: 18.2.0 dev: false - /@reduxjs/toolkit/1.8.4_kkwg4cbsojnjnupd3btipussee: - resolution: {integrity: sha512-IpFq1WI7sCYeLQpDCGvlcQY9wn70UpAM3cOLq78HRnVn1746RI+l3y5xcuOeVOxORaxABJh3cfJMxycD2IwH5w==} + /@reduxjs/toolkit/1.8.6_kuo2ie247izvzll3jejufdtq3q: + resolution: {integrity: sha512-4Ia/Loc6WLmdSOzi7k5ff7dLK8CgG2b8aqpLsCAJhazAzGdp//YBUSaj0ceW6a3kDBDNRrq5CRwyCS0wBiL1ig==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 || 18 react-redux: ^7.2.1 || ^8.0.2 @@ -6246,32 +6410,37 @@ packages: dependencies: immer: 9.0.15 react: 18.2.0 - react-redux: 8.0.2_aaa45f7jnlnm2uprinsrzxzaje + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 reselect: 4.1.6 + /@remix-run/router/1.0.2: + resolution: {integrity: sha512-GRSOFhJzjGN+d4sKHTMSvNeUPoZiDHWmRnXfzaxrqe7dE/Nzlc8BiMSJdLDESZlndM7jIUrZ/F4yWqVYlI0rwQ==} + engines: {node: '>=14'} + dev: false + /@restart/hooks/0.4.7_react@18.2.0: resolution: {integrity: sha512-ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A==} peerDependencies: react: '>=16.8.0 || 18' dependencies: - dequal: 2.0.2 + dequal: 2.0.3 react: 18.2.0 dev: false - /@restart/ui/1.3.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-MYvMs2eeZTHu2dBJHOXKx72vxzEZeWbZx2z1QjeXq62iYjpjIyukBC2ZEy8x+sb9Gl0AiOiHkPXrl1wn95aOGQ==} + /@restart/ui/1.4.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-5dDj5uDzUgK1iijWPRg6AnxjkHM04XhTQDJirM1h/8tIc7KyLtF9YyjcCpNEn259hPMXswpkfXKNgiag0skPFg==} peerDependencies: react: '>=16.14.0 || 18' react-dom: '>=16.14.0 || 18' dependencies: - '@babel/runtime': 7.18.9 - '@popperjs/core': 2.11.5 - '@react-aria/ssr': 3.2.0_react@18.2.0 + '@babel/runtime': 7.19.4 + '@popperjs/core': 2.11.6 + '@react-aria/ssr': 3.3.0_react@18.2.0 '@restart/hooks': 0.4.7_react@18.2.0 '@types/warning': 3.0.0 - dequal: 2.0.2 + dequal: 2.0.3 dom-helpers: 5.2.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6287,9 +6456,9 @@ packages: dependencies: '@types/json-schema': 7.0.11 ajv: 6.12.6 - core-js-pure: 3.23.1 + core-js-pure: 3.25.5 json-schema-merge-allof: 0.6.0 - jsonpointer: 5.0.0 + jsonpointer: 5.0.1 lodash: 4.17.21 lodash-es: 4.17.21 nanoid: 3.3.4 @@ -6297,64 +6466,72 @@ packages: react: 18.2.0 react-is: 16.9.0 - /@rollup/plugin-babel/5.3.1_56fnebo2rl23pzm3cph57q7t7i: - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} + /@rollup/plugin-babel/6.0.0_t2lseskayu4pmjc4spb5q7neyq: + resolution: {integrity: sha512-qM8YIt/2fVxw5O0wUgAeglyC+qx9mg3UtCCLoSqetmQOKipmnQ/X3I0L2sjjb6BswaYpv2tun25lHViU7JPxLQ==} + engines: {node: '>=14.0.0'} peerDependencies: '@babel/core': ^7.0.0 '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 + rollup: ^1.20.0||^2.0.0||^3.0.0 peerDependenciesMeta: '@types/babel__core': optional: true + rollup: + optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/helper-module-imports': 7.16.7 - '@rollup/pluginutils': 3.1.0_rollup@2.77.3 - rollup: 2.77.3 + '@babel/core': 7.19.3 + '@babel/helper-module-imports': 7.18.6 + '@rollup/pluginutils': 4.2.1 + rollup: 3.2.3 dev: true - /@rollup/plugin-commonjs/22.0.2_rollup@2.77.3: - resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} - engines: {node: '>= 12.0.0'} + /@rollup/plugin-commonjs/23.0.0_rollup@3.2.3: + resolution: {integrity: sha512-JbrTRyDNtLQj/rhl7RFUuYXwQ2fac+33oLDAu2k++WD95zweyo28UAomLVA0JMGx4vmCa7Nw4T6k/1F6lelExg==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.68.0 + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.3 + '@rollup/pluginutils': 4.2.1 commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.2.3 + glob: 8.0.3 is-reference: 1.2.1 - magic-string: 0.25.9 - resolve: 1.22.1 - rollup: 2.77.3 + magic-string: 0.26.7 + rollup: 3.2.3 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.3: - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} + /@rollup/plugin-node-resolve/15.0.0_rollup@3.2.3: + resolution: {integrity: sha512-iwJbzfTzlzDDQcGmkS7EkCKwe2kSkdBrjX87Fy/KrNjr6UNnLpod0t6X66e502LRe5JJCA4FFqrEscWPnZAkig==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.42.0 + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.3 - '@types/resolve': 1.17.1 + '@rollup/pluginutils': 4.2.1 + '@types/resolve': 1.20.2 deepmerge: 4.2.2 - is-builtin-module: 3.1.0 + is-builtin-module: 3.2.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.77.3 + rollup: 3.2.3 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.77.3: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} + /@rollup/plugin-terser/0.1.0_rollup@3.2.3: + resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^1.20.0||^2.0.0 + rollup: ^2.x || ^3.x + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 2.77.3 + rollup: 3.2.3 + terser: 5.15.1 dev: true /@rollup/pluginutils/4.2.1: @@ -6365,6 +6542,10 @@ packages: picomatch: 2.3.1 dev: true + /@sinclair/typebox/0.24.51: + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: true + /@sindresorhus/is/0.14.0: resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} engines: {node: '>=6'} @@ -6375,8 +6556,8 @@ packages: type-detect: 4.0.8 dev: true - /@sinonjs/fake-timers/8.1.0: - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} + /@sinonjs/fake-timers/9.1.2: + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: '@sinonjs/commons': 1.8.3 dev: true @@ -6396,12 +6577,12 @@ packages: lodash: 4.17.21 dev: true - /@sinonjs/text-encoding/0.7.1: - resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==} + /@sinonjs/text-encoding/0.7.2: + resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==} dev: true - /@storybook/addon-actions/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-vpCnEu81fmtYzOf0QsRYoDuf9wXgVVl2VysE1dWRebRhIUDU0JurrthTnw322e38D4FzaoNGqZE7wnBYBohzZA==} + /@storybook/addon-actions/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-yEbyKjBsSRUr61SlS+SOTqQwdumO8Wa3GoHO3AfmvoKfzdGrM7w8G5Zs9Iev16khWg/7bQvoH3KZsg/hQuKnNg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6411,14 +6592,14 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6427,15 +6608,15 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-inspector: 5.1.1_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 dev: true - /@storybook/addon-backgrounds/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-5uzQda3dh891h7BL8e9Ymk7BI+QgkkzDJXuA4mHjOXfIiD3S3efhJI8amXuBC2ZpIr6zmVit0MqZVyoVve46cQ==} + /@storybook/addon-backgrounds/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-S0QThY1jnU7Q+HY+g9JgpAJszzNmNkigZ4+X/4qlUXE0WYYn9i2YG5H6me1+57QmIXYddcWWqqgF9HUXl667NA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6445,25 +6626,25 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 global: 4.4.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-lC2y3XcolmQAJwFurIyGrynAHPWmfNtTCdu3rQBTVGwyxCoNwdOOeC2jV0BRqX2+CW6OHzJr9frNWXPSaZ8c4w==} + /@storybook/addon-controls/6.5.12_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-UoaamkGgAQXplr0kixkPhROdzkY+ZJQpG7VFDU6kmZsIgPRNfX/QoJFR5vV6TpDArBIjWaUUqWII+GHgPRzLgQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6473,16 +6654,16 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/node-logger': 6.5.10 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/node-logger': 6.5.12 + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6496,8 +6677,8 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.10_egvqfdazsinegjdfjpjsjh6fyi: - resolution: {integrity: sha512-1kgjo3f0vL6GN8fTwLL05M/q/kDdzvuqwhxPY/v5hubFb3aQZGr2yk9pRBaLAbs4bez0yG0ASXcwhYnrEZUppg==} + /@storybook/addon-docs/6.5.12_midmk4q7nq6bankjng5gmclke4: + resolution: {integrity: sha512-T+QTkmF7QlMVfXHXEberP8CYti/XMTo9oi6VEbZLx+a2N3qY4GZl7X2g26Sf5V4Za+xnapYKBMEIiJ5SvH9weQ==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6510,32 +6691,32 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.2.0 - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.10 - '@storybook/node-logger': 6.5.10 - '@storybook/postinstall': 6.5.10 - '@storybook/preview-web': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/source-loader': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm - core-js: 3.23.1 + '@storybook/docs-tools': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3 + '@storybook/node-logger': 6.5.12 + '@storybook/postinstall': 6.5.12 + '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/source-loader': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + core-js: 3.25.5 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 @@ -6551,8 +6732,8 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.10_egvqfdazsinegjdfjpjsjh6fyi: - resolution: {integrity: sha512-PT2aiR4vgAyB0pl3HNBUa4/a7NDRxASxAazz7zt9ZDirkipDKfxwdcLeRoJzwSngVDWEhuz5/paN5x4eNp4Hww==} + /@storybook/addon-essentials/6.5.12_fozf472gp4suu37hs2nje52g7q: + resolution: {integrity: sha512-4AAV0/mQPSk3V0Pie1NIqqgBgScUc0VtBEXDm8BgPeuDNVhPEupnaZgVt+I3GkzzPPo6JjdCsp2L11f3bBSEjw==} peerDependencies: '@babel/core': ^7.9.6 '@storybook/angular': '*' @@ -6608,23 +6789,24 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.18.10 - '@storybook/addon-actions': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-backgrounds': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/addon-docs': 6.5.10_egvqfdazsinegjdfjpjsjh6fyi - '@storybook/addon-measure': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-outline': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-toolbars': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-viewport': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/node-logger': 6.5.10 - core-js: 3.23.1 + '@babel/core': 7.19.3 + '@storybook/addon-actions': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-backgrounds': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-controls': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/addon-docs': 6.5.12_midmk4q7nq6bankjng5gmclke4 + '@storybook/addon-measure': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-outline': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-toolbars': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-viewport': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.12 + core-js: 3.25.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 webpack: 5.74.0 transitivePeerDependencies: @@ -6637,8 +6819,8 @@ packages: - webpack-command dev: true - /@storybook/addon-measure/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-ss7L1H5K5hXygDIoVwj+QyVXbve5V67x7CofLiLCgQYuJzfO16+sPGjiTGWMpTb4ijox2uKWnTkpilt5bCjXgw==} + /@storybook/addon-measure/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-zmolO6+VG4ov2620G7f1myqLQLztfU+ykN+U5y52GXMFsCOyB7fMoVWIMrZwsNlinDu+CnUvelXHUNbqqnjPRg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6648,20 +6830,20 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.23.1 + core-js: 3.25.5 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true - /@storybook/addon-outline/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-AjdaeQ+/iBKmGrAqRW4niwMB6AkgGnYmSzVs5Cf6F/Sb4Dp+vzgLNOwLABD9qs8Ri8dvHl5J4QpVwQKUhYZaOQ==} + /@storybook/addon-outline/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-jXwLz2rF/CZt6Cgy+QUTa+pNW0IevSONYwS3D533E9z5h0T5ZKJbbxG5jxM+oC+FpZ/nFk5mEmUaYNkxgIVdpw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6671,22 +6853,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.23.1 + core-js: 3.25.5 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 dev: true - /@storybook/addon-toolbars/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-S0Ljc6Wv+bPbx2e0iTveJ6bBDqjsemu+FZD4qDLsHreoI7DAcqyrF5Def1l8xNohixIVpx8dQpYXRtyzNlXekg==} + /@storybook/addon-toolbars/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-+QjoEHkekz4wTy8zqxYdV9ijDJ5YcjDc/qdnV8wx22zkoVU93FQlo0CHHVjpyvc3ilQliZbdQDJx62BcHXw30Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6696,19 +6878,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@storybook/addon-viewport/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-RFMd+4kZljyuJjR9OJ2bFXHrSG7VTi5FDZYWEU+4W1sBxzC+JhnVnUP+HJH3gUxEFIRQC5neRzwWRE9RUUoALQ==} + /@storybook/addon-viewport/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-eQ1UrmbiMiPmWe+fdMWIc0F6brh/S2z4ADfwFz0tTd+vOLWRZp1xw8JYQ9P2ZasE+PM3WFOVT9jvNjZj/cHnfw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6718,71 +6900,119 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@storybook/addons/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-VD4tBCQ23PkSeDoxuHcKy0RfhIs3oMYjBacOZx7d0bvOzK9WjPyvE2ysDAh7r/ceqnwmWHAScIpE+I1RU7gl+g==} + /@storybook/addons/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-y3cgxZq41YGnuIlBJEuJjSFdMsm8wnvlNOGUP9Q+Er2dgfx8rJz4Q22o4hPjpvpaj4XdBtxCJXI2NeFpN59+Cw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@types/webpack-env': 1.17.0 - core-js: 3.23.1 + '@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@storybook/api/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-AkmgSPNEGdKp4oZA4KQ+RJsacw7GwfvjsVDnCkcXqS9zmSr/RNL0fhpcd60KKkmx/hGKPTDFpK3ZayxDrJ/h4A==} + /@storybook/addons/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-18CqzNnrGMfeZtiKz+R/3rHtSNnfNwz6y6prIQIbWseK16jY8ELTfIFGviwO5V2OqpbHDQi5+xQQ63QAIb89YA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 + global: 4.4.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/api/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-DuUZmMlQxkFNU9Vgkp9aNfCkAongU76VVmygvCuSpMVDI9HQ2lG0ydL+ppL4XKoSMCCoXTY6+rg4hJANnH+1AQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 - store2: 2.13.2 + regenerator-runtime: 0.13.10 + store2: 2.14.2 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-AoKjsCNoQQoZXYwBDxO8s+yVEd5FjBJAaysEuUTHq2fb81jwLrGcEOo6hjw4jqfugZQIzYUEjPazlvubS78zpw==} + /@storybook/api/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-xVSmB7/IuFd6G7eiJjbI2MuS7SZunoUM6d+YCWpjiehfMeX47MXt1gZtOwFrgJC1ShZlefXFahq/dvxwtmWs+w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + store2: 2.14.2 + telejson: 6.0.8 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/builder-webpack4/6.5.12_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-TsthT5jm9ZxQPNOZJbF5AV24me3i+jjYD7gbdKdSHrOVn1r3ydX4Z8aD6+BjLCtTn3T+e8NMvUkL4dInEo1x6g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6791,38 +7021,38 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.10 - '@storybook/channels': 6.5.10 - '@storybook/client-api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/core-events': 6.5.10 - '@storybook/node-logger': 6.5.10 - '@storybook/preview-web': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/router': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@babel/core': 7.19.3 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.12 + '@storybook/channels': 6.5.12 + '@storybook/client-api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/core-events': 6.5.12 + '@storybook/node-logger': 6.5.12 + '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.11.47 - '@types/webpack': 4.41.32 + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + '@types/webpack': 4.41.33 autoprefixer: 9.8.8 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.23.1 + core-js: 3.25.5 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_ivdcbprtuxihnrfl74yu7thspu + fork-ts-checker-webpack-plugin: 4.1.6_ybeu3d6gzlmqceoto3zzmxyiwi glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.7.4 + pnp-webpack-plugin: 1.6.4_typescript@4.8.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -6833,13 +7063,13 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 - webpack-hot-middleware: 2.25.1 + webpack-hot-middleware: 2.25.2 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - bluebird @@ -6850,93 +7080,240 @@ packages: - webpack-command dev: true - /@storybook/channel-postmessage/6.5.10: - resolution: {integrity: sha512-t9PTA0UzFvYa3IlOfpBOolfrRMPTjUMIeCQ6FNyM0aj5GqLKSvoQzP8NeoRpIrvyf6ljFKKdaMaZ3fiCvh45ag==} + /@storybook/builder-webpack5/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-juNH31ZljWbaoBD6Yx2/iQ4G66UBkwq+cFUqLzgVROKMXmYaT0AJYbfyY8CgGqcXkc+sqNA63yWaLWd8/K9vTg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 - core-js: 3.23.1 + '@babel/core': 7.19.3 + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channels': 6.5.13 + '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/core-events': 6.5.13 + '@storybook/node-logger': 6.5.13 + '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + babel-plugin-named-exports-order: 0.0.2 + browser-assert: 1.2.1 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.25.5 + css-loader: 5.2.7_webpack@5.74.0 + fork-ts-checker-webpack-plugin: 6.5.2_iphotpp42ipt4ovquw5uqijhcq + glob: 7.2.3 + glob-promise: 3.4.0_glob@7.2.3 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + path-browserify: 1.0.1 + process: 0.11.10 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + stable: 0.1.8 + style-loader: 2.0.0_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 5.74.0 + webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack-hot-middleware: 2.25.2 + webpack-virtual-modules: 0.4.5 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - eslint + - supports-color + - uglify-js + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/channel-postmessage/6.5.12: + resolution: {integrity: sha512-SL/tJBLOdDlbUAAxhiZWOEYd5HI4y8rN50r6jeed5nD8PlocZjxJ6mO0IxnePqIL9Yu3nSrQRHrtp8AJvPX0Yg==} + dependencies: + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 + core-js: 3.25.5 global: 4.4.0 - qs: 6.10.5 + qs: 6.11.0 telejson: 6.0.8 dev: true - /@storybook/channel-websocket/6.5.10: - resolution: {integrity: sha512-RTXMZbMWCS3xU+4GVIdfnUXsKcwg/WTozy88/5OxaKjGw6KgRedqLAQJKJ6Y5XlnwIcWelirkHj/COwTTXhbPg==} + /@storybook/channel-postmessage/6.5.13: + resolution: {integrity: sha512-R79MBs0mQ7TV8M/a6x/SiTRyvZBidDfMEEthG7Cyo9p35JYiKOhj2535zhW4qlVMESBu95pwKYBibTjASoStPw==} dependencies: - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - core-js: 3.23.1 + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + core-js: 3.25.5 + global: 4.4.0 + qs: 6.11.0 + telejson: 6.0.8 + dev: true + + /@storybook/channel-websocket/6.5.12: + resolution: {integrity: sha512-0t5dLselHVKTRYaphxx1dRh4pmOFCfR7h8oNJlOvJ29Qy5eNyVujDG9nhwWbqU6IKayuP4nZrAbe9Req9YZYlQ==} + dependencies: + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + core-js: 3.25.5 global: 4.4.0 telejson: 6.0.8 dev: true - /@storybook/channels/6.5.10: - resolution: {integrity: sha512-lo26YZ6kWpHXLhuHJF4P/bICY7jD/rXEZqReKtGOSk1Lv99/xvG6pqmcy3hWLf3v3Dy/8otjRPSR7izFVIIZgQ==} + /@storybook/channel-websocket/6.5.13: + resolution: {integrity: sha512-kwh667H+tzCiNvs92GNwYOwVXdj9uHZyieRAN5rJtTBJ7XgLzGkpTEU50mWlbc0nDKhgE0qYvzyr5H393Iy5ug==} dependencies: - core-js: 3.23.1 + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + core-js: 3.25.5 + global: 4.4.0 + telejson: 6.0.8 + dev: true + + /@storybook/channels/6.5.12: + resolution: {integrity: sha512-X5XaKbe4b7LXJ4sUakBo00x6pXnW78JkOonHoaKoWsccHLlEzwfBZpVVekhVZnqtCoLT23dB8wjKgA71RYWoiw==} + dependencies: + core-js: 3.25.5 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-3wBWZl3NvMFgMovgEh+euiARAT2FXzpvTF4Q1gerGMNNDlrGxHnFvSuy4FHg/irtOGLa4yLz43ULFbYtpKw0Lg==} + /@storybook/channels/6.5.13: + resolution: {integrity: sha512-sGYSilE30bz0jG+HdHnkv0B4XkAv2hP+KRZr4xmnv+MOOQpRnZpJ5Z3HVU16s17cj/83NWihKj6BuKcEVzyilg==} + dependencies: + core-js: 3.25.5 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/client-api/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-+JiRSgiU829KPc25nG/k0+Ao2nUelHUe8Y/9cRoKWbCAGzi4xd0JLhHAOr9Oi2szWx/OI1L08lxVv1+WTveAeA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.10 - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.12 + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 - '@types/webpack-env': 1.17.0 - core-js: 3.23.1 + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.10.5 + qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 - store2: 2.13.2 - synchronous-promise: 2.0.15 + regenerator-runtime: 0.13.10 + store2: 2.14.2 + synchronous-promise: 2.0.16 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-logger/6.5.10: - resolution: {integrity: sha512-/xA0MHOevXev68hyLMQw8Qo8KczSIdXOxliAgrycMTkDmw5eKeA8TP7B8zP3wGuq/e3MrdD9/8MWhb/IQBNC3w==} - dependencies: - core-js: 3.23.1 - global: 4.4.0 - dev: true - - /@storybook/components/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-9OhgB8YQfGwOKjo/N96N5mrtJ6qDVVoEM1zuhea32tJUd2eYf0aSWpryA9VnOM0V1q/8DAoCg5rPBMYWMBU5uw==} + /@storybook/client-api/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-uH1mAWbidPiuuTdMUVEiuaNOfrYXm+9QLSP1MMYTKULqEOZI5MSOGkEDqRfVWxbYv/iWBOPTQ+OM9TQ6ecYacg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.10 + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/qs': 6.9.7 + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.10.5 + qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + store2: 2.14.2 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.10_c3hoyc4loabfhtyuh36vjkyyai: - resolution: {integrity: sha512-THsIjNrOrampTl0Lgfjvfjk1JnktKb4CQLOM80KpQb4cjDqorBjJmErzUkUQ2y3fXvrDmQ/kUREkShET4XEdtA==} + /@storybook/client-logger/6.5.12: + resolution: {integrity: sha512-IrkMr5KZcudX935/C2balFbxLHhkvQnJ78rbVThHDVckQ7l3oIXTh66IMzldeOabVFDZEMiW8AWuGEYof+JtLw==} + dependencies: + core-js: 3.25.5 + global: 4.4.0 + dev: true + + /@storybook/client-logger/6.5.13: + resolution: {integrity: sha512-F2SMW3LWFGXLm2ENTwTitrLWJgmMXRf3CWQXdN2EbkNCIBHy5Zcbt+91K4OX8e2e5h9gjGfrdYbyYDYOoUCEfA==} + dependencies: + core-js: 3.25.5 + global: 4.4.0 + dev: true + + /@storybook/components/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-NAAGl5PDXaHdVLd6hA+ttmLwH3zAVGXeUmEubzKZ9bJzb+duhFKxDa9blM4YEkI+palumvgAMm0UgS7ou680Ig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/client-logger': 6.5.12 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + util-deprecate: 1.0.2 + dev: true + + /@storybook/components/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-6Hhx70JK5pGfKCkqMU4yq/BBH+vRTmzj7tZKfPwba+f8VmTMoOr/2ysTQFRtXryiHB6Z15xBYgfq5x2pIwQzLQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/client-logger': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + util-deprecate: 1.0.2 + dev: true + + /@storybook/core-client/6.5.12_glstf7nzdgkpv4airl4j7svpo4: + resolution: {integrity: sha512-jyAd0ud6zO+flpLv0lEHbbt1Bv9Ms225M6WTQLrfe7kN/7j1pVKZEoeVCLZwkJUtSKcNiWQxZbS15h31pcYwqg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6946,71 +7323,108 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.10 - '@storybook/channel-websocket': 6.5.10 - '@storybook/client-api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.12 + '@storybook/channel-websocket': 6.5.12 + '@storybook/client-api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.23.1 + core-js: 3.25.5 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.5 + qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.7.4 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0 - dev: true - - /@storybook/core-client/6.5.10_qyk6idcafspi7uz7vy6757spbm: - resolution: {integrity: sha512-THsIjNrOrampTl0Lgfjvfjk1JnktKb4CQLOM80KpQb4cjDqorBjJmErzUkUQ2y3fXvrDmQ/kUREkShET4XEdtA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.10 - '@storybook/channel-websocket': 6.5.10 - '@storybook/client-api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.10_biqbaboplfbrettd7655fr4n2y - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.23.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.5 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 5.74.0 dev: true - /@storybook/core-common/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-Bx+VKkfWdrAmD8T51Sjq/mMhRaiapBHcpG4cU5bc3DMbg+LF2/yrgqv/cjVu+m5gHAzYCac5D7gqzBgvG7Myww==} + /@storybook/core-client/6.5.12_vknrbelhugdkckamahrfl2bl2m: + resolution: {integrity: sha512-jyAd0ud6zO+flpLv0lEHbbt1Bv9Ms225M6WTQLrfe7kN/7j1pVKZEoeVCLZwkJUtSKcNiWQxZbS15h31pcYwqg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.12 + '@storybook/channel-websocket': 6.5.12 + '@storybook/client-api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.25.5 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + ts-dedent: 2.2.0 + typescript: 4.8.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + dev: true + + /@storybook/core-client/6.5.13_glstf7nzdgkpv4airl4j7svpo4: + resolution: {integrity: sha512-YuELbRokTBdqjbx/R4/7O4rou9kvbBIOJjlUkor9hdLLuJ3P0yGianERGNkZFfvcfMBAxU0p52o7QvDldSR3kA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channel-websocket': 6.5.13 + '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.25.5 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + ts-dedent: 2.2.0 + typescript: 4.8.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.74.0 + dev: true + + /@storybook/core-common/6.5.12_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-gG20+eYdIhwQNu6Xs805FLrOCWtkoc8Rt8gJiRt8yXzZh9EZkU4xgCRoCxrrJ03ys/gTiCFbBOfRi749uM3z4w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -7019,41 +7433,41 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 - '@babel/register': 7.18.9_@babel+core@7.18.10 - '@storybook/node-logger': 6.5.10 + '@babel/core': 7.19.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/register': 7.18.9_@babel+core@7.19.3 + '@storybook/node-logger': 6.5.12 '@storybook/semver': 7.3.2 - '@types/node': 16.11.47 + '@types/node': 16.11.66 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3 chalk: 4.1.2 - core-js: 3.23.1 - express: 4.18.1 + core-js: 3.25.5 + express: 4.18.2 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_ivdcbprtuxihnrfl74yu7thspu + fork-ts-checker-webpack-plugin: 6.5.2_ybeu3d6gzlmqceoto3zzmxyiwi fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -7069,7 +7483,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7080,14 +7494,91 @@ packages: - webpack-command dev: true - /@storybook/core-events/6.5.10: - resolution: {integrity: sha512-EVb1gO1172klVIAABLOoigFMx0V88uctY0K/qVCO8n6v+wd2+0Ccn63kl+gTxsAC3WZ8XhXh9q2w5ImHklVECw==} + /@storybook/core-common/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-+DVZrRsteE9pw0X5MNffkdBgejQnbnL+UOG3qXkE9xxUamQALnuqS/w1BzpHE9WmOHuf7RWMKflyQEW3OLKAJg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: - core-js: 3.23.1 + '@babel/core': 7.19.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/register': 7.18.9_@babel+core@7.19.3 + '@storybook/node-logger': 6.5.13 + '@storybook/semver': 7.3.2 + '@types/node': 16.11.66 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3 + chalk: 4.1.2 + core-js: 3.25.5 + express: 4.18.2 + file-system-cache: 1.1.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.2_ybeu3d6gzlmqceoto3zzmxyiwi + fs-extra: 9.1.0 + glob: 7.2.3 + handlebars: 4.7.7 + interpret: 2.2.0 + json5: 2.2.1 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 6.0.8 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 4.46.0 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command dev: true - /@storybook/core-server/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-jqwpA0ccA8X5ck4esWBid04+cEIVqirdAcqJeNb9IZAD+bRreO4Im8ilzr7jc5AmQ9fkqHs2NByFKh9TITp8NQ==} + /@storybook/core-events/6.5.12: + resolution: {integrity: sha512-0AMyMM19R/lHsYRfWqM8zZTXthasTAK2ExkSRzYi2GkIaVMxRKtM33YRwxKIpJ6KmIKIs8Ru3QCXu1mfCmGzNg==} + dependencies: + core-js: 3.25.5 + dev: true + + /@storybook/core-events/6.5.13: + resolution: {integrity: sha512-kL745tPpRKejzHToA3/CoBNbI+NPRVk186vGxXBmk95OEg0TlwgQExP8BnqEtLlRZMbW08e4+6kilc1M1M4N5w==} + dependencies: + core-js: 3.25.5 + dev: true + + /@storybook/core-server/6.5.12_ytxhm2og7grtgk7zaev74b66zq: + resolution: {integrity: sha512-q1b/XKwoLUcCoCQ+8ndPD5THkEwXZYJ9ROv16i2VGUjjjAuSqpEYBq5GMGQUgxlWp1bkxtdGL2Jz+6pZfvldzA==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -7103,31 +7594,33 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/core-client': 6.5.10_c3hoyc4loabfhtyuh36vjkyyai - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/core-events': 6.5.10 + '@storybook/builder-webpack4': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/core-client': 6.5.12_vknrbelhugdkckamahrfl2bl2m + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/csf-tools': 6.5.10 - '@storybook/manager-webpack4': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/node-logger': 6.5.10 + '@storybook/csf-tools': 6.5.12 + '@storybook/manager-webpack4': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.12 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@types/node': 16.11.47 + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/telemetry': 6.5.12_ceius3krcep667lesqygbylwku + '@types/node': 16.11.66 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 - '@types/webpack': 4.41.32 + '@types/webpack': 4.41.33 better-opn: 2.1.1 boxen: 5.1.2 chalk: 4.1.2 - cli-table3: 0.6.2 + cli-table3: 0.6.3 commander: 6.2.1 compression: 1.7.4 - core-js: 3.23.1 + core-js: 3.25.5 cpy: 8.1.2 - detect-port: 1.3.0 - express: 4.18.1 + detect-port: 1.5.1 + express: 4.18.2 fs-extra: 9.1.0 global: 4.4.0 globby: 11.1.0 @@ -7139,16 +7632,16 @@ packages: prompts: 2.4.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 serve-favicon: 2.5.0 slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.8.0 + ws: 8.9.0 x-default-browser: 0.4.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -7163,8 +7656,8 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.10_fbfc5bujbsqeqvejhu25k3ahfe: - resolution: {integrity: sha512-K86yYa0tYlMxADlwQTculYvPROokQau09SCVqpsLg3wJCTvYFL4+SIqcYoyBSbFmHOdnYbJgPydjN33MYLiOZQ==} + /@storybook/core/6.5.12_v2lpnt6djbxmifrauufufsjt3e: + resolution: {integrity: sha512-+o3psAVWL+5LSwyJmEbvhgxKO1Et5uOX8ujNVt/f1fgwJBIf6BypxyPKu9YGQDRzcRssESQQZWNrZCCAZlFeuQ==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -7180,11 +7673,13 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.10_qyk6idcafspi7uz7vy6757spbm - '@storybook/core-server': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/core-client': 6.5.12_glstf7nzdgkpv4airl4j7svpo4 + '@storybook/core-server': 6.5.12_ytxhm2og7grtgk7zaev74b66zq + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.7.4 + typescript: 4.8.4 webpack: 5.74.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -7199,27 +7694,27 @@ packages: - webpack-command dev: true - /@storybook/csf-tools/6.5.10: - resolution: {integrity: sha512-H77kZQEisu7+skzeIbNZwmE09OqLjwJTeFhLN1pcjxKVa30LEI3pBHcNBxVKqgxl+Yg3KkB7W/ArLO2N+i2ohw==} + /@storybook/csf-tools/6.5.12: + resolution: {integrity: sha512-BPhnB1xJtBVOzXuCURzQRdXcstE27ht4qoTgQkbwUTy4MEtUZ/f1AnHSYRdzrgukXdUFWseNIK4RkNdJpfOfNQ==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 peerDependenciesMeta: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.12 - '@babel/parser': 7.18.11 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/core': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/parser': 7.19.4 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.10 - core-js: 3.23.1 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3 + core-js: 3.25.5 fs-extra: 9.1.0 global: 4.4.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color @@ -7231,24 +7726,24 @@ packages: lodash: 4.17.21 dev: true - /@storybook/docs-tools/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-/bvYgOO+CxMEcHifkjJg0A60OTGOhcjGxnsB1h0gJuxMrqA/7Qwc108bFmPiX0eiD1BovFkZLJV4O6OY7zP5Vw==} + /@storybook/docs-tools/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8brf8W89KVk95flVqW0sYEqkL+FBwb5W9CnwI+Ggd6r2cqXe9jyg+0vDZFdYp6kYNQKrPr4fbXGrGVXQG18/QQ==} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 doctrine: 3.0.0 lodash: 4.17.21 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 transitivePeerDependencies: - react - react-dom - supports-color dev: true - /@storybook/manager-webpack4/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-N/TlNDhuhARuFipR/ZJ/xEVESz23iIbCsZ4VNehLHm8PpiGlQUehk+jMjWmz5XV0bJItwjRclY+CU3GjZKblfQ==} + /@storybook/manager-webpack4/6.5.12_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-LH3e6qfvq2znEdxe2kaWtmdDPTnvSkufzoC9iwOgNvo3YrTGrYNyUTDegvW293TOTVfUn7j6TBcsOxIgRnt28g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -7257,39 +7752,39 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.10_c3hoyc4loabfhtyuh36vjkyyai - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq - '@storybook/node-logger': 6.5.10 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.11.47 - '@types/webpack': 4.41.32 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + '@babel/core': 7.19.3 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.12_vknrbelhugdkckamahrfl2bl2m + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.12 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + '@types/webpack': 4.41.33 + babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 - core-js: 3.23.1 + core-js: 3.25.5 css-loader: 3.6.0_webpack@4.46.0 - express: 4.18.1 + express: 4.18.2 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.7.4 + pnp-webpack-plugin: 1.6.4_typescript@4.8.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 resolve-from: 5.0.0 style-loader: 1.3.0_webpack@4.46.0 telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7305,15 +7800,72 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf/0.0.1_@babel+core@7.18.10: + /@storybook/manager-webpack5/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-lQEZacSfeRsbqfJE7TVk35Hm1vkr0I2i1pyYqM+4862gRbMh1nJQXbJ5GqZ+Fo/bf0ZfyFZ32jGDIJAFdlpkuQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.19.3 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.13_glstf7nzdgkpv4airl4j7svpo4 + '@storybook/core-common': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.13 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.25.5 + css-loader: 5.2.7_webpack@5.74.0 + express: 4.18.2 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + node-fetch: 2.6.7 + process: 0.11.10 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.10 + resolve-from: 5.0.0 + style-loader: 2.0.0_webpack@5.74.0 + telejson: 6.0.8 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 5.74.0 + webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack-virtual-modules: 0.4.5 + transitivePeerDependencies: + - '@swc/core' + - encoding + - esbuild + - eslint + - supports-color + - uglify-js + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/mdx1-csf/0.0.1_@babel+core@7.19.3: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.18.12 - '@babel/parser': 7.18.11 - '@babel/preset-env': 7.18.10_@babel+core@7.18.10 - '@babel/types': 7.18.10 + '@babel/generator': 7.19.5 + '@babel/parser': 7.19.4 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/types': 7.19.4 '@mdx-js/mdx': 1.6.22 - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 js-string-escape: 1.0.1 loader-utils: 2.0.2 lodash: 4.17.21 @@ -7324,49 +7876,85 @@ packages: - supports-color dev: true - /@storybook/node-logger/6.5.10: - resolution: {integrity: sha512-bYswXIKV7Stru8vYfkjUMNN8UhF7Qg7NRsUvG5Djt5lLIae1XmUIgnH40mU/nW4X4BSfcR9MKxsSsngvn2WmQg==} + /@storybook/node-logger/6.5.12: + resolution: {integrity: sha512-jdLtT3mX5GQKa+0LuX0q0sprKxtCGf6HdXlKZGD5FEuz4MgJUGaaiN0Hgi+U7Z4tVNOtSoIbYBYXHqfUgJrVZw==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 - core-js: 3.23.1 + core-js: 3.25.5 npmlog: 5.0.1 pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall/6.5.10: - resolution: {integrity: sha512-xqUdpnFHYkn8MgtV+QztvIsRWa6jQUk7QT1Mu17Y0S7PbslNGsuskRPHenHhACXBJF+TM86R+4BaAhnVYTmElw==} + /@storybook/node-logger/6.5.13: + resolution: {integrity: sha512-/r5aVZAqZRoy5FyNk/G4pj7yKJd3lJfPbAaOHVROv2IF7PJP/vtRaDkcfh0g2U6zwuDxGIqSn80j+qoEli9m5A==} dependencies: - core-js: 3.23.1 + '@types/npmlog': 4.1.4 + chalk: 4.1.2 + core-js: 3.25.5 + npmlog: 5.0.1 + pretty-hrtime: 1.0.3 dev: true - /@storybook/preview-web/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-sTC/o5gkvALOtcNgtApGKGN9EavvSxRHBeBh+5BQjV2qQ8ap+26RsfUizNBECAa2Jrn4osaDYn9HRhJLFL69WA==} + /@storybook/postinstall/6.5.12: + resolution: {integrity: sha512-6K73f9c2UO+w4Wtyo2BxEpEsnhPvMgqHSaJ9Yt6Tc90LaDGUbcVgy6PNibsRyuJ/KQ543WeiRO5rSZfm2uJU9A==} + dependencies: + core-js: 3.25.5 + dev: true + + /@storybook/preview-web/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-Q5mduCJsY9zhmlsrhHvtOBA3Jt2n45bhfVkiUEqtj8fDit45/GW+eLoffv8GaVTGjV96/Y1JFwDZUwU6mEfgGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y ansi-to-html: 0.6.15 - core-js: 3.23.1 + core-js: 3.25.5 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.5 + qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 - synchronous-promise: 2.0.15 + regenerator-runtime: 0.13.10 + synchronous-promise: 2.0.16 ts-dedent: 2.2.0 unfetch: 4.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_xnp4kzegbjokq62cajex2ovgkm: + /@storybook/preview-web/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-GNNYVzw4SmRua3dOc52Ye6Us4iQbq5GKQ56U3iwnzZM3TBdJB+Rft94Fn1/pypHujEHS8hl5Xgp9td6C1lLCow==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + ansi-to-html: 0.6.15 + core-js: 3.25.5 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_qqxisngxjbp7lstdk7boexbu3e: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -7377,16 +7965,16 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.7.4 + react-docgen-typescript: 2.2.2_typescript@4.8.4 tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 webpack: 5.74.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.10_v3px4sshlpmiq6tqqws5mil25u: - resolution: {integrity: sha512-m8S1qQrwA7pDGwdKEvL6LV3YKvSzVUY297Fq+xcTU3irnAy4sHDuFoLqV6Mi1510mErK1r8+rf+0R5rEXB219g==} + /@storybook/react/6.5.12_z7mbqtlf63qmqxqctdyj6vphwm: + resolution: {integrity: sha512-1tG8EdSfp+OZAKAWPT2UrexF4o007jEMwQFFXw1atIQrQOADzSnZ7lTYJ08o5TyJwksswtr18tH3oJJ9sG3KPw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -7413,29 +8001,31 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/preset-flow': 7.17.12_@babel+core@7.18.10 - '@babel/preset-react': 7.18.6_@babel+core@7.18.10 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_metx475lqcp4j5c75za4zf7xbi - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/core': 6.5.10_fbfc5bujbsqeqvejhu25k3ahfe - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq + '@babel/core': 7.19.3 + '@babel/preset-flow': 7.18.6_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.8_metx475lqcp4j5c75za4zf7xbi + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/client-logger': 6.5.12 + '@storybook/core': 6.5.12_v2lpnt6djbxmifrauufufsjt3e + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/node-logger': 6.5.10 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_xnp4kzegbjokq62cajex2ovgkm + '@storybook/docs-tools': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.12 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_qqxisngxjbp7lstdk7boexbu3e '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.10_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 - '@types/node': 16.11.47 - '@types/webpack-env': 1.17.0 + '@types/node': 16.11.66 + '@types/webpack-env': 1.18.0 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 - core-js: 3.23.1 + core-js: 3.25.5 escodegen: 2.0.0 fs-extra: 9.1.0 global: 4.4.0 @@ -7447,10 +8037,10 @@ packages: react-element-to-jsx-string: 14.3.4_biqbaboplfbrettd7655fr4n2y react-refresh: 0.11.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.7.4 + typescript: 4.8.4 util-deprecate: 1.0.2 webpack: 5.74.0 transitivePeerDependencies: @@ -7475,19 +8065,34 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-O+vNW/eEpYFF8eCg5jZjNQ6q2DKQVxqDRPCy9pJdEbvavMDZn6AFYgVK+VJe5F4211WW2yncOu922xObCxXJYg==} + /@storybook/router/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-xHubde9YnBbpkDY5+zGO4Pr6VPxP8H9J2v4OTF3H82uaxCIKR0PKG0utS9pFKIsEiP3aM62Hb9qB8nU+v1nj3w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.10 - core-js: 3.23.1 + '@storybook/client-logger': 6.5.12 + core-js: 3.25.5 memoizerific: 1.11.3 - qs: 6.10.5 + qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/router/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-sf5aogfirH5ucD0d0hc2mKf2iyWsZsvXhr5kjxUQmgkcoflkGUWhc34sbSQVRQ1i8K5lkLIDH/q2s1Zr2SbzhQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/client-logger': 6.5.13 + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 dev: true /@storybook/semver/7.3.2: @@ -7495,20 +8100,20 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - core-js: 3.23.1 + core-js: 3.25.5 find-up: 4.1.0 dev: true - /@storybook/source-loader/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-1RxxRumpjs8VUUwES9LId+cuNQnixhZAcwCxd6jaKkTZbjiQCtAhXX6DBTjJGV1u/JnCsqEp5b1wB8j/EioNHw==} + /@storybook/source-loader/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-4iuILFsKNV70sEyjzIkOqgzgQx7CJ8kTEFz590vkmWXQNKz7YQzjgISIwL7GBw/myJgeb04bl5psVgY0cbG5vg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.23.1 + core-js: 3.25.5 estraverse: 5.3.0 global: 4.4.0 loader-utils: 2.0.2 @@ -7516,49 +8121,74 @@ packages: prettier: 2.3.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@storybook/store/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-RswrSYh2IiKkytFPxP9AvP+hekjrvHK2ILvyDk2ZgduCN4n5ivsekOb+N3M2t+dq1eLuW9or5n2T4OWwAwjxxQ==} + /@storybook/store/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-SMQOr0XvV0mhTuqj3XOwGGc4kTPVjh3xqrG1fqkj9RGs+2jRdmO6mnwzda5gPwUmWNTorZ7FxZ1iEoyfYNtuiQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.10 - '@storybook/core-events': 6.5.10 + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.12 + '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.23.1 + core-js: 3.25.5 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 slash: 3.0.0 stable: 0.1.8 - synchronous-promise: 2.0.15 + synchronous-promise: 2.0.16 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq: - resolution: {integrity: sha512-+M5HILDFS8nDumLxeSeAwi1MTzIuV6UWzV4yB2wcsEXOBTdplcl9oYqFKtlst78oOIdGtpPYxYfivDlqxC2K4g==} + /@storybook/store/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-GG6lm+8fBX1tNUnX7x3raBOjYhhf14bPWLtYiPlxDTFEMs3sJte7zWKZq6NQ79MoBLL6jjzTeolBfDCBw6fiWQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.10 - '@storybook/core-common': 6.5.10_7pxu6c7vgs7yic5gnzu7awjkkq + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + slash: 3.0.0 + stable: 0.1.8 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/telemetry/6.5.12_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-mCHxx7NmQ3n7gx0nmblNlZE5ZgrjQm6B08mYeWg6Y7r4GZnqS6wZbvAwVhZZ3Gg/9fdqaBApHsdAXp0d5BrlxA==} + dependencies: + '@storybook/client-logger': 6.5.12 + '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku chalk: 4.1.2 - core-js: 3.23.1 + core-js: 3.25.5 detect-package-manager: 2.0.1 - fetch-retry: 5.0.2 + fetch-retry: 5.0.3 fs-extra: 9.1.0 global: 4.4.0 isomorphic-unfetch: 3.1.0 nanoid: 3.3.4 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 transitivePeerDependencies: - encoding - eslint @@ -7571,41 +8201,79 @@ packages: - webpack-command dev: true - /@storybook/theming/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-BvTQBBcSEwKKcsVmF+Ol6v0RIQUr+bxP7gb10wtfBd23mZTEFA0C1N5FnZr/dDeiBKG1pvf1UKvoYA731y0BsA==} + /@storybook/theming/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-uWOo84qMQ2R6c1C0faZ4Q0nY01uNaX7nXoJKieoiJ6ZqY9PSYxJl1kZLi3uPYnrxLZjzjVyXX8MgdxzbppYItA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.5.10 - core-js: 3.23.1 + '@storybook/client-logger': 6.5.12 + core-js: 3.25.5 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@storybook/ui/6.5.10_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-6iaoaRAiTqB1inTw35vao+5hjcDE0Qa0A3a9ZIeNa6yHvpB1k0lO/N/0PMrRdVvySYpXVD1iry4z4QYdo1rU+w==} + /@storybook/theming/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-oif5NGFAUQhizo50r+ctw2hZNLWV4dPHai+L/gFvbaSeRBeHSNkIcMoZ2FlrO566HdGZTDutYXcR+xus8rI28g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/channels': 6.5.10 - '@storybook/client-logger': 6.5.10 - '@storybook/components': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.10 - '@storybook/router': 6.5.10_biqbaboplfbrettd7655fr4n2y - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.10_biqbaboplfbrettd7655fr4n2y - core-js: 3.23.1 + '@storybook/client-logger': 6.5.13 + core-js: 3.25.5 memoizerific: 1.11.3 - qs: 6.10.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/ui/6.5.12_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-P7+ARI5NvaEYkrbIciT/UMgy3kxMt4WCtHMXss2T01UMCIWh1Ws4BJaDNqtQSpKuwjjS4eqZL3aQWhlUpYAUEg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.12 + '@storybook/client-logger': 6.5.12 + '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.12 + '@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + resolve-from: 5.0.0 + dev: true + + /@storybook/ui/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-MklJuSg4Bc+MWjwhZVmZhJaucaeEBUMMa2V9oRWbIgZOdRHqdW72S2vCbaarDAYfBQdnfaoq1GkSQiw+EnWOzA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.13 + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 resolve-from: 5.0.0 dev: true @@ -7615,18 +8283,18 @@ packages: dependencies: defer-to-connect: 1.1.3 - /@testim/chrome-version/1.1.2: - resolution: {integrity: sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==} + /@testim/chrome-version/1.1.3: + resolution: {integrity: sha512-g697J3WxV/Zytemz8aTuKjTGYtta9+02kva3C1xc7KXB8GdbfE1akGJIsZLyY/FSh2QrnE+fiB7vmWU3XNcb6A==} dev: true - /@testing-library/dom/8.17.1: - resolution: {integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ==} + /@testing-library/dom/8.19.0: + resolution: {integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==} engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/aria-query': 4.2.2 - aria-query: 5.0.0 + aria-query: 5.0.2 chalk: 4.1.2 dom-accessibility-api: 0.5.14 lz-string: 1.4.4 @@ -7638,9 +8306,9 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.0.1 - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/testing-library__jest-dom': 5.14.5 - aria-query: 5.0.0 + aria-query: 5.0.2 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.5.14 @@ -7648,32 +8316,39 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react/13.3.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==} + /@testing-library/react/13.4.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} engines: {node: '>=12'} peerDependencies: react: ^18.0.0 || 18 react-dom: ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.18.9 - '@testing-library/dom': 8.17.1 - '@types/react-dom': 18.0.5 + '@babel/runtime': 7.19.4 + '@testing-library/dom': 8.19.0 + '@types/react-dom': 18.0.6 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true - /@testing-library/user-event/14.4.3_wl4iynrlixafokvgqnhzlvigei: + /@testing-library/user-event/14.4.3_aaq3sbffpfe3jnxzm2zngsddei: resolution: {integrity: sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@testing-library/dom': 8.17.1 + '@testing-library/dom': 8.19.0 dev: true /@tootallnate/once/1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} + dev: false + optional: true + + /@tootallnate/once/2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true /@tsconfig/node10/1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} @@ -7694,13 +8369,13 @@ packages: /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: false /@types/ag-auth/1.0.0: resolution: {integrity: sha512-9Zri8Apx8al2ZfqcsJ5X39GoirGiVcP7sp1I4mOgsRwXeAwPGadE//44jMHTpCpVDwQ4geGzmD2KMlZspAAcdA==} dependencies: - '@types/jsonwebtoken': 8.5.8 + '@types/jsonwebtoken': 8.5.9 dev: true /@types/ag-channel/5.0.0: @@ -7743,30 +8418,30 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.18.5 - '@babel/types': 7.18.4 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.17.1 + '@types/babel__traverse': 7.18.2 dev: true /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.4 + '@babel/types': 7.19.4 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.5 - '@babel/types': 7.18.4 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 dev: true - /@types/babel__traverse/7.17.1: - resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} + /@types/babel__traverse/7.18.2: + resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} dependencies: - '@babel/types': 7.18.4 + '@babel/types': 7.19.4 dev: true /@types/babylon/6.16.6: @@ -7782,25 +8457,25 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 18.0.0 + '@types/node': 18.11.7 /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true - /@types/chrome/0.0.193: - resolution: {integrity: sha512-R8C84oqvk8A8C8G1viBd8qLpDr86Y/jwD+KLgzUekbIT9RGds6a9GnlQyg8P7ltnGogTMHkiEQK0ZlcrvTeo3Q==} + /@types/chrome/0.0.198: + resolution: {integrity: sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==} dependencies: '@types/filesystem': 0.0.32 - '@types/har-format': 1.2.8 + '@types/har-format': 1.2.9 /@types/classnames/2.3.1: resolution: {integrity: sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==} deprecated: This is a stub types definition. classnames provides its own type definitions, so you do not need this installed. dependencies: - classnames: 2.3.1 + classnames: 2.3.2 dev: true /@types/codemirror/5.60.5: @@ -7828,19 +8503,19 @@ packages: /@types/connect-history-api-fallback/1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: - '@types/express-serve-static-core': 4.17.30 - '@types/node': 18.0.0 + '@types/express-serve-static-core': 4.17.31 + '@types/node': 18.11.7 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 /@types/consumable-stream/2.0.0: resolution: {integrity: sha512-RuXAZX3pQ2jGgETa1p4fTZb4Y1IxanZ8hafWewNoWW+Nqc4OcDw2VbAPzB1Wq7l5rtvmmCmHnpDX0CNRthqsAA==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/cookie/0.4.1: @@ -7854,7 +8529,7 @@ packages: /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.10.0: resolution: {integrity: sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 tapable: 2.2.1 webpack: 5.74.0_webpack-cli@4.10.0 transitivePeerDependencies: @@ -7870,7 +8545,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/d3/3.5.47: @@ -7893,48 +8568,41 @@ packages: resolution: {integrity: sha512-wvlFvfUd3FAJyRhgjfibljYSPJ/XKmB3sSlPV+1P5dinRmdSE0lYOFXfJ/ZiWSfBN0Cex5MENBUw8kjsvft+8w==} dev: true - /@types/eslint-scope/3.7.3: - resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==} + /@types/eslint-scope/3.7.4: + resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: - '@types/eslint': 8.4.3 + '@types/eslint': 8.4.6 '@types/estree': 0.0.51 dev: true - /@types/eslint/8.4.3: - resolution: {integrity: sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==} + /@types/eslint/8.4.6: + resolution: {integrity: sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 dev: true - /@types/estree/0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true - /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + dev: true - /@types/express-serve-static-core/4.17.29: - resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==} + /@types/estree/1.0.0: + resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} + + /@types/express-serve-static-core/4.17.31: + resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 - /@types/express-serve-static-core/4.17.30: - resolution: {integrity: sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==} - dependencies: - '@types/node': 18.0.0 - '@types/qs': 6.9.7 - '@types/range-parser': 1.2.4 - - /@types/express/4.17.13: - resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} + /@types/express/4.17.14: + resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.29 + '@types/express-serve-static-core': 4.17.31 '@types/qs': 6.9.7 - '@types/serve-static': 1.13.10 + '@types/serve-static': 1.15.0 /@types/filesystem/0.0.32: resolution: {integrity: sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ==} @@ -7951,18 +8619,25 @@ packages: /@types/glob/7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: - '@types/minimatch': 3.0.5 - '@types/node': 18.0.0 + '@types/minimatch': 5.1.2 + '@types/node': 18.11.7 + dev: true + + /@types/glob/8.0.0: + resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 18.11.7 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true - /@types/har-format/1.2.8: - resolution: {integrity: sha512-OP6L9VuZNdskgNN3zFQQ54ceYD8OLq5IbqO4VK91ORLfOm7WdT/CiT/pHEBSQEqCInJ2y3O6iCm/zGtPElpgJQ==} + /@types/har-format/1.2.9: + resolution: {integrity: sha512-rffW6MhQ9yoa75bdNi+rjZBAvu2HhehWJXlhuWXnWdENeuKe82wUgAwxYOb7KRKKmxYN+D/iRKd2NDQMLqlUmg==} /@types/hast/2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} @@ -7981,7 +8656,7 @@ packages: /@types/hoist-non-react-statics/3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 hoist-non-react-statics: 3.3.2 /@types/html-entities/1.3.4: @@ -8002,13 +8677,13 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/is-ci/3.0.0: resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} dependencies: - ci-info: 3.3.2 + ci-info: 3.5.0 dev: true /@types/is-function/1.0.1: @@ -8031,11 +8706,11 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.5.2: - resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} + /@types/jest/29.2.0: + resolution: {integrity: sha512-KO7bPV21d65PKwv3LLsD8Jn3E05pjNjRZvkm+YTacWhVmykAb07wW6IkZUmQAltwQafNcDUEUrMO2h3jeBSisg==} dependencies: - jest-matcher-utils: 27.5.1 - pretty-format: 27.5.1 + expect: 29.2.2 + pretty-format: 29.2.1 dev: true /@types/js-levenshtein/1.1.1: @@ -8045,6 +8720,14 @@ packages: /@types/jsan/3.1.2: resolution: {integrity: sha512-+HCe1/X0w90LijHWI/lkcjIohu1AK6QwjUWuXs0hNWDCFAjgpWw2CnSUiZwOOtix1nYqio7TuajTcK5mSH/WZw==} + /@types/jsdom/20.0.0: + resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==} + dependencies: + '@types/node': 18.11.7 + '@types/tough-cookie': 4.0.2 + parse5: 7.1.1 + dev: true + /@types/json-schema/7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} @@ -8052,42 +8735,42 @@ packages: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/jsonwebtoken/8.5.8: - resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} + /@types/jsonwebtoken/8.5.9: + resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} dependencies: - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 dev: true /@types/lodash.debounce/4.0.7: resolution: {integrity: sha512-X1T4wMZ+gT000M2/91SYj0d/7JfeNZ9PeeOldSNoE/lunLeQXKvkmIumI29IaKMotU/ln/McOIvgzZcQ/3TrSA==} dependencies: - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 /@types/lodash.mergewith/4.6.6: resolution: {integrity: sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg==} dependencies: - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 dev: false /@types/lodash.shuffle/4.2.7: resolution: {integrity: sha512-b+K0NBpB4WcNoQTfifuTmi5nm5mJXRw9DBdbFfBr1q1+EVoTKkClDxq/7r1sq2GZcRelMFRsFcGGHrHQgxRySg==} dependencies: - '@types/lodash': 4.14.182 + '@types/lodash': 4.14.186 dev: true - /@types/lodash/4.14.182: - resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==} + /@types/lodash/4.14.186: + resolution: {integrity: sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw==} /@types/long/4.0.2: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} @@ -8103,11 +8786,11 @@ packages: '@types/unist': 2.0.6 dev: true - /@types/mime/1.3.2: - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} + /@types/mime/3.0.1: + resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} - /@types/minimatch/3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + /@types/minimatch/5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: true /@types/minimist/1.2.2: @@ -8117,7 +8800,7 @@ packages: /@types/morgan/1.9.3: resolution: {integrity: sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/ms/0.7.31: @@ -8127,7 +8810,7 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 form-data: 3.0.1 dev: true @@ -8139,15 +8822,11 @@ packages: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node/16.11.41: - resolution: {integrity: sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==} + /@types/node/16.11.66: + resolution: {integrity: sha512-+xvMrGl3eAygKcf5jm+4zA4tbfEgmKM9o6/glTmN0RFVdu2VuFXMYYtRmuv3zTGCgAYMnEZLde3B7BTp+Yxcig==} - /@types/node/16.11.47: - resolution: {integrity: sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g==} - dev: true - - /@types/node/18.0.0: - resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==} + /@types/node/18.11.7: + resolution: {integrity: sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8180,8 +8859,8 @@ packages: resolution: {integrity: sha512-BYOID+l2Aco2nBik+iYS4SZX0Lf20KPILP5RGmM1IgzdwNdTs0eebiFriOPcej1sX9mLnSoiNte5zcFxssgpGA==} dev: false - /@types/prettier/2.6.3: - resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} + /@types/prettier/2.7.1: + resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} dev: true /@types/pretty-hrtime/1.0.1: @@ -8194,8 +8873,8 @@ packages: /@types/qs/6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - /@types/ramda/0.28.15: - resolution: {integrity: sha512-FCaLNVZry65jW8x/FDnKgjgkCNQxgc5AYMQwdNn6yW5M+62R+0nt2Y36U43dTNora9hcquemfrY5gxhE5pcilQ==} + /@types/ramda/0.28.16: + resolution: {integrity: sha512-dxx0V3/thotNhkHjBL5ifkXm9Cj3aANnAcEjMuGq2i5OaznWaiyGAQR9CicO7fJrFXg6KSoeuKmc+akItd0Fww==} dependencies: ts-toolbelt: 6.15.5 dev: true @@ -8203,16 +8882,10 @@ packages: /@types/range-parser/1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - /@types/react-dom/18.0.5: - resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} - dependencies: - '@types/react': 18.0.17 - dev: true - /@types/react-dom/18.0.6: resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==} dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 /@types/react-dragula/1.1.0: resolution: {integrity: sha512-wgRIVV2jo/Gria1PK3K26II7gfRD3VTcMfPYhL0CuIApSeon7xjBTj8Xs8Ln+Vbb/FuRKWfUaJXmF4R3KUGntA==} @@ -8223,21 +8896,21 @@ packages: /@types/react-test-renderer/18.0.0: resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==} dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 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.17 + '@types/react': 18.0.21 dev: false - /@types/react/18.0.17: - resolution: {integrity: sha512-38ETy4tL+rn4uQQi7mB81G7V1g0u2ryquNmsVIOKUAEIDK+3CUjZ6rSRpdvS99dNBnkLFL83qfmtLacGOTIhwQ==} + /@types/react/18.0.21: + resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.1.0 + csstype: 3.1.1 /@types/redux-devtools-themes/1.0.0: resolution: {integrity: sha512-ul3x0MYM5Nzj57Fh9wINyHFne8vZL04RC4nWAUWLYcL105vHoa/oJyopuKOrQmqVmhqmDiL4c9FfLbUmIB7TWQ==} @@ -8250,16 +8923,14 @@ packages: redux: 4.2.0 dev: true - /@types/resolve/1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - dependencies: - '@types/node': 18.0.0 + /@types/resolve/1.20.2: + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -8287,19 +8958,19 @@ packages: /@types/serve-index/1.9.1: resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} dependencies: - '@types/express': 4.17.13 + '@types/express': 4.17.14 dev: true - /@types/serve-static/1.13.10: - resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} + /@types/serve-static/1.15.0: + resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: - '@types/mime': 1.3.2 - '@types/node': 18.0.0 + '@types/mime': 3.0.1 + '@types/node': 18.11.7 /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: false /@types/simple-diff/1.6.1: @@ -8330,7 +9001,7 @@ packages: '@types/ag-simple-broker': 5.0.0 '@types/async-stream-emitter': 4.0.0 '@types/consumable-stream': 2.0.0 - '@types/jsonwebtoken': 8.5.8 + '@types/jsonwebtoken': 8.5.9 '@types/sc-errors': 1.4.1 '@types/stream-demux': 8.0.0 '@types/writable-consumable-stream': 2.0.0 @@ -8340,7 +9011,7 @@ packages: /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/source-list-map/0.1.2: @@ -8366,15 +9037,15 @@ packages: resolution: {integrity: sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw==} dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.17 - csstype: 3.1.0 + '@types/react': 18.0.21 + csstype: 3.1.1 dev: true /@types/superagent/4.1.15: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/supertest/2.0.12: @@ -8390,17 +9061,21 @@ packages: /@types/tern/0.23.4: resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==} dependencies: - '@types/estree': 0.0.51 + '@types/estree': 1.0.0 dev: false /@types/testing-library__jest-dom/5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 dev: true - /@types/uglify-js/3.16.0: - resolution: {integrity: sha512-0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g==} + /@types/tough-cookie/4.0.2: + resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} + dev: true + + /@types/uglify-js/3.17.0: + resolution: {integrity: sha512-3HO6rm0y+/cqvOyA8xcYLweF0TKXlAxmQASjbOi49Co51A1N4nR4bEwBgRoD9kNM+rqFGArjKr654SLp2CoGmQ==} dependencies: source-map: 0.6.1 dev: true @@ -8419,24 +9094,24 @@ packages: resolution: {integrity: sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==} dev: false - /@types/webpack-env/1.17.0: - resolution: {integrity: sha512-eHSaNYEyxRA5IAG0Ym/yCyf86niZUIF/TpWKofQI/CVfh5HsMEUyfE2kwFxha4ow0s5g0LfISQxpDKjbRDrizw==} + /@types/webpack-env/1.18.0: + resolution: {integrity: sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==} dev: true /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true - /@types/webpack/4.41.32: - resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} + /@types/webpack/4.41.33: + resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 '@types/tapable': 1.0.8 - '@types/uglify-js': 3.16.0 + '@types/uglify-js': 3.17.0 '@types/webpack-sources': 3.2.0 anymatch: 3.1.2 source-map: 0.6.1 @@ -8451,7 +9126,7 @@ packages: /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 dev: true /@types/yargs-parser/21.0.0: @@ -8464,8 +9139,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@types/yargs/16.0.4: - resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} + /@types/yargs/17.0.13: + resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==} dependencies: '@types/yargs-parser': 21.0.0 dev: true @@ -8474,11 +9149,11 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 optional: true - /@typescript-eslint/eslint-plugin/5.33.0_njno5y7ry2l2lcmiu4tywxkwnq: - resolution: {integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==} + /@typescript-eslint/eslint-plugin/5.40.1_ukgdydjtebaxmxfqp5v5ulh64y: + resolution: {integrity: sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8488,24 +9163,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/scope-manager': 5.33.0 - '@typescript-eslint/type-utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/type-utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q debug: 4.3.4 - eslint: 8.21.0 - functional-red-black-tree: 1.0.1 + eslint: 8.25.0 ignore: 5.2.0 regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==} + /@typescript-eslint/parser/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8514,34 +9188,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.33.0 - '@typescript-eslint/types': 5.33.0 - '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 debug: 4.3.4 - eslint: 8.21.0 - typescript: 4.7.4 + eslint: 8.25.0 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.29.0: - resolution: {integrity: sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==} + /@typescript-eslint/scope-manager/5.40.1: + resolution: {integrity: sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.29.0 - '@typescript-eslint/visitor-keys': 5.29.0 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/visitor-keys': 5.40.1 dev: true - /@typescript-eslint/scope-manager/5.33.0: - resolution: {integrity: sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.33.0 - '@typescript-eslint/visitor-keys': 5.33.0 - dev: true - - /@typescript-eslint/type-utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==} + /@typescript-eslint/type-utils/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8550,27 +9216,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q debug: 4.3.4 - eslint: 8.21.0 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + eslint: 8.25.0 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.29.0: - resolution: {integrity: sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==} + /@typescript-eslint/types/5.40.1: + resolution: {integrity: sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.33.0: - resolution: {integrity: sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /@typescript-eslint/typescript-estree/5.29.0_typescript@4.7.4: - resolution: {integrity: sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==} + /@typescript-eslint/typescript-estree/5.40.1_typescript@4.8.4: + resolution: {integrity: sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8578,88 +9240,43 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.29.0 - '@typescript-eslint/visitor-keys': 5.29.0 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/visitor-keys': 5.40.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.33.0_typescript@4.7.4: - resolution: {integrity: sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.33.0 - '@typescript-eslint/visitor-keys': 5.33.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/utils/5.29.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==} + /@typescript-eslint/utils/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==} 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.29.0 - '@typescript-eslint/types': 5.29.0 - '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 - eslint: 8.21.0 + '@types/semver': 7.3.12 + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 + eslint: 8.25.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.25.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==} - 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.33.0 - '@typescript-eslint/types': 5.33.0 - '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 - eslint: 8.21.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/visitor-keys/5.29.0: - resolution: {integrity: sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==} + /@typescript-eslint/visitor-keys/5.40.1: + resolution: {integrity: sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.29.0 - eslint-visitor-keys: 3.3.0 - dev: true - - /@typescript-eslint/visitor-keys/5.33.0: - resolution: {integrity: sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/types': 5.40.1 eslint-visitor-keys: 3.3.0 dev: true @@ -8903,7 +9520,7 @@ packages: webpack-cli: 4.x.x dependencies: webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 + webpack-cli: 4.10.0_webpack@5.74.0 dev: true /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: @@ -8912,10 +9529,10 @@ packages: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 + webpack-cli: 4.10.0_webpack@5.74.0 dev: true - /@webpack-cli/serve/1.7.0_7r45by5oyo7ronrzgeqf7j6vxq: + /@webpack-cli/serve/1.7.0_ud4agclah7rahur6ntojouq57y: resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x @@ -8924,8 +9541,8 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq dev: true /@webpack-cli/serve/1.7.0_webpack-cli@4.10.0: @@ -8940,8 +9557,8 @@ packages: webpack-cli: 4.10.0_webpack@5.74.0 dev: true - /@xmldom/xmldom/0.7.5: - resolution: {integrity: sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==} + /@xmldom/xmldom/0.8.3: + resolution: {integrity: sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==} engines: {node: '>=10.0.0'} dev: false @@ -8953,10 +9570,33 @@ packages: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true + /@yarnpkg/lockfile/1.1.0: + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + dev: true + + /@yarnpkg/parsers/3.0.0-rc.25: + resolution: {integrity: sha512-uotaIJwVQeV/DcGA9G2EVuVFHnEEdxDy3yRLeh9VHS6Lx7nZETaWzJPU1bgAwnAa3gplol2NIQhlsr2eqgq9qA==} + engines: {node: '>=14.15.0'} + dependencies: + js-yaml: 3.14.1 + tslib: 2.4.0 + dev: true + + /@zag-js/element-size/0.1.0: + resolution: {integrity: sha512-QF8wp0+V8++z+FHXiIw93+zudtubYszOtYbNgK39fg3pi+nCZtuSm4L1jC5QZMatNZ83MfOzyNCfgUubapagJQ==} + dev: false + /@zag-js/focus-visible/0.1.0: resolution: {integrity: sha512-PeaBcTmdZWcFf7n1aM+oiOdZc+sy14qi0emPIeUuGMTjbP0xLGrZu43kdpHnWSXy7/r4Ubp/vlg50MCV8+9Isg==} dev: false + /@zkochan/js-yaml/0.0.6: + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + /@zxing/text-encoding/0.9.0: resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==} requiresBuild: true @@ -8984,19 +9624,19 @@ packages: acorn: 4.0.13 dev: true - /acorn-globals/6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + /acorn-globals/7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 + acorn: 8.8.0 + acorn-walk: 8.2.0 dev: true - /acorn-import-assertions/1.8.0_acorn@8.7.1: + /acorn-import-assertions/1.8.0_acorn@8.8.0: resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.7.1 + acorn: 8.8.0 dev: true /acorn-jsx/5.3.2_acorn@7.4.1: @@ -9049,20 +9689,14 @@ packages: hasBin: true dev: true - /acorn/8.7.1: - resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - /acorn/8.8.0: resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /address/1.2.0: - resolution: {integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==} + /address/1.2.1: + resolution: {integrity: sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==} engines: {node: '>= 10.0.0'} dev: true @@ -9087,8 +9721,8 @@ packages: resolution: {integrity: sha512-LMwfBdoNm+8ac/RkgW6z1mjIvy2cgEqWa9cJUD5sc5uiJkIn/kXhVRlPdfa/MJtxPivo9DRhKb9DlSp2gCv+Cg==} dependencies: ag-channel: 5.0.0 - async-stream-emitter: 4.0.0 - stream-demux: 8.0.0 + async-stream-emitter: 4.1.0 + stream-demux: 8.1.0 dev: false /agent-base/6.0.2: @@ -9292,40 +9926,40 @@ packages: - encoding dev: false - /apollo-reporting-protobuf/3.3.2: - resolution: {integrity: sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ==} + /apollo-reporting-protobuf/3.3.3: + resolution: {integrity: sha512-L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ==} dependencies: - '@apollo/protobufjs': 1.2.4 + '@apollo/protobufjs': 1.2.6 dev: false - /apollo-server-core/3.10.1_graphql@16.5.0: - resolution: {integrity: sha512-UFFziv6h15QbKRZOA6wLyr1Sle9kns3JuQ5DEB7OYe5AIoOJNjZkWXX/tmLFUrSmlnDDryi6Sf5pDzpYmUC/UA==} + /apollo-server-core/3.10.3_graphql@16.6.0: + resolution: {integrity: sha512-PiTirlcaszgnJGzSsGui9XWh0KAh0BUW+GvRKN6O0H0qOSXSLmoqqyL83J+u+HaUZGyyiE0+VOkyCcuF+kKbEw==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 - '@apollo/utils.usagereporting': 1.0.0_graphql@16.5.0 - '@apollographql/apollo-tools': 0.5.4_graphql@16.5.0 + '@apollo/utils.logger': 1.0.1 + '@apollo/utils.usagereporting': 1.0.0_graphql@16.6.0 + '@apollographql/apollo-tools': 0.5.4_graphql@16.6.0 '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.6.12_graphql@16.5.0 - '@graphql-tools/schema': 8.3.14_graphql@16.5.0 + '@graphql-tools/mock': 8.7.6_graphql@16.6.0 + '@graphql-tools/schema': 8.5.1_graphql@16.6.0 '@josephg/resolvable': 1.0.1 apollo-datasource: 3.3.2 - apollo-reporting-protobuf: 3.3.2 + apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 - apollo-server-errors: 3.3.1_graphql@16.5.0 - apollo-server-plugin-base: 3.6.2_graphql@16.5.0 - apollo-server-types: 3.6.2_graphql@16.5.0 + apollo-server-errors: 3.3.1_graphql@16.6.0 + apollo-server-plugin-base: 3.6.3_graphql@16.6.0 + apollo-server-types: 3.6.3_graphql@16.6.0 async-retry: 1.3.3 fast-json-stable-stringify: 2.1.0 - graphql: 16.5.0 - graphql-tag: 2.12.6_graphql@16.5.0 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 loglevel: 1.8.0 lru-cache: 6.0.0 sha.js: 2.4.11 - uuid: 8.3.2 + uuid: 9.0.0 whatwg-mimetype: 3.0.0 transitivePeerDependencies: - encoding @@ -9340,17 +9974,17 @@ packages: - encoding dev: false - /apollo-server-errors/3.3.1_graphql@16.5.0: + /apollo-server-errors/3.3.1_graphql@16.6.0: resolution: {integrity: sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /apollo-server-express/3.10.1_g7snex6epo2tsaz6yhvyva23iq: - resolution: {integrity: sha512-r0esst3YGNdlphYiOrflfBqJ15VAZAhYhWSFo2kPF4knsIGK5HUkeqwjMr+fFDBn4DEfYzC+I1+LnsF/hFN8VQ==} + /apollo-server-express/3.10.3_5ha345eiak62qiwwva5z4dp6gu: + resolution: {integrity: sha512-Z8m0r10mX8KlGS3noYeRPcWxWR2hX6NHJicjuwZ62PeTZlrDJF5cwGmXqbUg/sCTPx7Ny//ZEASBTwFFp8DOeQ==} engines: {node: '>=12.0'} peerDependencies: express: ^4.17.1 @@ -9359,44 +9993,44 @@ packages: '@types/accepts': 1.3.5 '@types/body-parser': 1.19.2 '@types/cors': 2.8.12 - '@types/express': 4.17.13 - '@types/express-serve-static-core': 4.17.30 + '@types/express': 4.17.14 + '@types/express-serve-static-core': 4.17.31 accepts: 1.3.8 - apollo-server-core: 3.10.1_graphql@16.5.0 - apollo-server-types: 3.6.2_graphql@16.5.0 - body-parser: 1.20.0 + apollo-server-core: 3.10.3_graphql@16.6.0 + apollo-server-types: 3.6.3_graphql@16.6.0 + body-parser: 1.20.1 cors: 2.8.5 - express: 4.18.1 - graphql: 16.5.0 + express: 4.18.2 + graphql: 16.6.0 parseurl: 1.3.3 transitivePeerDependencies: - encoding - supports-color dev: false - /apollo-server-plugin-base/3.6.2_graphql@16.5.0: - resolution: {integrity: sha512-erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg==} + /apollo-server-plugin-base/3.6.3_graphql@16.6.0: + resolution: {integrity: sha512-/Q0Zx8N8La97faKV0siGHDzfZ56ygN6ovtUpPbr+1GIbNmUzkte3lWW2YV08HmxiRmC2i2OGN80exNJEvbKvNA==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - apollo-server-types: 3.6.2_graphql@16.5.0 - graphql: 16.5.0 + apollo-server-types: 3.6.3_graphql@16.6.0 + graphql: 16.6.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-types/3.6.2_graphql@16.5.0: - resolution: {integrity: sha512-9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg==} + /apollo-server-types/3.6.3_graphql@16.6.0: + resolution: {integrity: sha512-+7caNTLdevpWI2dGKSa7CWdyudO3NBuJ3HzcrYxjBei6Bth9YdRUNzPSFmBjlm2baHF0GsrMwLpjO+HStJzm3A==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 - apollo-reporting-protobuf: 3.3.2 + '@apollo/utils.logger': 1.0.1 + apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 - graphql: 16.5.0 + graphql: 16.6.0 transitivePeerDependencies: - encoding dev: false @@ -9436,7 +10070,7 @@ packages: async: 3.2.4 buffer-crc32: 0.2.13 readable-stream: 3.6.0 - readdir-glob: 1.1.1 + readdir-glob: 1.1.2 tar-stream: 2.2.0 zip-stream: 4.1.0 dev: true @@ -9448,9 +10082,9 @@ packages: delegates: 1.0.0 readable-stream: 3.6.0 - /are-we-there-yet/3.0.0: - resolution: {integrity: sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /are-we-there-yet/3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: delegates: 1.0.0 readable-stream: 3.6.0 @@ -9471,23 +10105,31 @@ packages: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true - /aria-hidden/1.1.3: - resolution: {integrity: sha512-RhVWFtKH5BiGMycI72q2RAFMLQi8JP9bLuQXgR5a8Znp7P5KOIADSJeyfI8PCVxLEp067B2HbP5JIiI/PXIZeA==} - engines: {node: '>=8.5.0'} + /aria-hidden/1.2.1_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: - tslib: 1.14.1 + '@types/react': 18.0.21 + react: 18.2.0 + tslib: 2.4.0 dev: false /aria-query/4.2.2: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.18.9 - '@babel/runtime-corejs3': 7.18.3 + '@babel/runtime': 7.19.4 + '@babel/runtime-corejs3': 7.19.4 dev: true - /aria-query/5.0.0: - resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==} + /aria-query/5.0.2: + resolution: {integrity: sha512-eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q==} engines: {node: '>=6.0'} dev: true @@ -9529,8 +10171,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 - get-intrinsic: 1.1.2 + es-abstract: 1.20.4 + get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -9562,7 +10204,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 es-shim-unscopables: 1.0.0 dev: true @@ -9572,7 +10214,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 es-shim-unscopables: 1.0.0 dev: true @@ -9582,7 +10224,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -9593,7 +10235,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -9660,10 +10302,10 @@ packages: retry: 0.13.1 dev: false - /async-stream-emitter/4.0.0: - resolution: {integrity: sha512-zPVflmOEN4EFEAk2/p+BbLRRM/i4Iol2nvO2RSFNuYUiYZdBmBJi5O/PMQeO9Unj1EONQqUN0W5PadVS/bA6/g==} + /async-stream-emitter/4.1.0: + resolution: {integrity: sha512-cfPZYjHkhCdHSR+eux71vOU8+8Xb23oLyxccAjwYHgOxDb3+qSDb2HV1Y0Hmu39vZlse2cm15CUShLiVYXHCmQ==} dependencies: - stream-demux: 8.0.0 + stream-demux: 8.1.0 /async/3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} @@ -9692,8 +10334,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.20.4 - caniuse-lite: 1.0.30001356 + browserslist: 4.21.4 + caniuse-lite: 1.0.30001421 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9714,7 +10356,7 @@ packages: /axios/0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: - follow-redirects: 1.15.1 + follow-redirects: 1.15.2 transitivePeerDependencies: - debug dev: true @@ -9722,28 +10364,37 @@ packages: /axios/0.27.2: resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: - follow-redirects: 1.15.1 + follow-redirects: 1.15.2 form-data: 4.0.0 transitivePeerDependencies: - debug dev: true + /axios/1.1.3: + resolution: {integrity: sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==} + dependencies: + follow-redirects: 1.15.2 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: true + /axobject-query/2.2.0: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true - /babel-jest/27.5.1_@babel+core@7.18.10: - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-jest/29.2.2_@babel+core@7.19.3: + resolution: {integrity: sha512-kkq2QSDIuvpgfoac3WZ1OOcHsQQDU5xYk2Ql7tLdJ8BVAYbefEXal+NfS45Y5LVZA7cxC8KYcQMObpCt1J025w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.10 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + '@babel/core': 7.19.3 + '@jest/transform': 29.2.2 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.18.10 + babel-preset-jest: 29.2.0_@babel+core@7.19.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9751,14 +10402,14 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_5ouqwanl7jnotevpn4w6qovjqm: + /babel-loader/8.2.5_jeg5564y5etyvi3ajplf6yhqg4: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -9766,14 +10417,14 @@ packages: webpack: 4.46.0 dev: true - /babel-loader/8.2.5_xc6oct4hcywdrbo4ned6ytbybm: + /babel-loader/8.2.5_wfdvla2jorjoj23kkavho2upde: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.19.3 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -9781,6 +10432,19 @@ packages: webpack: 5.74.0 dev: true + /babel-loader/9.0.0_wfdvla2jorjoj23kkavho2upde: + resolution: {integrity: sha512-qVGQb0PNw/B1sGhPf0/KKsHZAPfa2Bk+JbjkW7yGjAHZyvjAULXYq0et0+/+7DL/rGYU+y8UoGPzA32NP29pVQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + dependencies: + '@babel/core': 7.19.3 + find-cache-dir: 3.3.2 + schema-utils: 4.0.0 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true @@ -9798,7 +10462,7 @@ packages: /babel-plugin-dynamic-import-node/2.3.3: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: - object.assign: 4.1.3 + object.assign: 4.1.4 dev: true /babel-plugin-extract-import-names/1.6.22: @@ -9811,77 +10475,81 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-jest-hoist/27.5.1: - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-plugin-jest-hoist/29.2.0: + resolution: {integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.16.7 - '@babel/types': 7.18.4 + '@babel/template': 7.18.10 + '@babel/types': 7.19.4 '@types/babel__core': 7.1.19 - '@types/babel__traverse': 7.17.1 + '@types/babel__traverse': 7.18.2 dev: true /babel-plugin-macros/3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 cosmiconfig: 7.0.1 resolve: 1.22.1 - /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10: - resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} + /babel-plugin-named-exports-order/0.0.2: + resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + dev: true + + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + '@babel/compat-data': 7.19.4 + '@babel/core': 7.19.3 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.10: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.19.3: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.10 - core-js-compat: 3.23.1 + '@babel/core': 7.19.3 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.19.3 + core-js-compat: 3.25.5 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10: - resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.3: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 - core-js-compat: 3.23.1 + '@babel/core': 7.19.3 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3 + core-js-compat: 3.25.5 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10: - resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.3: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -9891,55 +10559,55 @@ packages: dependencies: ast-types: 0.14.2 lodash: 4.17.21 - react-docgen: 5.4.2 + react-docgen: 5.4.3 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-styled-components/2.0.7_styled-components@5.3.5: + /babel-plugin-styled-components/2.0.7_styled-components@5.3.6: resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==} peerDependencies: styled-components: '>= 2' dependencies: - '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.10: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.3: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3 dev: true - /babel-preset-jest/27.5.1_@babel+core@7.18.10: - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-preset-jest/29.2.0_@babel+core@7.19.3: + resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + '@babel/core': 7.19.3 + babel-plugin-jest-hoist: 29.2.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 dev: true /babel-runtime/6.26.0: @@ -10093,8 +10761,8 @@ packages: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: true - /body-parser/1.20.0: - resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} + /body-parser/1.20.1: + resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: bytes: 3.1.2 @@ -10105,15 +10773,15 @@ packages: http-errors: 2.0.0 iconv-lite: 0.4.24 on-finished: 2.4.1 - qs: 6.10.3 + qs: 6.11.0 raw-body: 2.5.1 type-is: 1.6.18 unpipe: 1.0.0 transitivePeerDependencies: - supports-color - /bonjour-service/1.0.13: - resolution: {integrity: sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==} + /bonjour-service/1.0.14: + resolution: {integrity: sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==} dependencies: array-flatten: 2.1.2 dns-equal: 1.0.0 @@ -10156,6 +10824,12 @@ packages: balanced-match: 1.0.2 concat-map: 0.0.1 + /brace-expansion/2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + /braces/2.3.2: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} engines: {node: '>=0.10.0'} @@ -10190,8 +10864,8 @@ packages: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} dev: true - /browser-process-hrtime/1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + /browser-assert/1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} dev: true /browserify-aes/1.2.0: @@ -10249,16 +10923,15 @@ packages: pako: 1.0.11 dev: true - /browserslist/4.20.4: - resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001356 - electron-to-chromium: 1.4.161 - escalade: 3.1.1 - node-releases: 2.0.5 - picocolors: 1.0.0 + caniuse-lite: 1.0.30001421 + electron-to-chromium: 1.4.284 + node-releases: 2.0.6 + update-browserslist-db: 1.0.10_browserslist@4.21.4 /bs-logger/0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -10312,7 +10985,7 @@ packages: dev: true /bytes/3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} engines: {node: '>= 0.8'} dev: true @@ -10320,8 +10993,8 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - /c8/7.11.3: - resolution: {integrity: sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==} + /c8/7.12.0: + resolution: {integrity: sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==} engines: {node: '>=10.12.0'} hasBin: true dependencies: @@ -10331,10 +11004,10 @@ packages: foreground-child: 2.0.0 istanbul-lib-coverage: 3.2.0 istanbul-lib-report: 3.0.0 - istanbul-reports: 3.1.4 + istanbul-reports: 3.1.5 rimraf: 3.0.2 test-exclude: 6.0.0 - v8-to-istanbul: 9.0.0 + v8-to-istanbul: 9.0.1 yargs: 16.2.0 yargs-parser: 20.2.9 dev: true @@ -10370,7 +11043,7 @@ packages: glob: 7.2.3 infer-owner: 1.0.4 lru-cache: 6.0.0 - minipass: 3.1.6 + minipass: 3.3.4 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -10403,7 +11076,7 @@ packages: resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} engines: {node: '>=8'} dependencies: - clone-response: 1.0.2 + clone-response: 1.0.3 get-stream: 5.2.0 http-cache-semantics: 4.1.0 keyv: 3.1.0 @@ -10415,7 +11088,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 /call-me-maybe/1.0.1: resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==} @@ -10476,11 +11149,11 @@ packages: engines: {node: '>=10'} dev: true - /camelize/1.0.0: - resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==} + /camelize/1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - /caniuse-lite/1.0.30001356: - resolution: {integrity: sha512-/30854bktMLhxtjieIxsrJBfs2gTM1pel6MXKF3K+RdIVJZcsn2A2QdhsuR4/p9+R204fZw0zCBBhktX8xWuyQ==} + /caniuse-lite/1.0.30001421: + resolution: {integrity: sha512-Sw4eLbgUJAEhjLs1Fa+mk45sidp1wRn5y6GtDpHGBaNJ9OCDJaVh2tIaWWUnGfuXfKf1JCBaIarak3FkVAvEeA==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10568,11 +11241,6 @@ packages: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} dev: true - /charcodes/0.2.0: - resolution: {integrity: sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==} - engines: {node: '>=6'} - dev: true - /chardet/0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -10629,14 +11297,15 @@ packages: engines: {node: '>=6.0'} dev: true - /chromedriver/104.0.0: - resolution: {integrity: sha512-zbHZutN2ATo19xA6nXwwLn+KueD/5w8ap5m4b6bCb8MIaRFnyDwMbFoy7oFAjlSMpCFL3KSaZRiWUwjj//N3yQ==} + /chromedriver/106.0.1: + resolution: {integrity: sha512-thaBvbDEPgGocSp4/SBIajQz3G7UQfUqCOHZBp9TVhRJv7c91eZrUGcjeJUaNF4p9CfSjCYNYzs4EVVryqmddA==} engines: {node: '>=10'} hasBin: true requiresBuild: true dependencies: - '@testim/chrome-version': 1.1.2 + '@testim/chrome-version': 1.1.3 axios: 0.27.2 + compare-versions: 5.0.1 del: 6.1.1 extract-zip: 2.0.1 https-proxy-agent: 5.0.1 @@ -10651,8 +11320,8 @@ packages: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /ci-info/3.3.2: - resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} + /ci-info/3.5.0: + resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==} dev: true /cipher-base/1.0.4: @@ -10676,8 +11345,8 @@ packages: static-extend: 0.1.2 dev: true - /classnames/2.3.1: - resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + /classnames/2.3.2: + resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} /clean-css/4.2.4: resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} @@ -10686,8 +11355,15 @@ packages: source-map: 0.6.1 dev: true - /clean-css/5.3.0: - resolution: {integrity: sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==} + /clean-css/5.2.0: + resolution: {integrity: sha512-2639sWGa43EMmG7fn8mdVuBSs6HuWaSor+ZPoFWzenBc6oN+td8YhTfghWXZ25G1NiiSvz8bOFBS7PdSbTiqEA==} + engines: {node: '>= 10.0'} + dependencies: + source-map: 0.6.1 + dev: true + + /clean-css/5.3.1: + resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==} engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 @@ -10711,9 +11387,15 @@ packages: /cli-spinners/2.6.1: resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} engines: {node: '>=6'} + dev: true - /cli-table3/0.6.2: - resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==} + /cli-spinners/2.7.0: + resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} + engines: {node: '>=6'} + dev: false + + /cli-table3/0.6.3: + resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} dependencies: string-width: 4.2.3 @@ -10748,6 +11430,15 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + dev: true + + /cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 /clone-deep/4.0.1: resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} @@ -10757,8 +11448,8 @@ packages: kind-of: 6.0.3 shallow-clone: 3.0.1 - /clone-response/1.0.2: - resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==} + /clone-response/1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} dependencies: mimic-response: 1.0.1 @@ -10771,8 +11462,8 @@ packages: engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true - /codemirror/5.65.7: - resolution: {integrity: sha512-zb67cXzgugIQmb6tfD4G11ILjYoMfTjwcjn+cWsa4GewlI2adhR/h3kolkoCQTm1msD/1BuqVTKuO09ELsS++A==} + /codemirror/5.65.9: + resolution: {integrity: sha512-19Jox5sAKpusTDgqgKB5dawPpQcY+ipQK7xoEI+MVucEF9qqFaXpeqY1KaoyGBso/wHQoDa4HMMxMjdsS3Zzzw==} dev: false /collapse-white-space/1.0.6: @@ -10827,8 +11518,12 @@ packages: color-string: 1.9.1 dev: false - /colord/2.9.2: - resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==} + /colord/2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + dev: true + + /colorette/1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} dev: true /colorette/2.0.19: @@ -10868,10 +11563,9 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.3.0: - resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + /commander/9.4.1: + resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} engines: {node: ^12.20.0 || >=14} - dev: false /common-path-prefix/3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} @@ -10881,6 +11575,10 @@ packages: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: true + /compare-versions/5.0.1: + resolution: {integrity: sha512-v8Au3l0b+Nwkp4G142JcgJFh1/TUhdxut7wzD1Nq1dyp5oa3tXaqb03EXOAB6jS4gMlalkjAUPZBMiAfKUixHQ==} + dev: true + /component-emitter/1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} dev: true @@ -10937,7 +11635,7 @@ packages: dev: false /concat-map/0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} /concat-stream/1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} @@ -11005,13 +11703,11 @@ packages: ticky: 1.0.1 dev: false - /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} - dependencies: - safe-buffer: 5.1.2 + /convert-source-map/1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} /cookie-signature/1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} @@ -11054,7 +11750,7 @@ packages: peerDependencies: webpack: ^5.1.0 dependencies: - fast-glob: 3.2.11 + fast-glob: 3.2.12 glob-parent: 6.0.2 globby: 13.1.2 normalize-path: 3.0.0 @@ -11063,26 +11759,23 @@ packages: webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /core-js-compat/3.23.1: - resolution: {integrity: sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==} + /core-js-compat/3.25.5: + resolution: {integrity: sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==} dependencies: - browserslist: 4.20.4 - semver: 7.0.0 + browserslist: 4.21.4 dev: true - /core-js-pure/3.23.1: - resolution: {integrity: sha512-3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg==} - deprecated: core-js-pure@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js-pure. + /core-js-pure/3.25.5: + resolution: {integrity: sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==} requiresBuild: true /core-js/2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. requiresBuild: true - /core-js/3.23.1: - resolution: {integrity: sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + /core-js/3.25.5: + resolution: {integrity: sha512-nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==} requiresBuild: true dev: true @@ -11255,7 +11948,7 @@ packages: /css-box-model/1.2.1: resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} dependencies: - tiny-invariant: 1.2.0 + tiny-invariant: 1.3.1 dev: false /css-color-keywords/1.0.0: @@ -11289,20 +11982,39 @@ packages: webpack: 4.46.0 dev: true + /css-loader/5.2.7_webpack@5.74.0: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.18 + loader-utils: 2.0.2 + postcss: 8.4.18 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 + postcss-modules-scope: 3.0.0_postcss@8.4.18 + postcss-modules-values: 4.0.0_postcss@8.4.18 + postcss-value-parser: 4.2.0 + schema-utils: 3.1.1 + semver: 7.3.8 + webpack: 5.74.0 + dev: true + /css-loader/6.7.1_webpack@5.74.0: resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.14 - postcss: 8.4.14 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.14 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.14 - postcss-modules-scope: 3.0.0_postcss@8.4.14 - postcss-modules-values: 4.0.0_postcss@8.4.14 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 + postcss-modules-scope: 3.0.0_postcss@8.4.18 + postcss-modules-values: 4.0.0_postcss@8.4.18 postcss-value-parser: 4.2.0 - semver: 7.3.7 + semver: 7.3.8 webpack: 5.74.0_webpack-cli@4.10.0 dev: true @@ -11319,14 +12031,14 @@ packages: /css-to-react-native/3.0.0: resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==} dependencies: - camelize: 1.0.0 + camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 4.2.0 /css-vendor/2.0.8: resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 is-in-browser: 1.1.3 dev: false @@ -11353,8 +12065,8 @@ packages: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true - /cssom/0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + /cssom/0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} dev: true /cssstyle/2.3.0: @@ -11364,8 +12076,8 @@ packages: cssom: 0.3.8 dev: true - /csstype/3.1.0: - resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} + /csstype/3.1.1: + resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} /csv-generate/3.4.3: resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} @@ -11412,17 +12124,17 @@ packages: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true - /data-urls/2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} + /data-urls/3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} dependencies: abab: 2.0.6 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 dev: true - /date-fns/2.28.0: - resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==} + /date-fns/2.29.3: + resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} dev: false @@ -11499,8 +12211,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decimal.js/10.3.1: - resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} + /decimal.js/10.4.2: + resolution: {integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==} dev: true /decode-uri-component/0.2.0: @@ -11549,8 +12261,8 @@ packages: execa: 5.1.1 dev: true - /defaults/1.0.3: - resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} + /defaults/1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 @@ -11620,8 +12332,8 @@ packages: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} - /dequal/2.0.2: - resolution: {integrity: sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==} + /dequal/2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} dev: false @@ -11671,13 +12383,12 @@ packages: execa: 5.1.1 dev: true - /detect-port/1.3.0: - resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==} - engines: {node: '>= 4.2.1'} + /detect-port/1.5.1: + resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} hasBin: true dependencies: - address: 1.2.0 - debug: 2.6.9 + address: 1.2.1 + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -11693,9 +12404,9 @@ packages: resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} dev: false - /diff-sequences/27.5.1: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /diff-sequences/29.2.0: + resolution: {integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /diff/3.5.0: @@ -11772,8 +12483,8 @@ packages: /dom-helpers/5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.18.9 - csstype: 3.1.0 + '@babel/runtime': 7.19.4 + csstype: 3.1.1 dev: false /dom-serializer/1.4.1: @@ -11797,11 +12508,11 @@ packages: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: true - /domexception/2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} + /domexception/4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} dependencies: - webidl-conversions: 5.0.0 + webidl-conversions: 7.0.0 dev: true /domhandler/4.3.1: @@ -11847,8 +12558,12 @@ packages: crossvent: 1.5.4 dev: false - /duplexer3/0.1.4: - resolution: {integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==} + /duplexer/0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /duplexer3/0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} /duplexify/3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} @@ -11866,19 +12581,19 @@ packages: dev: false /ee-first/1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.4.161: - resolution: {integrity: sha512-sTjBRhqh6wFodzZtc5Iu8/R95OkwaPNn7tj/TaDU5nu/5EFiQDtADGAXdR4tJcTEHlYfJpHqigzJqHvPgehP8A==} + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} - /electron/20.0.2: - resolution: {integrity: sha512-Op4nxSyXH0tXjhvWC+WDn9EI0gep5etPccainxu1A4wes+ZFQBMCBXxibotanJfG+WNW4RaOv88NArwHIsSmPw==} + /electron/21.1.1: + resolution: {integrity: sha512-EM2hvRJtiS3n54yx25Z0Qv54t3LGG+WjUHf1AOl+PKjQj+fmXnjIgVeIF9pM21kP1BTcyjrgvN6Sff0A45OB6A==} engines: {node: '>= 10.17.0'} hasBin: true requiresBuild: true dependencies: '@electron/get': 1.14.1 - '@types/node': 16.11.41 + '@types/node': 16.11.66 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -11895,9 +12610,9 @@ packages: minimalistic-crypto-utils: 1.0.1 dev: true - /emittery/0.8.1: - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} - engines: {node: '>=10'} + /emittery/0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} dev: true /emoji-regex/8.0.0: @@ -11970,8 +12685,8 @@ packages: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: true - /entities/4.3.1: - resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==} + /entities/4.4.0: + resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} dev: true @@ -12008,21 +12723,21 @@ packages: stackframe: 1.3.4 dev: true - /es-abstract/1.20.1: - resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + /es-abstract/1.20.4: + resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 internal-slot: 1.0.3 - is-callable: 1.2.4 + is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 @@ -12030,8 +12745,9 @@ packages: is-weakref: 1.0.2 object-inspect: 1.12.2 object-keys: 1.1.1 - object.assign: 4.1.3 + object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 + safe-regex-test: 1.0.0 string.prototype.trimend: 1.0.5 string.prototype.trimstart: 1.0.5 unbox-primitive: 1.0.2 @@ -12044,7 +12760,7 @@ packages: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -12067,7 +12783,7 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: - is-callable: 1.2.4 + is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 @@ -12131,7 +12847,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-airbnb-base/15.0.0_jatgrcxl4x7ywe7ak6cnjca2ae: + /eslint-config-airbnb-base/15.0.0_fyln4uq2tv75svthy6prqvt6lm: resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -12139,14 +12855,14 @@ packages: eslint-plugin-import: ^2.25.2 dependencies: confusing-browser-globals: 1.0.11 - eslint: 8.21.0 - eslint-plugin-import: 2.26.0_eslint@8.21.0 - object.assign: 4.1.2 + eslint: 8.25.0 + eslint-plugin-import: 2.26.0_eslint@8.25.0 + object.assign: 4.1.4 object.entries: 1.1.5 semver: 6.3.0 dev: true - /eslint-config-airbnb/19.0.4_oyn2uifcemcbkyuj2uapcqffk4: + /eslint-config-airbnb/19.0.4_4ces55zid76bgvayjtslcl5sne: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -12156,23 +12872,23 @@ packages: eslint-plugin-react: ^7.28.0 eslint-plugin-react-hooks: ^4.3.0 dependencies: - eslint: 8.21.0 - eslint-config-airbnb-base: 15.0.0_jatgrcxl4x7ywe7ak6cnjca2ae - eslint-plugin-import: 2.26.0_eslint@8.21.0 - eslint-plugin-jsx-a11y: 6.6.1_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 - object.assign: 4.1.2 + eslint: 8.25.0 + eslint-config-airbnb-base: 15.0.0_fyln4uq2tv75svthy6prqvt6lm + eslint-plugin-import: 2.26.0_eslint@8.25.0 + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 + object.assign: 4.1.4 object.entries: 1.1.5 dev: true - /eslint-config-prettier/8.5.0_eslint@8.21.0: + /eslint-config-prettier/8.5.0_eslint@8.25.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.21.0 + eslint: 8.25.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -12184,17 +12900,20 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_ulu2225r2ychl26a37c6o2rfje: - resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + /eslint-module-utils/2.7.4_ez3mxn7ua4ucl4vd2ydr6jerei: + 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: @@ -12203,13 +12922,13 @@ packages: optional: true dependencies: debug: 3.2.7 + eslint: 8.25.0 eslint-import-resolver-node: 0.3.6 - find-up: 2.1.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.26.0_eslint@8.21.0: + /eslint-plugin-import/2.26.0_eslint@8.25.0: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -12223,11 +12942,11 @@ packages: array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.21.0 + eslint: 8.25.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_ulu2225r2ychl26a37c6o2rfje + eslint-module-utils: 2.7.4_ez3mxn7ua4ucl4vd2ydr6jerei 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 @@ -12239,12 +12958,12 @@ packages: - supports-color dev: true - /eslint-plugin-jest/26.8.2_wrgbuxkffy2jst3kcdmzs7hi5i: - resolution: {integrity: sha512-67oh0FKaku9y48OpLzL3uK9ckrgLb83Sp5gxxTbtOGDw9lq6D8jw/Psj/9CipkbK406I2M7mvx1q+pv/MdbvxA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-plugin-jest/27.1.2_6co43ebcjfbpobjajqgjcmpkdi: + resolution: {integrity: sha512-+nLOn5jvQKLUywXxXKsLuuENsB/FhygXOLI+l5QlF+ACGe0DM14FlpYrGZ4nEiTo0BGlL5MymG73XA/tC3v3fA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 jest: '*' peerDependenciesMeta: '@typescript-eslint/eslint-plugin': @@ -12252,22 +12971,22 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/utils': 5.29.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - jest: 27.5.1 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + eslint: 8.25.0 + jest: 29.2.2 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y/6.6.1_eslint@8.21.0: + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.25.0: resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 aria-query: 4.2.2 array-includes: 3.1.5 ast-types-flow: 0.0.7 @@ -12275,7 +12994,7 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.21.0 + eslint: 8.25.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -12283,17 +13002,17 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.21.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.25.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.21.0 + eslint: 8.25.0 dev: true - /eslint-plugin-react/7.30.1_eslint@8.21.0: - resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} + /eslint-plugin-react/7.31.10_eslint@8.25.0: + resolution: {integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -12301,9 +13020,9 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.21.0 + eslint: 8.25.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 @@ -12339,13 +13058,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.21.0: + /eslint-utils/3.0.0_eslint@8.25.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.21.0 + eslint: 8.25.0 eslint-visitor-keys: 2.1.0 dev: true @@ -12359,14 +13078,14 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.21.0: - resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==} + /eslint/8.25.0: + resolution: {integrity: sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.3.0 - '@humanwhocodes/config-array': 0.10.4 - '@humanwhocodes/gitignore-to-minimatch': 1.0.2 + '@eslint/eslintrc': 1.3.3 + '@humanwhocodes/config-array': 0.10.7 + '@humanwhocodes/module-importer': 1.0.1 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -12374,23 +13093,23 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.25.0 eslint-visitor-keys: 3.3.0 - espree: 9.3.3 + espree: 9.4.0 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 is-glob: 4.0.3 + js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -12402,7 +13121,6 @@ packages: strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color dev: true @@ -12412,8 +13130,8 @@ packages: engines: {node: '>=6'} dev: false - /espree/9.3.3: - resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==} + /espree/9.4.0: + resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.0 @@ -12455,17 +13173,13 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 - c8: 7.11.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + c8: 7.12.0 transitivePeerDependencies: - supports-color dev: true - /estree-walker/1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - dev: true - /estree-walker/2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} dev: true @@ -12546,23 +13260,24 @@ packages: - supports-color dev: true - /expect/27.5.1: - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /expect/29.2.2: + resolution: {integrity: sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - jest-get-type: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 + '@jest/expect-utils': 29.2.2 + jest-get-type: 29.2.0 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 dev: true - /express/4.18.1: - resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} + /express/4.18.2: + resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 array-flatten: 1.1.1 - body-parser: 1.20.0 + body-parser: 1.20.1 content-disposition: 0.5.4 content-type: 1.0.4 cookie: 0.5.0 @@ -12581,7 +13296,7 @@ packages: parseurl: 1.3.3 path-to-regexp: 0.1.7 proxy-addr: 2.0.7 - qs: 6.10.3 + qs: 6.11.0 range-parser: 1.2.1 safe-buffer: 5.2.1 send: 0.18.0 @@ -12670,8 +13385,8 @@ packages: - supports-color dev: true - /fast-glob/3.2.11: - resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + /fast-glob/3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -12707,10 +13422,6 @@ packages: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} dev: true - /fastest-levenshtein/1.0.12: - resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==} - dev: true - /fastest-levenshtein/1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} @@ -12729,8 +13440,8 @@ packages: websocket-driver: 0.7.4 dev: true - /fb-watchman/2.0.1: - resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 dev: true @@ -12740,8 +13451,8 @@ packages: dependencies: pend: 1.2.0 - /fetch-retry/5.0.2: - resolution: {integrity: sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==} + /fetch-retry/5.0.3: + resolution: {integrity: sha512-uJQyMrX5IJZkhoEUBQ3EjxkeiZkppBd5jS/fMTJmfZxLSiaQjv2zD0kTvuvkSH89uFvgSlB6ueGpjD3HWN7Bxw==} dev: true /figgy-pudding/3.5.2: @@ -12857,13 +13568,6 @@ packages: dev: true optional: true - /find-up/2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - dependencies: - locate-path: 2.0.0 - dev: true - /find-up/3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} @@ -12898,7 +13602,7 @@ packages: 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 @@ -12907,8 +13611,8 @@ packages: hasBin: true dev: true - /flatted/3.2.5: - resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} + /flatted/3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} dev: true /flush-write-stream/1.1.1: @@ -12918,15 +13622,15 @@ packages: readable-stream: 2.3.7 dev: true - /focus-lock/0.11.2: - resolution: {integrity: sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==} + /focus-lock/0.11.3: + resolution: {integrity: sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg==} engines: {node: '>=10'} dependencies: tslib: 2.4.0 dev: false - /follow-redirects/1.15.1: - resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} + /follow-redirects/1.15.2: + resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -12938,7 +13642,7 @@ packages: /for-each/0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: - is-callable: 1.2.4 + is-callable: 1.2.7 dev: false /for-in/1.0.2: @@ -12954,7 +13658,7 @@ packages: signal-exit: 3.0.7 dev: true - /fork-ts-checker-webpack-plugin/4.1.6_ivdcbprtuxihnrfl74yu7thspu: + /fork-ts-checker-webpack-plugin/4.1.6_ybeu3d6gzlmqceoto3zzmxyiwi: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -12970,19 +13674,19 @@ packages: dependencies: '@babel/code-frame': 7.18.6 chalk: 2.4.2 - eslint: 8.21.0 + eslint: 8.25.0 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.7.4 + typescript: 4.8.4 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_ivdcbprtuxihnrfl74yu7thspu: + /fork-ts-checker-webpack-plugin/6.5.2_iphotpp42ipt4ovquw5uqijhcq: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -13002,19 +13706,51 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.21.0 + eslint: 8.25.0 fs-extra: 9.1.0 glob: 7.2.3 - memfs: 3.4.6 + memfs: 3.4.7 minimatch: 3.1.2 schema-utils: 2.7.0 - semver: 7.3.7 + semver: 7.3.8 tapable: 1.1.3 - typescript: 4.7.4 + typescript: 4.8.4 + webpack: 5.74.0 + dev: true + + /fork-ts-checker-webpack-plugin/6.5.2_ybeu3d6gzlmqceoto3zzmxyiwi: + resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.18.6 + '@types/json-schema': 7.0.11 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.2.2 + eslint: 8.25.0 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.4.7 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.8 + tapable: 1.1.3 + typescript: 4.8.4 webpack: 4.46.0 dev: true - /fork-ts-checker-webpack-plugin/7.2.13_xnp4kzegbjokq62cajex2ovgkm: + /fork-ts-checker-webpack-plugin/7.2.13_qqxisngxjbp7lstdk7boexbu3e: resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -13031,13 +13767,13 @@ packages: cosmiconfig: 7.0.1 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.6 + memfs: 3.4.7 minimatch: 3.1.2 node-abort-controller: 3.0.1 schema-utils: 3.1.1 - semver: 7.3.7 + semver: 7.3.8 tapable: 2.2.1 - typescript: 4.7.4 + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 dev: true @@ -13079,19 +13815,19 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/7.1.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-It0LIsooAr83kGwT55sRRo5pQ/chbvPKGeGmHCl1ARVeWGaeFFfNWSoSF1UgsjWtni/lsUxNsf2BCg1Hy7W3Ag==} + /framer-motion/7.6.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8US03IWJKrLoSb81l5OahNzB9Sv7Jo1RhIwUoTG/25BRUdO9lOqq/klsdZqNmNG0ua9IEJJQ8hkYpETJ4N6VSw==} peerDependencies: react: ^18.0.0 || 18 react-dom: ^18.0.0 || 18 dependencies: '@motionone/dom': 10.13.1 - framesync: 6.1.1 + framesync: 6.1.2 hey-listen: 1.0.8 - popmotion: 11.0.4 + popmotion: 11.0.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - style-value-types: 5.1.1 + style-value-types: 5.1.2 tslib: 2.4.0 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 @@ -13103,14 +13839,14 @@ packages: tslib: 2.4.0 dev: false - /framesync/6.1.1: - resolution: {integrity: sha512-ApprAm7ey4LSp7BPucYz/JPMdRvL1VnBmQ64e61dkns/WPM4aCU8oSKiMRF/p4NtVEG9sZeVyHOBoVaA9+p3sA==} + /framesync/6.1.2: + resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==} dependencies: tslib: 2.4.0 dev: false /fresh/0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: '>= 0.6'} /from2/2.3.0: @@ -13164,7 +13900,7 @@ packages: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 /fs-monkey/1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} @@ -13194,7 +13930,7 @@ packages: requiresBuild: true dependencies: bindings: 1.5.0 - nan: 2.16.0 + nan: 2.17.0 dev: true optional: true @@ -13214,13 +13950,9 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 functions-have-names: 1.2.3 - /functional-red-black-tree/1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - dev: true - /functions-have-names/1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -13261,8 +13993,8 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-intrinsic/1.1.2: - resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + /get-intrinsic/1.1.3: + resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -13309,7 +14041,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 /get-value/2.0.6: resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} @@ -13353,7 +14085,7 @@ packages: peerDependencies: glob: '*' dependencies: - '@types/glob': 7.2.0 + '@types/glob': 8.0.0 glob: 7.2.3 dev: true @@ -13386,6 +14118,17 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob/8.0.3: + resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.0 + once: 1.4.0 + dev: true + /global-agent/3.0.0: resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} engines: {node: '>=10.0'} @@ -13395,7 +14138,7 @@ packages: es6-error: 4.1.1 matcher: 3.0.0 roarr: 2.15.4 - semver: 7.3.7 + semver: 7.3.8 serialize-error: 7.0.1 optional: true @@ -13437,8 +14180,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 @@ -13456,7 +14199,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.0 merge2: 1.4.1 slash: 3.0.0 @@ -13467,7 +14210,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.0 merge2: 1.4.1 slash: 4.0.0 @@ -13503,7 +14246,7 @@ packages: '@types/responselike': 1.0.0 cacheable-request: 6.1.0 decompress-response: 3.3.0 - duplexer3: 0.1.4 + duplexer3: 0.1.5 get-stream: 4.1.0 lowercase-keys: 1.0.1 mimic-response: 1.0.1 @@ -13518,13 +14261,13 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphql-tag/2.12.6_graphql@16.5.0: + /graphql-tag/2.12.6_graphql@16.6.0: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.5.0 + graphql: 16.6.0 tslib: 2.4.0 dev: false @@ -13533,8 +14276,8 @@ packages: engines: {node: '>= 10.x'} dev: false - /graphql/16.5.0: - resolution: {integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==} + /graphql/16.6.0: + resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false @@ -13547,12 +14290,12 @@ packages: engines: {node: '>=0.4.7'} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 neo-async: 2.6.2 source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.16.1 + uglify-js: 3.17.3 dev: true /hard-rejection/2.1.0: @@ -13581,7 +14324,7 @@ packages: /has-property-descriptors/1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -13716,8 +14459,8 @@ packages: hasBin: true dev: true - /headers-polyfill/3.0.7: - resolution: {integrity: sha512-JoLCAdCEab58+2/yEmSnOlficyHFpIl0XJqwu3l+Unkm1gXpFUYsThz6Yha3D6tNhocWkCPfyW0YVIGWFqTi7w==} + /headers-polyfill/3.1.2: + resolution: {integrity: sha512-tWCK4biJ6hcLqTviLXVR9DTRfYGQMXEIUj3gwJ2rZ5wO/at3XtkI4g8mCvFdUF9l1KMBNCfmNAdnahm1cgavQA==} dev: false /hex-rgba/1.0.2: @@ -13733,12 +14476,6 @@ packages: resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} dev: false - /history/5.3.0: - resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} - dependencies: - '@babel/runtime': 7.18.3 - dev: false - /hmac-drbg/1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} dependencies: @@ -13772,11 +14509,11 @@ packages: wbuf: 1.7.3 dev: true - /html-encoding-sniffer/2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} + /html-encoding-sniffer/3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} dependencies: - whatwg-encoding: 1.0.5 + whatwg-encoding: 2.0.0 dev: true /html-entities/2.3.3: @@ -13786,14 +14523,14 @@ packages: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-loader/4.1.0_webpack@5.74.0: - resolution: {integrity: sha512-QDDNmLgn96NWtTPx/VXRerFXH0hn7cm4bruqsZ333GCb+rqiqGurcxtP/M52wcui1/iLiu0l5ms/McE7/Ik6aQ==} + /html-loader/4.2.0_webpack@5.74.0: + resolution: {integrity: sha512-OxCHD3yt+qwqng2vvcaPApCEvbx+nXWu+v69TYHx1FO8bffHn/JjHtE3TTQZmHjwvnJe4xxzuecetDVBrQR1Zg==} engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.0.0 dependencies: - html-minifier-terser: 6.1.0 - parse5: 7.0.0 + html-minifier-terser: 7.0.0 + parse5: 7.1.1 webpack: 5.74.0_webpack-cli@4.10.0 dev: true @@ -13808,7 +14545,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 4.8.0 + terser: 4.8.1 dev: true /html-minifier-terser/6.1.0: @@ -13817,12 +14554,26 @@ packages: hasBin: true dependencies: camel-case: 4.1.2 - clean-css: 5.3.0 + clean-css: 5.3.1 commander: 8.3.0 he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.14.1 + terser: 5.15.1 + dev: true + + /html-minifier-terser/7.0.0: + resolution: {integrity: sha512-Adqk0b/pWKIQiGvEAuzPKpBKNHiwblr3QSGS7TTr6v+xXKV9AI2k4vWW+6Oytt6Z5SeBnfvYypKOnz8r75pz3Q==} + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + camel-case: 4.1.2 + clean-css: 5.2.0 + commander: 9.4.1 + entities: 4.4.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 5.15.1 dev: true /html-tags/3.2.0: @@ -13842,7 +14593,7 @@ packages: dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.8 - '@types/webpack': 4.41.32 + '@types/webpack': 4.41.33 html-minifier-terser: 5.1.1 loader-utils: 1.4.0 lodash: 4.17.21 @@ -13902,8 +14653,8 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-parser-js/0.5.6: - resolution: {integrity: sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==} + /http-parser-js/0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} dev: true /http-proxy-agent/4.0.1: @@ -13915,8 +14666,21 @@ packages: debug: 4.3.4 transitivePeerDependencies: - supports-color + dev: false + optional: true - /http-proxy-middleware/2.0.6_@types+express@4.17.13: + /http-proxy-agent/5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /http-proxy-middleware/2.0.6_@types+express@4.17.14: resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -13925,7 +14689,7 @@ packages: '@types/express': optional: true dependencies: - '@types/express': 4.17.13 + '@types/express': 4.17.14 '@types/http-proxy': 1.17.9 http-proxy: 1.18.1 is-glob: 4.0.3 @@ -13940,7 +14704,7 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.1 + follow-redirects: 1.15.2 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -13990,8 +14754,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - dev: false - optional: true /icss-utils/4.1.1: resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} @@ -14000,13 +14762,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils/5.1.0_postcss@8.4.14: + /icss-utils/5.1.0_postcss@8.4.18: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.18 dev: true /ieee754/1.2.1: @@ -14113,7 +14875,7 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.5.6 + rxjs: 7.5.7 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 @@ -14124,7 +14886,7 @@ packages: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 has: 1.0.3 side-channel: 1.0.4 @@ -14143,14 +14905,8 @@ packages: engines: {node: '>=8'} dev: true - /ip/1.1.8: - resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} - dev: false - optional: true - /ip/2.0.0: resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} - dev: true /ipaddr.js/1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} @@ -14239,15 +14995,15 @@ packages: engines: {node: '>=4'} dev: true - /is-builtin-module/3.1.0: - resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} + /is-builtin-module/3.2.0: + resolution: {integrity: sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==} engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 dev: true - /is-callable/1.2.4: - resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + /is-callable/1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} /is-ci/2.0.0: @@ -14261,11 +15017,11 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.3.2 + ci-info: 3.5.0 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 @@ -14486,7 +15242,7 @@ packages: /is-reference/1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 0.0.51 + '@types/estree': 1.0.0 dev: true /is-regex/1.1.4: @@ -14540,7 +15296,7 @@ packages: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 - es-abstract: 1.20.1 + es-abstract: 1.20.4 for-each: 0.3.3 has-tostringtag: 1.0.0 dev: false @@ -14596,8 +15352,8 @@ packages: dependencies: is-docker: 2.2.1 - /is2/2.0.7: - resolution: {integrity: sha512-4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==} + /is2/2.0.9: + resolution: {integrity: sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==} engines: {node: '>=v0.10.0'} dependencies: deep-is: 0.1.4 @@ -14649,12 +15405,12 @@ packages: engines: {node: '>=8'} dev: true - /istanbul-lib-instrument/5.2.0: - resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} + /istanbul-lib-instrument/5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 - '@babel/parser': 7.18.11 + '@babel/core': 7.19.3 + '@babel/parser': 7.19.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -14682,8 +15438,8 @@ packages: - supports-color dev: true - /istanbul-reports/3.1.4: - resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} + /istanbul-reports/3.1.5: + resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 @@ -14705,45 +15461,44 @@ packages: resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} dev: false - /jest-changed-files/27.5.1: - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-changed-files/29.2.0: + resolution: {integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 execa: 5.1.1 - throat: 6.0.1 + p-limit: 3.1.0 dev: true - /jest-circus/27.5.1: - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-circus/29.2.2: + resolution: {integrity: sha512-upSdWxx+Mh4DV7oueuZndJ1NVdgtTsqM4YgywHEx05UMH5nxxA2Qu9T9T9XVuR021XxqSoaKvSmmpAbjwwwxMw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/environment': 29.2.2 + '@jest/expect': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 - expect: 27.5.1 is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 + jest-each: 29.2.1 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + p-limit: 3.1.0 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 - throat: 6.0.1 transitivePeerDependencies: - supports-color dev: true - /jest-cli/27.5.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14751,29 +15506,27 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 + '@jest/core': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.0 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true - /jest-cli/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14781,168 +15534,235 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 + '@jest/core': 29.2.2_ts-node@10.9.1 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1_ts-node@10.9.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.0 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true - /jest-config/27.5.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 29.2.2_@types+node@18.11.7 + jest-util: 29.2.1 + jest-validate: 29.2.2 + prompts: 2.4.2 + yargs: 17.6.0 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest-config/29.2.2: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' ts-node: '>=9.0.0' peerDependenciesMeta: + '@types/node': + optional: true ts-node: optional: true dependencies: - '@babel/core': 7.18.10 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + babel-jest: 29.2.2_@babel+core@7.19.3 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-config/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-config/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: + '@types/node': '*' ts-node: '>=9.0.0' peerDependenciesMeta: + '@types/node': + optional: true ts-node: optional: true dependencies: - '@babel/core': 7.18.10 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + babel-jest: 29.2.2_@babel+core@7.19.3 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-diff/27.5.1: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-config/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + babel-jest: 29.2.2_@babel+core@7.19.3 + chalk: 4.1.2 + ci-info: 3.5.0 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.2.1 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-diff/29.2.1: + resolution: {integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 + diff-sequences: 29.2.0 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-docblock/27.5.1: - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-docblock/29.2.0: + resolution: {integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-each/27.5.1: - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-each/29.2.1: + resolution: {integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 chalk: 4.1.2 - jest-get-type: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 + jest-get-type: 29.2.0 + jest-util: 29.2.1 + pretty-format: 29.2.1 dev: true - /jest-environment-jsdom/27.5.1: - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-environment-jsdom/29.2.2: + resolution: {integrity: sha512-5mNtTcky1+RYv9kxkwMwt7fkzyX4EJUarV7iI+NQLigpV4Hz4sgfOdP4kOpCHXbkRWErV7tgXoXLm2CKtucr+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 - jest-mock: 27.5.1 - jest-util: 27.5.1 - jsdom: 16.7.0 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/jsdom': 20.0.0 + '@types/node': 18.11.7 + jest-mock: 29.2.2 + jest-util: 29.2.1 + jsdom: 20.0.1 transitivePeerDependencies: - bufferutil - - canvas - supports-color - utf-8-validate dev: true - /jest-environment-node/27.5.1: - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-environment-node/29.2.2: + resolution: {integrity: sha512-B7qDxQjkIakQf+YyrqV5dICNs7tlCO55WJ4OMSXsqz1lpI/0PmeuXdx2F7eU8rnPbRkUR/fItSSUh0jvE2y/tw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 - jest-mock: 27.5.1 - jest-util: 27.5.1 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-mock: 29.2.2 + jest-util: 29.2.1 dev: true - /jest-get-type/27.5.1: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-get-type/29.2.0: + resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /jest-haste-map/26.6.2: @@ -14951,9 +15771,9 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 18.0.0 + '@types/node': 18.11.7 anymatch: 3.1.2 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 26.0.0 jest-serializer: 26.6.2 @@ -14968,93 +15788,68 @@ packages: - supports-color dev: true - /jest-haste-map/27.5.1: - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-haste-map/29.2.1: + resolution: {integrity: sha512-wF460rAFmYc6ARcCFNw4MbGYQjYkvjovb9GBT+W10Um8q5nHq98jD6fHZMDMO3tA56S8XnmNkM8GcA8diSZfnA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 '@types/graceful-fs': 4.1.5 - '@types/node': 18.0.0 + '@types/node': 18.11.7 anymatch: 3.1.2 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 graceful-fs: 4.2.10 - jest-regex-util: 27.5.1 - jest-serializer: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 + jest-regex-util: 29.2.0 + jest-util: 29.2.1 + jest-worker: 29.2.1 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 dev: true - /jest-jasmine2/27.5.1: - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-leak-detector/29.2.1: + resolution: {integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 - chalk: 4.1.2 - co: 4.6.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-leak-detector/27.5.1: - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-matcher-utils/27.5.1: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-matcher-utils/29.2.2: + resolution: {integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-message-util/27.5.1: - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-message-util/29.2.1: + resolution: {integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.16.7 - '@jest/types': 27.5.1 + '@babel/code-frame': 7.18.6 + '@jest/types': 29.2.1 '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.10 micromatch: 4.0.5 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 dev: true - /jest-mock/27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-mock/29.2.2: + resolution: {integrity: sha512-1leySQxNAnivvbcx0sCB37itu8f4OX2S/+gxLAV4Z62shT4r4dTG9tACDywUAEZoLSr36aYUTsVp3WKwWt4PMQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-util: 29.2.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: + /jest-pnp-resolver/1.2.2_jest-resolve@29.2.2: resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: @@ -15063,7 +15858,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 27.5.1 + jest-resolve: 29.2.2 dev: true /jest-regex-util/26.0.0: @@ -15071,94 +15866,89 @@ packages: engines: {node: '>= 10.14.2'} dev: true - /jest-regex-util/27.5.1: - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-regex-util/29.2.0: + resolution: {integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-resolve-dependencies/27.5.1: - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-resolve-dependencies/29.2.2: + resolution: {integrity: sha512-wWOmgbkbIC2NmFsq8Lb+3EkHuW5oZfctffTGvwsA4JcJ1IRk8b2tg+hz44f0lngvRTeHvp3Kyix9ACgudHH9aQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - jest-regex-util: 27.5.1 - jest-snapshot: 27.5.1 + jest-regex-util: 29.2.0 + jest-snapshot: 29.2.2 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/27.5.1: - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-resolve/29.2.2: + resolution: {integrity: sha512-3gaLpiC3kr14rJR3w7vWh0CBX2QAhfpfiQTwrFPvVrcHe5VUBtIXaR004aWE/X9B2CFrITOQAp5gxLONGrk6GA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-haste-map: 29.2.1 + jest-pnp-resolver: 1.2.2_jest-resolve@29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/27.5.1: - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-runner/29.2.2: + resolution: {integrity: sha512-1CpUxXDrbsfy9Hr9/1zCUUhT813kGGK//58HeIw/t8fa/DmkecEwZSWlb1N/xDKXg3uCFHQp1GCvlSClfImMxg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 27.5.1 - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/console': 29.2.1 + '@jest/environment': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 - emittery: 0.8.1 + emittery: 0.13.1 graceful-fs: 4.2.10 - jest-docblock: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-haste-map: 27.5.1 - jest-leak-detector: 27.5.1 - jest-message-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runtime: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 - source-map-support: 0.5.21 - throat: 6.0.1 + jest-docblock: 29.2.0 + jest-environment-node: 29.2.2 + jest-haste-map: 29.2.1 + jest-leak-detector: 29.2.1 + jest-message-util: 29.2.1 + jest-resolve: 29.2.2 + jest-runtime: 29.2.2 + jest-util: 29.2.1 + jest-watcher: 29.2.2 + jest-worker: 29.2.1 + p-limit: 3.1.0 + source-map-support: 0.5.13 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-runtime/27.5.1: - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-runtime/29.2.2: + resolution: {integrity: sha512-TpR1V6zRdLynckKDIQaY41od4o0xWL+KOPUCZvJK2bu5P1UXhjobt5nJ2ICNeIxgyj9NGkO0aWgDqYPVhDNKjA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/globals': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/globals': 29.2.2 + '@jest/source-map': 29.2.0 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 - execa: 5.1.1 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-mock: 29.2.2 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: @@ -15169,44 +15959,38 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 graceful-fs: 4.2.10 dev: true - /jest-serializer/27.5.1: - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-snapshot/29.2.2: + resolution: {integrity: sha512-GfKJrpZ5SMqhli3NJ+mOspDqtZfJBryGA8RIBxF+G+WbDoC7HCqKaeAss4Z/Sab6bAW11ffasx8/vGsj83jyjA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.0.0 - graceful-fs: 4.2.10 - dev: true - - /jest-snapshot/27.5.1: - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.2 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.10 - '@babel/traverse': 7.18.5 - '@babel/types': 7.18.4 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + '@babel/core': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + '@jest/expect-utils': 29.2.2 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/babel__traverse': 7.18.2 + '@types/prettier': 2.7.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 chalk: 4.1.2 - expect: 27.5.1 + expect: 29.2.2 graceful-fs: 4.2.10 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - jest-haste-map: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-util: 27.5.1 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + jest-haste-map: 29.2.1 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 natural-compare: 1.4.0 - pretty-format: 27.5.1 - semver: 7.3.7 + pretty-format: 29.2.1 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true @@ -15216,47 +16000,48 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 18.0.0 + '@types/node': 18.11.7 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 micromatch: 4.0.5 dev: true - /jest-util/27.5.1: - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-util/29.2.1: + resolution: {integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.5.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/27.5.1: - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-validate/29.2.2: + resolution: {integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 27.5.1 + jest-get-type: 29.2.0 leven: 3.1.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 dev: true - /jest-watcher/27.5.1: - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-watcher/29.2.2: + resolution: {integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.0.0 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - jest-util: 27.5.1 + emittery: 0.13.1 + jest-util: 29.2.1 string-length: 4.0.2 dev: true @@ -15264,7 +16049,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -15273,35 +16058,24 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.0.0 + '@types/node': 18.11.7 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/27.5.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + /jest-worker/29.2.1: + resolution: {integrity: sha512-ROHTZ+oj7sBrgtv46zZ84uWky71AoYi0vEV9CdEtc1FQunsoAGe5HbQmW76nI5QWdvECVPrSi1MCVUmizSavMg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/core': 27.5.1 - import-local: 3.1.0 - jest-cli: 27.5.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate + '@types/node': 18.11.7 + jest-util: 29.2.1 + merge-stream: 2.0.0 + supports-color: 8.1.1 dev: true - /jest/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest/29.2.2: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -15309,15 +16083,54 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 + '@jest/core': 29.2.2 + '@jest/types': 29.2.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@10.9.1 + jest-cli: 29.2.2 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2_ts-node@10.9.1 + '@jest/types': 29.2.1 + import-local: 3.1.0 + jest-cli: 29.2.2_4pb6an67rakrle6rtido6z2a34 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2 + '@jest/types': 29.2.1 + import-local: 3.1.0 + jest-cli: 29.2.2_@types+node@18.11.7 + transitivePeerDependencies: + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true /js-levenshtein/1.1.6: @@ -15325,6 +16138,10 @@ packages: engines: {node: '>=0.10.0'} dev: false + /js-sdsl/4.1.5: + resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==} + dev: true + /js-string-escape/1.0.1: resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} engines: {node: '>= 0.8'} @@ -15356,9 +16173,9 @@ packages: resolution: {integrity: sha512-wStfgOJqMv4QKktuH273f5fyi3D3vy2pHOiSDGPvpcS/q+wb/M7AK3vkCcaHbkZxDOlDU/lDJgccygKSG2OhtA==} dev: false - /jsdom/16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} + /jsdom/20.0.1: + resolution: {integrity: sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==} + engines: {node: '>=14'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -15366,32 +16183,31 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.7.1 - acorn-globals: 6.0.0 - cssom: 0.4.4 + acorn: 8.8.0 + acorn-globals: 7.0.1 + cssom: 0.5.0 cssstyle: 2.3.0 - data-urls: 2.0.0 - decimal.js: 10.3.1 - domexception: 2.0.1 + data-urls: 3.0.2 + decimal.js: 10.4.2 + domexception: 4.0.0 escodegen: 2.0.0 - form-data: 3.0.1 - html-encoding-sniffer: 2.0.1 - http-proxy-agent: 4.0.1 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.0 - parse5: 6.0.1 - saxes: 5.0.1 + nwsapi: 2.2.2 + parse5: 7.1.1 + saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.0.0 - w3c-hr-time: 1.0.2 - w3c-xmlserializer: 2.0.0 - webidl-conversions: 6.1.0 - whatwg-encoding: 1.0.5 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - ws: 7.5.8 - xml-name-validator: 3.0.0 + tough-cookie: 4.1.2 + w3c-xmlserializer: 3.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.9.0 + xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil - supports-color @@ -15454,7 +16270,7 @@ packages: resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /json5/2.2.1: @@ -15462,8 +16278,8 @@ packages: engines: {node: '>=6'} hasBin: true - /jsonc-parser/3.0.0: - resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + /jsonc-parser/3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} dev: true /jsondiffpatch/0.4.1: @@ -15489,8 +16305,8 @@ 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'} /jsonwebtoken/8.5.1: @@ -15512,7 +16328,7 @@ packages: /jss-plugin-camel-case/10.9.2: resolution: {integrity: sha512-wgBPlL3WS0WDJ1lPJcgjux/SHnDuu7opmgQKSraKs4z8dCCyYMx9IDPFKBXQ8Q5dVYij1FFV0WdxyhuOOAXuTg==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 hyphenate-style-name: 1.0.4 jss: 10.9.2 dev: false @@ -15520,7 +16336,7 @@ packages: /jss-plugin-compose/10.9.2: resolution: {integrity: sha512-XvsGar4D791VgOMqbEk1XYY5s84Ew57OMLYjbnTXl3MSaBTvmR5M3dTqQbBquJGp4pLyyqlfTcijfolZII1w4Q==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15528,21 +16344,21 @@ packages: /jss-plugin-default-unit/10.9.2: resolution: {integrity: sha512-pYg0QX3bBEFtTnmeSI3l7ad1vtHU42YEEpgW7pmIh+9pkWNWb5dwS/4onSfAaI0kq+dOZHzz4dWe+8vWnanoSg==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-expand/10.9.2: resolution: {integrity: sha512-D3PGLUJu3YbHhX6vANooCa1gqfv68wLssDp08wH21YVTCt6u8jWfqkoj9NmPz5ea1Fc0WMoJtofJTlgb6ApZvw==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-extend/10.9.2: resolution: {integrity: sha512-55lXOQ7yyRtrMRYOcWUeZ3Ea4/Cd/oTndvb9j/5O3+E816nRoYbDsqKI8ob0Yx8PnfHBsQN0u10JcLnqq+8aPA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15550,14 +16366,14 @@ packages: /jss-plugin-global/10.9.2: resolution: {integrity: sha512-GcX0aE8Ef6AtlasVrafg1DItlL/tWHoC4cGir4r3gegbWwF5ZOBYhx04gurPvWHC8F873aEGqge7C17xpwmp2g==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-nested/10.9.2: resolution: {integrity: sha512-VgiOWIC6bvgDaAL97XCxGD0BxOKM0K0zeB/ECyNaVF6FqvdGB9KBBWRdy2STYAss4VVA7i5TbxFZN+WSX1kfQA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15565,14 +16381,14 @@ packages: /jss-plugin-props-sort/10.9.2: resolution: {integrity: sha512-AP1AyUTbi2szylgr+O0OB7gkIxEGzySLITZ2GpsaoX72YMCGI2jYAc+WUhPfvUnZYiauF4zTnN4V4TGuvFjJlw==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-rule-value-function/10.9.2: resolution: {integrity: sha512-vf5ms8zvLFMub6swbNxvzsurHfUZ5Shy5aJB2gIpY6WNA3uLinEcxYyraQXItRHi5ivXGqYciFDRM2ZoVoRZ4Q==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15580,7 +16396,7 @@ packages: /jss-plugin-rule-value-observable/10.9.2: resolution: {integrity: sha512-SSqBD4s/k2mwsOUg6+LI/oEmvUxokIWi+5bZOyer/2nP4kMxeo3gHURc2yiAEu3v62Sf3GHhgC6pBAugxhLL9A==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 symbol-observable: 1.2.0 dev: false @@ -15588,7 +16404,7 @@ packages: /jss-plugin-template/10.9.2: resolution: {integrity: sha512-f+ANQg8n+tkYea4Fu1Qt4skv9UJiNllzJB1Ga0QyumDZZJVpCzl8/mbFT1cvQSW7h+yB31GexFYVF3ct5fFGzA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15596,7 +16412,7 @@ packages: /jss-plugin-vendor-prefixer/10.9.2: resolution: {integrity: sha512-SxcEoH+Rttf9fEv6KkiPzLdXRmI6waOTcMkbbEFgdZLDYNIP9UKNHFy6thhbRKqv0XMQZdrEsbDyV464zE/dUA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 css-vendor: 2.0.8 jss: 10.9.2 dev: false @@ -15604,7 +16420,7 @@ packages: /jss-preset-default/10.9.2: resolution: {integrity: sha512-HMkTLgYPRjwdiu8n8ZB2VEfpO95cZ5AmmSYvFSvt76MQJMp/xDh6cP49MmZHwMpIvXwNj0LI8Peglgwz+rHKBQ==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 jss: 10.9.2 jss-plugin-camel-case: 10.9.2 jss-plugin-compose: 10.9.2 @@ -15623,8 +16439,8 @@ packages: /jss/10.9.2: resolution: {integrity: sha512-b8G6rWpYLR4teTUbGd4I4EsnWjg7MN0Q5bSsjKhVkJVjhQDy2KzkbD2AW3TuT0RYZVmZZHKIrXDn6kjU14qkUg==} dependencies: - '@babel/runtime': 7.18.9 - csstype: 3.1.0 + '@babel/runtime': 7.19.4 + csstype: 3.1.1 is-in-browser: 1.1.3 tiny-warning: 1.0.3 dev: false @@ -15636,24 +16452,16 @@ packages: promise: 7.3.1 dev: true - /jsx-ast-utils/3.3.0: - resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==} - engines: {node: '>=4.0'} - dependencies: - array-includes: 3.1.5 - object.assign: 4.1.2 - dev: true - /jsx-ast-utils/3.3.3: resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} engines: {node: '>=4.0'} dependencies: array-includes: 3.1.5 - object.assign: 4.1.3 + object.assign: 4.1.4 dev: true - /jszip/3.10.0: - resolution: {integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==} + /jszip/3.10.1: + resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} dependencies: lie: 3.3.0 pako: 1.0.11 @@ -15718,8 +16526,8 @@ packages: engines: {node: '>=6'} dev: true - /kleur/4.1.4: - resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} + /kleur/4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} dev: true @@ -15728,8 +16536,8 @@ packages: engines: {node: '>= 8'} dev: true - /knex/2.2.0_sqlite3@5.0.11: - resolution: {integrity: sha512-yhm1Qe9Ok0TeXBq3nNHqZYJPrQ4Iw2tq9k/HxjrZ/EWec2ifOjJlkNHr26v8cQrWtk5iG3iwfUazTIWy+VKG5g==} + /knex/2.3.0_sqlite3@5.1.2: + resolution: {integrity: sha512-WMizPaq9wRMkfnwKXKXgBZeZFOSHGdtoSz5SaLAVNs3WRDfawt9O89T4XyH52PETxjV8/kRk0Yf+8WBEP/zbYw==} engines: {node: '>=12'} hasBin: true peerDependencies: @@ -15757,7 +16565,7 @@ packages: optional: true dependencies: colorette: 2.0.19 - commander: 9.3.0 + commander: 9.4.1 debug: 4.3.4 escalade: 3.1.1 esm: 3.2.25 @@ -15768,7 +16576,7 @@ packages: pg-connection-string: 2.5.0 rechoir: 0.8.0 resolve-from: 5.0.0 - sqlite3: 5.0.11 + sqlite3: 5.1.2 tarn: 3.0.2 tildify: 2.0.0 transitivePeerDependencies: @@ -15779,14 +16587,14 @@ packages: resolution: {integrity: sha512-b0/9J1O9Jcyik1GC6KC42hJ41jKwdO/Mq8Mdo5sYN+IuRTXs2YFHZC3kZSx6ueusqa95x3wLYe/ytKjbAfGixA==} dev: true - /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: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: - language-subtag-registry: 0.3.21 + language-subtag-registry: 0.3.22 dev: true /lazy-cache/1.0.4: @@ -15798,9 +16606,9 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 app-root-dir: 1.0.2 - core-js: 3.23.1 + core-js: 3.25.5 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -15916,14 +16724,6 @@ packages: lie: 3.1.1 dev: false - /locate-path/2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} - dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 - dev: true - /locate-path/3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} @@ -16114,8 +16914,8 @@ packages: dependencies: yallist: 4.0.0 - /lru-cache/7.10.1: - resolution: {integrity: sha512-BQuhQxPuRl79J5zSXRP+uNzPOyZw2oFI9JLRQ80XswSvg21KMKNtQza9eF42rfI/3Z40RvzBdXgziEkudzjo8A==} + /lru-cache/7.14.0: + resolution: {integrity: sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==} engines: {node: '>=12'} dev: false @@ -16124,8 +16924,9 @@ packages: hasBin: true dev: true - /magic-string/0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + /magic-string/0.26.7: + resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} + engines: {node: '>=12'} dependencies: sourcemap-codec: 1.4.8 dev: true @@ -16159,7 +16960,7 @@ packages: https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 6.0.0 - minipass: 3.1.6 + minipass: 3.3.4 minipass-collect: 1.0.2 minipass-fetch: 1.4.1 minipass-flush: 1.0.5 @@ -16180,6 +16981,13 @@ packages: tmpl: 1.0.5 dev: true + /map-age-cleaner/0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} + dependencies: + p-defer: 1.0.0 + dev: true + /map-cache/0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} @@ -16271,11 +17079,19 @@ packages: dev: true /media-typer/0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} engines: {node: '>= 0.6'} - /memfs/3.4.6: - resolution: {integrity: sha512-rH9mjopto6Wkr7RFuH9l9dk3qb2XGOcYKr7xMhaYqfzuJqOqhRrcFvfD7JMuPj6SLmPreh5+6eAuv36NFAU+Mw==} + /mem/8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + dev: true + + /memfs/3.4.7: + resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -16314,7 +17130,7 @@ packages: decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.7 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 @@ -16359,7 +17175,7 @@ packages: dev: true /merge-descriptors/1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -16440,6 +17256,11 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + /mimic-fn/3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + dev: true + /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -16474,6 +17295,13 @@ packages: dependencies: brace-expansion: 1.1.11 + /minimatch/5.1.0: + resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options/4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -16483,20 +17311,20 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + /minimist/1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 /minipass-fetch/1.4.1: resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==} engines: {node: '>=8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: @@ -16508,24 +17336,24 @@ packages: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 /minipass-pipeline/1.2.4: resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} engines: {node: '>=8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 /minipass-sized/1.0.3: resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} engines: {node: '>=8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 dev: false optional: true - /minipass/3.1.6: - resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==} + /minipass/3.3.4: + resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 @@ -16534,7 +17362,7 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 yallist: 4.0.0 /mississippi/3.0.0: @@ -16570,7 +17398,7 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /mkdirp/1.0.4: @@ -16615,27 +17443,27 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/0.44.2_typescript@4.7.4: - resolution: {integrity: sha512-u8wjzzcMWouoZtuIShCwx4M3wFF5sBAV1f8K4a0WX8kiihFjzl89IKE1VYmTclLyMIwpOq8qQ1HTpuh2BFX/3A==} + /msw/0.47.4_typescript@4.8.4: + resolution: {integrity: sha512-Psftt8Yfl0+l+qqg9OlmKEsxF8S/vtda0CmlR6y8wTaWrMMzuCDa55n2hEGC0ZRDwuV6FFWc/4CjoDsBpATKBw==} engines: {node: '>=14'} hasBin: true requiresBuild: true peerDependencies: - typescript: '>= 4.2.x <= 4.7.x' + typescript: '>= 4.2.x <= 4.8.x' peerDependenciesMeta: typescript: optional: true dependencies: '@mswjs/cookies': 0.2.2 - '@mswjs/interceptors': 0.17.3 + '@mswjs/interceptors': 0.17.6 '@open-draft/until': 1.0.3 '@types/cookie': 0.4.1 '@types/js-levenshtein': 1.1.1 chalk: 4.1.1 chokidar: 3.5.3 cookie: 0.4.2 - graphql: 16.5.0 - headers-polyfill: 3.0.7 + graphql: 16.6.0 + headers-polyfill: 3.1.2 inquirer: 8.2.4 is-node-process: 1.0.1 js-levenshtein: 1.1.6 @@ -16643,10 +17471,10 @@ packages: outvariant: 1.3.0 path-to-regexp: 6.2.1 statuses: 2.0.1 - strict-event-emitter: 0.2.4 - type-fest: 1.4.0 - typescript: 4.7.4 - yargs: 17.5.1 + strict-event-emitter: 0.2.7 + type-fest: 2.19.0 + typescript: 4.8.4 + yargs: 17.6.0 transitivePeerDependencies: - encoding - supports-color @@ -16664,8 +17492,8 @@ packages: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: false - /nan/2.16.0: - resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} + /nan/2.17.0: + resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} requiresBuild: true dev: true optional: true @@ -16723,7 +17551,7 @@ packages: resolution: {integrity: sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==} dependencies: '@sinonjs/formatio': 3.2.2 - '@sinonjs/text-encoding': 0.7.1 + '@sinonjs/text-encoding': 0.7.2 just-extend: 4.2.1 lolex: 5.1.2 path-to-regexp: 1.8.0 @@ -16771,8 +17599,8 @@ packages: engines: {node: '>= 6.13.0'} dev: true - /node-gyp-build/4.4.0: - resolution: {integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==} + /node-gyp-build/4.5.0: + resolution: {integrity: sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==} hasBin: true dev: true @@ -16789,7 +17617,7 @@ packages: nopt: 5.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.3.7 + semver: 7.3.8 tar: 6.1.11 which: 2.0.2 transitivePeerDependencies: @@ -16834,8 +17662,8 @@ packages: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-releases/2.0.5: - resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} /nopt/5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -16859,8 +17687,8 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.9.0 - semver: 7.3.7 + is-core-module: 2.10.0 + semver: 7.3.8 validate-npm-package-license: 3.0.4 dev: true @@ -16918,7 +17746,7 @@ packages: resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - are-we-there-yet: 3.0.0 + are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 @@ -16935,12 +17763,12 @@ packages: resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} dev: true - /nwsapi/2.2.0: - resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} + /nwsapi/2.2.2: + resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} dev: true - /nx/14.5.4: - resolution: {integrity: sha512-xv1nTaQP6kqVDE4PXcB1tLlgzNAPUHE/2vlqSLgxjNb6colKf0vrEZhVTjhnbqBeJiTb33gUx50bBXkurCkN5w==} + /nx/15.0.0: + resolution: {integrity: sha512-uh9Ou5oj7yr6Uyp4QhqW1vIVoanYn1sJM1jzOyoT17GAhhODfS0BtQgUvlmInDuRqP8LMaPg4LXFMby07U1HXg==} hasBin: true requiresBuild: true peerDependencies: @@ -16952,9 +17780,13 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 14.5.4 - '@nrwl/tao': 14.5.4 + '@nrwl/cli': 15.0.0 + '@nrwl/tao': 15.0.0 '@parcel/watcher': 2.0.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.0-rc.25 + '@zkochan/js-yaml': 0.0.6 + axios: 1.1.3 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -16969,19 +17801,22 @@ packages: glob: 7.1.4 ignore: 5.2.0 js-yaml: 4.1.0 - jsonc-parser: 3.0.0 + jsonc-parser: 3.2.0 minimatch: 3.0.5 npm-run-path: 4.0.1 open: 8.4.0 semver: 7.3.4 string-width: 4.2.3 + strong-log-transformer: 2.1.0 tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 3.14.1 tslib: 2.4.0 v8-compile-cache: 2.3.0 - yargs: 17.5.1 + yargs: 17.6.0 yargs-parser: 21.0.1 + transitivePeerDependencies: + - debug dev: true /object-assign/4.1.1: @@ -17016,18 +17851,8 @@ packages: isobject: 3.0.1 dev: true - /object.assign/4.1.2: - resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - has-symbols: 1.0.3 - object-keys: 1.1.1 - dev: true - - /object.assign/4.1.3: - resolution: {integrity: sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==} + /object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -17041,7 +17866,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /object.fromentries/2.0.5: @@ -17050,7 +17875,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /object.getownpropertydescriptors/2.1.4: @@ -17060,14 +17885,14 @@ packages: array.prototype.reduce: 1.0.4 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /object.hasown/1.1.1: resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} dependencies: define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /object.pick/1.3.0: @@ -17083,7 +17908,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /objectorarray/1.0.5: @@ -17169,7 +17994,7 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.6.1 + cli-spinners: 2.7.0 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -17210,6 +18035,11 @@ packages: resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} engines: {node: '>=6'} + /p-defer/1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + dev: true + /p-event/4.2.0: resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} engines: {node: '>=8'} @@ -17229,13 +18059,6 @@ packages: engines: {node: '>=4'} dev: true - /p-limit/1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - dependencies: - p-try: 1.0.0 - dev: true - /p-limit/2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -17250,13 +18073,6 @@ packages: yocto-queue: 0.1.0 dev: true - /p-locate/2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - dependencies: - p-limit: 1.3.0 - dev: true - /p-locate/3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} @@ -17311,11 +18127,6 @@ packages: p-finally: 1.0.0 dev: true - /p-try/1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true - /p-try/2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} @@ -17392,10 +18203,10 @@ packages: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} dev: true - /parse5/7.0.0: - resolution: {integrity: sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==} + /parse5/7.1.1: + resolution: {integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==} dependencies: - entities: 4.3.1 + entities: 4.4.0 dev: true /parseurl/1.3.3: @@ -17582,11 +18393,11 @@ packages: engines: {node: '>=4'} dev: false - /pnp-webpack-plugin/1.6.4_typescript@4.7.4: + /pnp-webpack-plugin/1.6.4_typescript@4.8.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.7.4 + ts-pnp: 1.2.0_typescript@4.8.4 transitivePeerDependencies: - typescript dev: true @@ -17595,15 +18406,15 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 dev: true - /popmotion/11.0.4: - resolution: {integrity: sha512-gY9zNSzpEaToyS5Nm+PpE9x6Vu5HhuRVbVER+haML+1OkO8B3yCp0rD5UKZUrt5fClX2r2DY7RtDjkp5bcwyPg==} + /popmotion/11.0.5: + resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==} dependencies: - framesync: 6.1.1 + framesync: 6.1.2 hey-listen: 1.0.8 - style-value-types: 5.1.1 + style-value-types: 5.1.2 tslib: 2.4.0 dev: false @@ -17630,7 +18441,7 @@ packages: loader-utils: 2.0.2 postcss: 7.0.39 schema-utils: 3.1.1 - semver: 7.3.7 + semver: 7.3.8 webpack: 4.46.0 dev: true @@ -17645,13 +18456,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.14: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.18: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.18 dev: true /postcss-modules-local-by-default/3.0.3: @@ -17664,14 +18475,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.14: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.18: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.14 - postcss: 8.4.14 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true @@ -17684,13 +18495,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.14: + /postcss-modules-scope/3.0.0_postcss@8.4.18: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.14 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 dev: true @@ -17701,27 +18512,27 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.14: + /postcss-modules-values/4.0.0_postcss@8.4.18: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.14 - postcss: 8.4.14 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 dev: true /postcss-resolve-nested-selector/0.1.1: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true - /postcss-safe-parser/6.0.0_postcss@8.4.16: + /postcss-safe-parser/6.0.0_postcss@8.4.18: resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.16 + postcss: 8.4.18 dev: true /postcss-selector-parser/6.0.10: @@ -17743,17 +18554,8 @@ packages: source-map: 0.6.1 dev: true - /postcss/8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.4 - picocolors: 1.0.0 - source-map-js: 1.0.2 - dev: true - - /postcss/8.4.16: - resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} + /postcss/8.4.18: + resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -17785,12 +18587,6 @@ packages: resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} engines: {node: '>=4'} - /prettier/1.19.1: - resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} - engines: {node: '>=4'} - hasBin: true - dev: true - /prettier/2.3.0: resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} engines: {node: '>=10.13.0'} @@ -17826,6 +18622,15 @@ packages: react-is: 17.0.2 dev: true + /pretty-format/29.2.1: + resolution: {integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.0.0 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + /pretty-hrtime/1.0.3: resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} @@ -17878,8 +18683,8 @@ packages: array.prototype.map: 1.0.4 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 - get-intrinsic: 1.1.2 + es-abstract: 1.20.4 + get-intrinsic: 1.1.3 iterate-value: 1.0.2 dev: true @@ -17889,7 +18694,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /promise/7.3.1: @@ -17952,8 +18757,8 @@ packages: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true - /psl/1.8.0: - resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==} + /psl/1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} dev: true /public-encrypt/4.0.3: @@ -18100,20 +18905,12 @@ packages: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} - /qs/6.10.3: - resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} + /qs/6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - /qs/6.10.5: - resolution: {integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==} - engines: {node: '>=0.6'} - deprecated: when using stringify with arrayFormat comma, `[]` is appended on single-item arrays. Upgrade to v6.11.0 or downgrade to v6.10.4 to fix. - dependencies: - side-channel: 1.0.4 - dev: true - /qs/6.9.3: resolution: {integrity: sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==} engines: {node: '>=0.6'} @@ -18134,6 +18931,11 @@ packages: resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: false + + /querystringify/2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true /queue-microtask/1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -18195,7 +18997,7 @@ packages: webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /react-bootstrap/2.5.0_zxljzmqdrxwnuenbkrz77w74uy: + /react-bootstrap/2.5.0_rj7ozvcq3uehdlnj3cbwzbi5ce: resolution: {integrity: sha512-j/aLR+okzbYk61TM3eDOU1NqOqnUdwyVrF+ojoCRUxPdzc2R0xXvqyRsjSoyRoCo7n82Fs/LWjPCin/QJNdwvA==} peerDependencies: '@types/react': '>=16.14.8' @@ -18205,19 +19007,19 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@restart/hooks': 0.4.7_react@18.2.0 - '@restart/ui': 1.3.1_biqbaboplfbrettd7655fr4n2y - '@types/react': 18.0.17 - '@types/react-transition-group': 4.4.4 - classnames: 2.3.1 + '@restart/ui': 1.4.0_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.21 + '@types/react-transition-group': 4.4.5 + classnames: 2.3.2 dom-helpers: 5.2.1 invariant: 2.2.4 prop-types: 15.8.1 prop-types-extra: 1.1.1_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y + react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y uncontrollable: 7.2.1_react@18.2.0 warning: 4.0.3 dev: false @@ -18227,7 +19029,7 @@ packages: peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 react: 18.2.0 dev: false @@ -18235,22 +19037,22 @@ packages: resolution: {integrity: sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==} dev: true - /react-docgen-typescript/2.2.2_typescript@4.7.4: + /react-docgen-typescript/2.2.2_typescript@4.8.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.7.4 + typescript: 4.8.4 dev: true - /react-docgen/5.4.2: - resolution: {integrity: sha512-4Z5XYpHsn2bbUfaflxoS30VhUvQLBe4GCwwM5v1e1FUOeDdaoJi6wUGSmYp6OdXYEISEAOEIaSPBk4iezNCKBw==} + /react-docgen/5.4.3: + resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.12 - '@babel/runtime': 7.18.9 + '@babel/core': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/runtime': 7.19.4 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -18295,7 +19097,7 @@ packages: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} dev: false - /react-focus-lock/2.9.1_ug65io7jkbhmo4fihdmbrh3ina: + /react-focus-lock/2.9.1_iapumuv4e6jcjznwuxpf4tt22e: resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18304,18 +19106,18 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.18.9 - '@types/react': 18.0.17 - focus-lock: 0.11.2 + '@babel/runtime': 7.19.4 + '@types/react': 18.0.21 + focus-lock: 0.11.3 prop-types: 15.8.1 react: 18.2.0 react-clientside-effect: 1.2.6_react@18.2.0 - use-callback-ref: 1.3.0_ug65io7jkbhmo4fihdmbrh3ina - use-sidecar: 1.1.2_ug65io7jkbhmo4fihdmbrh3ina + use-callback-ref: 1.3.0_iapumuv4e6jcjznwuxpf4tt22e + use-sidecar: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e dev: false - /react-icons/4.4.0_react@18.2.0: - resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} + /react-icons/4.6.0_react@18.2.0: + resolution: {integrity: sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g==} peerDependencies: react: '*' dependencies: @@ -18327,7 +19129,7 @@ packages: peerDependencies: react: ^16.8.4 || ^17.0.0 || 18 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.2.0 @@ -18357,8 +19159,8 @@ packages: react-deep-force-update: 1.1.2 dev: true - /react-redux/8.0.2_76am3hp3mjvgy3cckgdecixdi4: - resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} + /react-redux/8.0.4_5uumaiclxbdbzaqafclbf6maf4: + resolution: {integrity: sha512-yMfQ7mX6bWuicz2fids6cR1YT59VTuT8MKyyE310wJQlINKENCeT1UcPdEiX6znI5tF8zXyJ/VYvDgeGuaaNwQ==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 @@ -18378,9 +19180,9 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 @@ -18390,8 +19192,8 @@ packages: use-sync-external-store: 1.2.0_react@18.2.0 dev: false - /react-redux/8.0.2_aaa45f7jnlnm2uprinsrzxzaje: - resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} + /react-redux/8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a: + resolution: {integrity: sha512-yMfQ7mX6bWuicz2fids6cR1YT59VTuT8MKyyE310wJQlINKENCeT1UcPdEiX6znI5tF8zXyJ/VYvDgeGuaaNwQ==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 @@ -18411,9 +19213,9 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -18421,9 +19223,10 @@ packages: react-is: 18.2.0 redux: 4.2.0 use-sync-external-store: 1.2.0_react@18.2.0 + dev: true - /react-redux/8.0.2_ps4ywwwjjeajezffxxirqk36qa: - resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} + /react-redux/8.0.4_yfr4m6wk75wdra335rld4tkrbu: + resolution: {integrity: sha512-yMfQ7mX6bWuicz2fids6cR1YT59VTuT8MKyyE310wJQlINKENCeT1UcPdEiX6znI5tF8zXyJ/VYvDgeGuaaNwQ==} peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 @@ -18443,9 +19246,9 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.17 + '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 @@ -18454,15 +19257,14 @@ packages: react-is: 18.2.0 redux: 4.2.0 use-sync-external-store: 1.2.0_react@18.2.0 - dev: false /react-refresh/0.11.0: resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.3_ug65io7jkbhmo4fihdmbrh3ina: - resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} + /react-remove-scroll-bar/2.3.4_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18471,14 +19273,14 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 react: 18.2.0 - react-style-singleton: 2.2.1_ug65io7jkbhmo4fihdmbrh3ina + react-style-singleton: 2.2.1_iapumuv4e6jcjznwuxpf4tt22e tslib: 2.4.0 dev: false - /react-remove-scroll/2.5.4_ug65io7jkbhmo4fihdmbrh3ina: - resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} + /react-remove-scroll/2.5.5_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18487,51 +19289,55 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 react: 18.2.0 - react-remove-scroll-bar: 2.3.3_ug65io7jkbhmo4fihdmbrh3ina - react-style-singleton: 2.2.1_ug65io7jkbhmo4fihdmbrh3ina + react-remove-scroll-bar: 2.3.4_iapumuv4e6jcjznwuxpf4tt22e + react-style-singleton: 2.2.1_iapumuv4e6jcjznwuxpf4tt22e tslib: 2.4.0 - use-callback-ref: 1.3.0_ug65io7jkbhmo4fihdmbrh3ina - use-sidecar: 1.1.2_ug65io7jkbhmo4fihdmbrh3ina + use-callback-ref: 1.3.0_iapumuv4e6jcjznwuxpf4tt22e + use-sidecar: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e dev: false - /react-router-dom/6.3.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} + /react-router-dom/6.4.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-yM1kjoTkpfjgczPrcyWrp+OuQMyB1WleICiiGfstnQYo/S8hPEEnVjr/RdmlH6yKK4Tnj1UGXFSa7uwAtmDoLQ==} + engines: {node: '>=14'} peerDependencies: react: '>=16.8 || 18' react-dom: '>=16.8 || 18' dependencies: - history: 5.3.0 + '@remix-run/router': 1.0.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-router: 6.3.0_react@18.2.0 + react-router: 6.4.2_react@18.2.0 dev: false - /react-router/6.3.0_react@18.2.0: - resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} + /react-router/6.4.2_react@18.2.0: + resolution: {integrity: sha512-Rb0BAX9KHhVzT1OKhMvCDMw776aTYM0DtkxqUBP8dNBom3mPXlfNs76JNGK8wKJ1IZEY1+WGj+cvZxHVk/GiKw==} + engines: {node: '>=14'} peerDependencies: react: '>=16.8 || 18' dependencies: - history: 5.3.0 + '@remix-run/router': 1.0.2 react: 18.2.0 dev: false - /react-select/5.4.0_dvp6wxm7rs4sirs67lhxth6k7q: - resolution: {integrity: sha512-CjE9RFLUvChd5SdlfG4vqxZd55AZJRrLrHzkQyTYeHlpOztqcgnyftYAolJ0SGsBev6zAs6qFrjm6KU3eo2hzg==} + /react-select/5.5.2_eat7hc23gfabdflnphmz6xfchm: + resolution: {integrity: sha512-zbcxtiqXvFW2Wh+dd8zAqMY6QaqX9Ez0WlcjSXycXn1ASpKdc17LcGJj7gAJiUcHI/UVlo6wfg44hgBsUPyEBQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.18.9 - '@emotion/cache': 11.9.3 - '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema - '@types/react-transition-group': 4.4.4 + '@babel/runtime': 7.19.4 + '@emotion/cache': 11.10.3 + '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@floating-ui/dom': 1.0.2 + '@types/react-transition-group': 4.4.5 memoize-one: 5.2.1 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y + react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y + use-isomorphic-layout-effect: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e transitivePeerDependencies: - '@babel/core' - '@types/react' @@ -18547,7 +19353,7 @@ packages: react-is: 18.2.0 dev: true - /react-style-singleton/2.2.1_ug65io7jkbhmo4fihdmbrh3ina: + /react-style-singleton/2.2.1_iapumuv4e6jcjznwuxpf4tt22e: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -18557,7 +19363,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -18586,13 +19392,13 @@ packages: react-proxy: 1.1.8 dev: true - /react-transition-group/4.4.2_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} + /react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: react: '>=16.6.0 || 18' react-dom: '>=16.6.0 || 18' dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -18673,10 +19479,10 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readdir-glob/1.1.1: - resolution: {integrity: sha512-91/k1EzZwDx6HbERR+zucygRFfiPl2zkIYZtv3Jjr6Mn7SkKcVct8aVO+sSRiGMc6fLf72du3d92/uY63YPdEA==} + /readdir-glob/1.1.2: + resolution: {integrity: sha512-6RLVvwJtVwEDfPdn6X6Ille4/lxGl0ATOY4FN/B9nxQcgOazvvI0nodiD19ScKq0PvA/29VpaOQML36o5IzZWA==} dependencies: - minimatch: 3.1.2 + minimatch: 5.1.0 dev: true /readdirp/2.2.1: @@ -18763,10 +19569,10 @@ packages: /redux/4.2.0: resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 - /regenerate-unicode-properties/10.0.1: - resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} + /regenerate-unicode-properties/10.1.0: + resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -18780,13 +19586,13 @@ packages: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true - /regenerator-runtime/0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + /regenerator-runtime/0.13.10: + resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.19.4 dev: true /regex-not/1.0.2: @@ -18810,24 +19616,24 @@ packages: engines: {node: '>=8'} dev: true - /regexpu-core/5.1.0: - resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} + /regexpu-core/5.2.1: + resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - regenerate-unicode-properties: 10.0.1 - regjsgen: 0.6.0 - regjsparser: 0.8.4 + regenerate-unicode-properties: 10.1.0 + regjsgen: 0.7.1 + regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.0.0 dev: true - /regjsgen/0.6.0: - resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} + /regjsgen/0.7.1: + resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} dev: true - /regjsparser/0.8.4: - resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} + /regjsparser/0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 @@ -18993,7 +19799,7 @@ packages: 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 @@ -19001,7 +19807,7 @@ packages: 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 @@ -19081,20 +19887,8 @@ packages: sprintf-js: 1.1.2 optional: true - /rollup-plugin-terser/7.0.2_rollup@2.77.3: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} - peerDependencies: - rollup: ^2.0.0 - dependencies: - '@babel/code-frame': 7.16.7 - jest-worker: 26.6.2 - rollup: 2.77.3 - serialize-javascript: 4.0.0 - terser: 5.14.1 - dev: true - - /rollup-plugin-typescript2/0.32.1_u7uwnjpwzdscdmf57dt35g5b44: - resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} + /rollup-plugin-typescript2/0.34.1_655ssj4e7sdqlljrreeiqtltve: + resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' @@ -19102,15 +19896,15 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.1 - rollup: 2.77.3 + rollup: 3.2.3 + semver: 7.3.8 tslib: 2.4.0 - typescript: 4.7.4 + typescript: 4.8.4 dev: true - /rollup/2.77.3: - resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==} - engines: {node: '>=10.0.0'} + /rollup/3.2.3: + resolution: {integrity: sha512-qfadtkY5kl0F5e4dXVdj2D+GtOdifasXHFMiL1SMf9ADQDv5Eti6xReef9FKj+iQPR2pvtqWna57s/PjARY4fg==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 @@ -19138,8 +19932,8 @@ packages: aproba: 1.2.0 dev: true - /rxjs/7.5.6: - resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==} + /rxjs/7.5.7: + resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} dependencies: tslib: 2.4.0 @@ -19153,6 +19947,13 @@ packages: /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + /safe-regex-test/1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-regex: 1.1.4 + /safe-regex/1.1.0: resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: @@ -19173,17 +19974,17 @@ packages: capture-exit: 2.0.0 exec-sh: 0.3.6 execa: 1.0.0 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 micromatch: 3.1.10 - minimist: 1.2.6 + minimist: 1.2.7 walker: 1.0.8 transitivePeerDependencies: - supports-color dev: true - /saxes/5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} + /saxes/6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 dev: true @@ -19249,20 +20050,20 @@ packages: resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} dev: true - /selenium-webdriver/4.4.0: - resolution: {integrity: sha512-Du+/xfpvNi9zHAeYgXhOWN9yH0hph+cuX+hHDBr7d+SbtQVcfNJwBzLsbdHrB1Wh7MHXFuIkSG88A9TRRQUx3g==} - engines: {node: '>= 10.15.0'} + /selenium-webdriver/4.5.0: + resolution: {integrity: sha512-9mSFii+lRwcnT2KUAB1kqvx6+mMiiQHH60Y0VUtr3kxxi3oZ3CV3B8e2nuJ7T4SPb+Q6VA0swswe7rYpez07Bg==} + engines: {node: '>= 14.20.0'} dependencies: - jszip: 3.10.0 + jszip: 3.10.1 tmp: 0.2.1 - ws: 8.8.0 + ws: 8.9.0 transitivePeerDependencies: - bufferutil - utf-8-validate dev: true - /selfsigned/2.0.1: - resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==} + /selfsigned/2.1.1: + resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} engines: {node: '>=10'} dependencies: node-forge: 1.3.1 @@ -19280,11 +20081,6 @@ packages: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.0.0: - resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} - hasBin: true - dev: true - /semver/7.3.4: resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} engines: {node: '>=10'} @@ -19293,8 +20089,8 @@ packages: lru-cache: 6.0.0 dev: true - /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} hasBin: true dependencies: @@ -19385,8 +20181,8 @@ packages: /set-blocking/2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - /set-cookie-parser/2.5.0: - resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==} + /set-cookie-parser/2.5.1: + resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==} dev: false /set-value/2.0.1: @@ -19452,7 +20248,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 object-inspect: 1.12.2 /signal-exit/3.0.7: @@ -19575,39 +20371,39 @@ packages: - supports-color dev: true - /socketcluster-client/16.1.1: - resolution: {integrity: sha512-Fv/O8Dnb62fDLHRfh0Vr0FLrK/IzcFCukAqZlTE3L2LkI8ZY+24GzUNvYn3NnppSfqjEjEl1bLm26guqPAqlpQ==} + /socketcluster-client/17.1.0: + resolution: {integrity: sha512-jAmjBixLVPCN6NuDGufN+8Zycvz9wQ8QXQvdqBDqkVEDfZV3Mv2mR0FGYwX6KZa0kHr3VJ2EjvUj8ZYJ2ZfyzQ==} dependencies: ag-channel: 5.0.0 ag-request: 1.0.0 - async-stream-emitter: 4.0.0 + async-stream-emitter: 4.1.0 buffer: 5.7.1 clone-deep: 4.0.1 linked-list: 0.1.0 sc-errors: 2.0.1 sc-formatter: 3.0.3 - stream-demux: 8.0.0 + stream-demux: 8.1.0 uuid: 8.3.2 vinyl-buffer: 1.0.1 - ws: 7.5.8 + ws: 8.9.0 transitivePeerDependencies: - bufferutil - utf-8-validate - /socketcluster-server/16.2.1: - resolution: {integrity: sha512-ARB3VmM5JIfehQR8Dk3he11v+DA7dEtSOX/97Dce7WTK4ELdbdyHpgPhOhFPhW6TWCd+43X6/LwMmcwJkx7vUQ==} + /socketcluster-server/17.2.0: + resolution: {integrity: sha512-gBbRn2lqymwb1HA7oRU4OnWuySMSyz1B3QhOxIFIqOQIBX8TdKgjihIxAHmRue0C6vqk3aU5QaMOXQGgHI3MfA==} dependencies: ag-auth: 1.0.1 ag-request: 1.0.0 ag-simple-broker: 5.0.0 - async-stream-emitter: 4.0.0 + async-stream-emitter: 4.1.0 base64id: 1.0.0 clone-deep: 4.0.1 sc-errors: 2.0.1 sc-formatter: 3.0.3 - stream-demux: 8.0.0 + stream-demux: 8.1.0 writable-consumable-stream: 2.0.0 - ws: 7.5.8 + ws: 8.9.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -19627,17 +20423,17 @@ packages: dependencies: agent-base: 6.0.2 debug: 4.3.4 - socks: 2.6.2 + socks: 2.7.1 transitivePeerDependencies: - supports-color dev: false optional: true - /socks/2.6.2: - resolution: {integrity: sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==} + /socks/2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: - ip: 1.1.8 + ip: 2.0.0 smart-buffer: 4.2.0 dev: false optional: true @@ -19662,6 +20458,13 @@ packages: urix: 0.1.0 dev: true + /source-map-support/0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + /source-map-support/0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: @@ -19707,7 +20510,7 @@ packages: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.11 + spdx-license-ids: 3.0.12 dev: true /spdx-exceptions/2.3.0: @@ -19718,11 +20521,11 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.11 + spdx-license-ids: 3.0.12 dev: true - /spdx-license-ids/3.0.11: - resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} + /spdx-license-ids/3.0.12: + resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} dev: true /spdy-transport/3.0.0: @@ -19766,14 +20569,14 @@ packages: resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==} optional: true - /sqlite3/5.0.11: - resolution: {integrity: sha512-4akFOr7u9lJEeAWLJxmwiV43DJcGV7w3ab7SjQFAFaTVyknY3rZjvXTKIVtWqUoY4xwhjwoHKYs2HDW2SoHVsA==} + /sqlite3/5.1.2: + resolution: {integrity: sha512-D0Reg6pRWAFXFUnZKsszCI67tthFD8fGPewRddDCX6w4cYwz3MbvuwRICbL+YQjBAh9zbw+lJ/V9oC8nG5j6eg==} requiresBuild: true peerDependenciesMeta: node-gyp: optional: true dependencies: - '@mapbox/node-pre-gyp': 1.0.9 + '@mapbox/node-pre-gyp': 1.0.10 node-addon-api: 4.3.0 tar: 6.1.11 optionalDependencies: @@ -19794,7 +20597,7 @@ packages: resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} engines: {node: '>= 8'} dependencies: - minipass: 3.1.6 + minipass: 3.3.4 /stable/0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} @@ -19833,8 +20636,8 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - /store2/2.13.2: - resolution: {integrity: sha512-CMtO2Uneg3SAz/d6fZ/6qbqqQHi2ynq6/KzMD/26gTkiEShCcpqFfTHgOxsE0egAq6SX3FmN4CeSqn8BzXQkJg==} + /store2/2.14.2: + resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} dev: true /stream-browserify/2.0.2: @@ -19844,11 +20647,11 @@ packages: readable-stream: 2.3.7 dev: true - /stream-demux/8.0.0: - resolution: {integrity: sha512-vt6P85yEUxiapK9F+ET5BLyto1DnCD4Sl7MlDklDgcb4K5SGXPtOPz9DiP7vTooJ1wW1F/VRPlcSV22Coeim1A==} + /stream-demux/8.1.0: + resolution: {integrity: sha512-20vtOmAj2EVzQZKZVmfyio16u/3QOKSvg+0ldgZeS+m2FNI1vKFoqggamagsPCXufdZ1Tk8VvAM/HV/YUmRbSg==} dependencies: consumable-stream: 2.0.0 - writable-consumable-stream: 2.0.0 + writable-consumable-stream: 3.0.1 /stream-each/1.2.3: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} @@ -19877,8 +20680,8 @@ packages: mixme: 0.5.4 dev: true - /strict-event-emitter/0.2.4: - resolution: {integrity: sha512-xIqTLS5azUH1djSUsLH9DbP6UnM/nI18vu8d43JigCQEoVsnY+mrlE+qv6kYqs6/1OkMnMIiL6ffedQSZStuoQ==} + /strict-event-emitter/0.2.7: + resolution: {integrity: sha512-TavbHJ87WD2tDbKI7bTrmc6U4J4Qjh8E9fVvFkIFw2gCu34Wxstn2Yas0+4D78FJN8DOTEzxiT+udBdraRk4UQ==} dependencies: events: 3.3.0 dev: false @@ -19904,8 +20707,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 - get-intrinsic: 1.1.2 + es-abstract: 1.20.4 + get-intrinsic: 1.1.3 has-symbols: 1.0.3 internal-slot: 1.0.3 regexp.prototype.flags: 1.4.3 @@ -19918,7 +20721,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /string.prototype.padstart/3.1.3: @@ -19927,7 +20730,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /string.prototype.trimend/1.0.5: @@ -19935,14 +20738,14 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 /string.prototype.trimstart/1.0.5: resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 /string_decoder/1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -20016,6 +20819,16 @@ packages: engines: {node: '>=8'} dev: true + /strong-log-transformer/2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + dependencies: + duplexer: 0.1.2 + minimist: 1.2.7 + through: 2.3.8 + dev: true + /style-loader/1.3.0_webpack@4.46.0: resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} engines: {node: '>= 8.9.0'} @@ -20027,6 +20840,17 @@ packages: webpack: 4.46.0 dev: true + /style-loader/2.0.0_webpack@5.74.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + loader-utils: 2.0.2 + schema-utils: 3.1.1 + webpack: 5.74.0 + dev: true + /style-loader/3.3.1_webpack@5.74.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} @@ -20046,15 +20870,15 @@ packages: inline-style-parser: 0.1.1 dev: true - /style-value-types/5.1.1: - resolution: {integrity: sha512-s1p02MYD7E2f1b8lr6CjW8n6CEt+6PdK6QMuUfuTA3yqA6jYktZ1MOWpk7ZpaADl5WAkktBcJAOlDgYIg4yEsQ==} + /style-value-types/5.1.2: + resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==} dependencies: hey-listen: 1.0.8 tslib: 2.4.0 dev: false - /styled-components/5.3.5_7i5myeigehqah43i5u7wbekgba: - resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==} + /styled-components/5.3.6_7i5myeigehqah43i5u7wbekgba: + resolution: {integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==} engines: {node: '>=10'} requiresBuild: true peerDependencies: @@ -20062,12 +20886,12 @@ packages: react-dom: '>= 16.8.0 || 18' react-is: '>= 16.8.0' dependencies: - '@babel/helper-module-imports': 7.16.7 - '@babel/traverse': 7.18.5_supports-color@5.5.0 - '@emotion/is-prop-valid': 1.1.3 + '@babel/helper-module-imports': 7.18.6 + '@babel/traverse': 7.19.4_supports-color@5.5.0 + '@emotion/is-prop-valid': 1.2.0 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 + babel-plugin-styled-components: 2.0.7_styled-components@5.3.6 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -20076,31 +20900,31 @@ packages: shallowequal: 1.1.0 supports-color: 5.5.0 - /stylelint-config-prettier/9.0.3_stylelint@14.10.0: + /stylelint-config-prettier/9.0.3_stylelint@14.14.0: resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>=11.0.0' dependencies: - stylelint: 14.10.0 + stylelint: 14.14.0 dev: true - /stylelint-config-recommended/7.0.0_stylelint@14.10.0: - resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} + /stylelint-config-recommended/9.0.0_stylelint@14.14.0: + resolution: {integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==} peerDependencies: - stylelint: ^14.4.0 + stylelint: ^14.10.0 dependencies: - stylelint: 14.10.0 + stylelint: 14.14.0 dev: true - /stylelint-config-standard/25.0.0_stylelint@14.10.0: - resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} + /stylelint-config-standard/29.0.0_stylelint@14.14.0: + resolution: {integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg==} peerDependencies: - stylelint: ^14.4.0 + stylelint: ^14.14.0 dependencies: - stylelint: 14.10.0 - stylelint-config-recommended: 7.0.0_stylelint@14.10.0 + stylelint: 14.14.0 + stylelint-config-recommended: 9.0.0_stylelint@14.14.0 dev: true /stylelint-config-styled-components/0.1.1: @@ -20110,26 +20934,26 @@ packages: /stylelint-processor-styled-components/1.10.0: resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} dependencies: - '@babel/parser': 7.18.5 - '@babel/traverse': 7.18.5 + '@babel/parser': 7.19.4 + '@babel/traverse': 7.19.4 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: - supports-color dev: true - /stylelint/14.10.0: - resolution: {integrity: sha512-VAmyKrEK+wNFh9R8mNqoxEFzaa4gsHGhcT4xgkQDuOA5cjF6CaNS8loYV7gpi4tIZBPUyXesotPXzJAMN8VLOQ==} + /stylelint/14.14.0: + resolution: {integrity: sha512-yUI+4xXfPHVnueYddSQ/e1GuEA/2wVhWQbGj16AmWLtQJtn28lVxfS4b0CsWyVRPgd3Auzi0NXOthIEUhtQmmA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: - '@csstools/selector-specificity': 2.0.2_pnx64jze6bptzcedy5bidi3zdi + '@csstools/selector-specificity': 2.0.2_dvkg4kkb622mvceygg47xxdz3a balanced-match: 2.0.0 - colord: 2.9.2 + colord: 2.9.3 cosmiconfig: 7.0.1 css-functions-list: 3.1.0 debug: 4.3.4 - fast-glob: 3.2.11 + fast-glob: 3.2.12 fastest-levenshtein: 1.0.16 file-entry-cache: 6.0.1 global-modules: 2.0.0 @@ -20146,21 +20970,21 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.16 + postcss: 8.4.18 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0_postcss@8.4.16 + postcss-safe-parser: 6.0.0_postcss@8.4.18 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 style-search: 0.1.0 - supports-hyperlinks: 2.2.0 + supports-hyperlinks: 2.3.0 svg-tags: 1.0.0 table: 6.8.0 v8-compile-cache: 2.3.0 - write-file-atomic: 4.0.1 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color dev: true @@ -20177,9 +21001,10 @@ packages: transitivePeerDependencies: - supports-color - /superagent/8.0.0: - resolution: {integrity: sha512-iudipXEel+SzlP9y29UBWGDjB+Zzag+eeA1iLosaR2YHBRr1Q1kC29iBrF2zIVD9fqVbpZnXkN/VJmwFMVyNWg==} + /superagent/8.0.2: + resolution: {integrity: sha512-QtYZ9uaNAMexI7XWl2vAXAh0j4q9H7T0WVEI/y5qaUB3QLwxo+voUgCQ217AokJzUTIVOp0RTo7fhZrwhD7A2Q==} engines: {node: '>=6.4.0 <13 || >=14'} + deprecated: Please use v8.0.0 until https://github.com/visionmedia/superagent/issues/1743 is resolved dependencies: component-emitter: 1.3.0 cookiejar: 2.1.3 @@ -20189,19 +21014,18 @@ packages: formidable: 2.0.1 methods: 1.1.2 mime: 2.6.0 - qs: 6.10.5 - readable-stream: 3.6.0 - semver: 7.3.7 + qs: 6.11.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true - /supertest/6.2.4: - resolution: {integrity: sha512-M8xVnCNv+q2T2WXVzxDECvL2695Uv2uUj2O0utxsld/HRyJvOU8W9f1gvsYxSNU4wmIe0/L/ItnpU4iKq0emDA==} + /supertest/6.3.0: + resolution: {integrity: sha512-QgWju1cNoacP81Rv88NKkQ4oXTzGg0eNZtOoxp1ROpbS4OHY/eK5b8meShuFtdni161o5X0VQvgo7ErVyKK+Ow==} engines: {node: '>=6.4.0'} dependencies: methods: 1.1.2 - superagent: 8.0.0 + superagent: 8.0.2 transitivePeerDependencies: - supports-color dev: true @@ -20225,8 +21049,8 @@ packages: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.2.0: - resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} + /supports-hyperlinks/2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 @@ -20260,8 +21084,8 @@ packages: object.getownpropertydescriptors: 2.1.4 dev: true - /synchronous-promise/2.0.15: - resolution: {integrity: sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==} + /synchronous-promise/2.0.16: + resolution: {integrity: sha512-qImOD23aDfnIDNqlG1NOehdB9IYsn1V9oByPjKY1nakv2MQYCEMyX033/q+aEtYCpmYK1cv2+NTmlH+ra6GA5A==} dev: true /table/6.8.0: @@ -20302,7 +21126,7 @@ packages: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 3.1.6 + minipass: 3.3.4 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -20316,7 +21140,7 @@ packages: resolution: {integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==} dependencies: debug: 4.3.1 - is2: 2.0.7 + is2: 2.0.9 transitivePeerDependencies: - supports-color dev: true @@ -20339,14 +21163,6 @@ packages: engines: {node: '>=8'} dev: true - /terminal-link/2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.2.0 - dev: true - /terser-webpack-plugin/1.4.5_webpack@4.46.0: resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==} engines: {node: '>= 6.9.0'} @@ -20359,7 +21175,7 @@ packages: schema-utils: 1.0.0 serialize-javascript: 4.0.0 source-map: 0.6.1 - terser: 4.8.0 + terser: 4.8.1 webpack: 4.46.0 webpack-sources: 1.4.3 worker-farm: 1.7.0 @@ -20378,15 +21194,15 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.14.1 + terser: 5.15.1 webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird dev: true - /terser-webpack-plugin/5.3.3_webpack@5.74.0: - resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} + /terser-webpack-plugin/5.3.6_webpack@5.74.0: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -20401,16 +21217,16 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.14.1 + terser: 5.15.1 webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /terser/4.8.0: - resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==} + /terser/4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: @@ -20420,13 +21236,13 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.14.1: - resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==} + /terser/5.15.1: + resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} engines: {node: '>=10'} hasBin: true dependencies: '@jridgewell/source-map': 0.3.2 - acorn: 8.7.1 + acorn: 8.8.0 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -20444,13 +21260,8 @@ packages: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true - /throat/6.0.1: - resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} - dev: true - /through/2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: false /through2/2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} @@ -20478,8 +21289,8 @@ packages: setimmediate: 1.0.5 dev: true - /tiny-invariant/1.2.0: - resolution: {integrity: sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==} + /tiny-invariant/1.3.1: + resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} dev: false /tiny-warning/1.0.3: @@ -20567,21 +21378,22 @@ packages: resolution: {integrity: sha512-nfjOAu/zAWmX9tgwi5NRp7O7zTDUD1miHiB40klUnAh9qnL1iXdgzcz/i5dMaL5jahcBAaSfmNOBBJBLJW8TEg==} dev: true - /tough-cookie/4.0.0: - resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==} + /tough-cookie/4.1.2: + resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} engines: {node: '>=6'} dependencies: - psl: 1.8.0 + psl: 1.9.0 punycode: 2.1.1 - universalify: 0.1.2 + universalify: 0.2.0 + url-parse: 1.5.10 dev: true /tr46/0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - /tr46/2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} + /tr46/3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} dependencies: punycode: 2.1.1 dev: true @@ -20614,110 +21426,74 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/27.1.5_5ad62742t534jpseix4ezmbr64: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /ts-jest/29.0.3_qutljtsb73gn6tigyw4fnh25am: + resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' + jest: ^29.0.0 + typescript: '>=4.3' peerDependenciesMeta: '@babel/core': optional: true - '@types/jest': + '@jest/types': optional: true babel-jest: optional: true esbuild: optional: true dependencies: - '@babel/core': 7.18.10 - '@types/jest': 27.5.2 + '@babel/core': 7.19.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 + jest: 29.2.2 + jest-util: 29.2.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.7.4 - yargs-parser: 20.2.9 + semver: 7.3.8 + typescript: 4.8.4 + yargs-parser: 21.1.1 dev: true - /ts-jest/27.1.5_mqaoisgizytgigbr3gbjwvnjie: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /ts-jest/29.0.3_r7gdwuj75x2gz25bauak3xcnbm: + resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' + jest: ^29.0.0 + typescript: '>=4.3' peerDependenciesMeta: '@babel/core': optional: true - '@types/jest': + '@jest/types': optional: true babel-jest: optional: true esbuild: optional: true dependencies: - '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 + jest-util: 29.2.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.7.4 - yargs-parser: 20.2.9 + semver: 7.3.8 + typescript: 4.8.4 + yargs-parser: 21.1.1 dev: true - /ts-jest/27.1.5_yimvri5xxiu7oetotjr3m5ivle: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.18.10 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.7.4 - yargs-parser: 20.2.9 - dev: true - - /ts-node/10.9.1_ow5yu25silzxcp7pmv7jv4j54m: + /ts-node/10.9.1_evej5wzm4hojmu6uzxwpspdmsu: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -20736,19 +21512,19 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 16.11.47 - acorn: 8.7.1 + '@types/node': 18.11.7 + acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.7.4 + typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.7.4: + /ts-pnp/1.2.0_typescript@4.8.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -20757,7 +21533,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.7.4 + typescript: 4.8.4 dev: true /ts-toolbelt/6.15.5: @@ -20769,28 +21545,29 @@ packages: dependencies: '@types/json5': 0.0.29 json5: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.7 strip-bom: 3.0.0 dev: true /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tsutils/3.21.0_typescript@4.7.4: + /tsutils/3.21.0_typescript@4.8.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.7.4 + typescript: 4.8.4 dev: true /tty-browserify/0.0.0: - resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} + resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=} dev: true /tty-table/4.1.6: @@ -20800,11 +21577,11 @@ packages: dependencies: chalk: 4.1.2 csv: 5.5.3 - kleur: 4.1.4 + kleur: 4.1.5 smartwrap: 2.0.2 strip-ansi: 6.0.1 wcwidth: 1.0.1 - yargs: 17.5.1 + yargs: 17.6.0 dev: true /tunnel/0.0.6: @@ -20859,9 +21636,9 @@ packages: engines: {node: '>=8'} dev: true - /type-fest/1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} + /type-fest/2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} dev: false /type-is/1.6.18: @@ -20881,8 +21658,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typescript/4.7.4: - resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} + /typescript/4.8.4: + resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} engines: {node: '>=4.2.0'} hasBin: true @@ -20897,8 +21674,8 @@ packages: uglify-to-browserify: 1.0.2 dev: true - /uglify-js/3.16.1: - resolution: {integrity: sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==} + /uglify-js/3.17.3: + resolution: {integrity: sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -20924,8 +21701,8 @@ packages: peerDependencies: react: '>=15.0.0 || 18' dependencies: - '@babel/runtime': 7.18.9 - '@types/react': 18.0.17 + '@babel/runtime': 7.19.4 + '@types/react': 18.0.21 invariant: 2.2.4 react: 18.2.0 react-lifecycles-compat: 3.0.4 @@ -20952,7 +21729,7 @@ packages: engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 dev: true /unicode-match-property-value-ecmascript/2.0.0: @@ -20960,14 +21737,15 @@ packages: engines: {node: '>=4'} dev: true - /unicode-property-aliases-ecmascript/2.0.0: - resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} + /unicode-property-aliases-ecmascript/2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} dev: true /unified/9.2.0: resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -21049,6 +21827,11 @@ packages: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} + /universalify/0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + /universalify/2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} @@ -21080,6 +21863,16 @@ packages: dev: true optional: true + /update-browserslist-db/1.0.10_browserslist@4.21.4: + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.4 + escalade: 3.1.1 + picocolors: 1.0.0 + /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -21117,6 +21910,13 @@ packages: dependencies: prepend-http: 2.0.0 + /url-parse/1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + /url/0.11.0: resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} dependencies: @@ -21124,7 +21924,7 @@ packages: querystring: 0.2.0 dev: true - /use-callback-ref/1.3.0_ug65io7jkbhmo4fihdmbrh3ina: + /use-callback-ref/1.3.0_iapumuv4e6jcjznwuxpf4tt22e: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -21134,12 +21934,25 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 react: 18.2.0 tslib: 2.4.0 dev: false - /use-sidecar/1.1.2_ug65io7jkbhmo4fihdmbrh3ina: + /use-isomorphic-layout-effect/1.1.2_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.0.21 + react: 18.2.0 + dev: false + + /use-sidecar/1.1.2_iapumuv4e6jcjznwuxpf4tt22e: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -21149,7 +21962,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.17 + '@types/react': 18.0.21 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.4.0 @@ -21189,14 +22002,13 @@ packages: inherits: 2.0.3 dev: true - /util/0.12.4: - resolution: {integrity: sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==} + /util/0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.9 - safe-buffer: 5.2.1 which-typed-array: 1.1.8 dev: false @@ -21205,7 +22017,7 @@ packages: dev: true /utils-merge/1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} engines: {node: '>= 0.4.0'} /uuid-browser/3.1.0: @@ -21222,6 +22034,11 @@ packages: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true + /uuid/9.0.0: + resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} + hasBin: true + dev: false + /v8-compile-cache-lib/3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true @@ -21230,22 +22047,13 @@ packages: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} dev: true - /v8-to-istanbul/8.1.1: - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} + /v8-to-istanbul/9.0.1: + resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} dependencies: + '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 - source-map: 0.7.4 - dev: true - - /v8-to-istanbul/9.0.0: - resolution: {integrity: sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==} - engines: {node: '>=10.12.0'} - dependencies: - '@jridgewell/trace-mapping': 0.3.13 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 dev: true /validate-npm-package-license/3.0.4: @@ -21319,17 +22127,11 @@ packages: engines: {node: '>=0.10.0'} dev: true - /w3c-hr-time/1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + /w3c-xmlserializer/3.0.0: + resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==} + engines: {node: '>=12'} dependencies: - browser-process-hrtime: 1.0.0 - dev: true - - /w3c-xmlserializer/2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} - dependencies: - xml-name-validator: 3.0.0 + xml-name-validator: 4.0.0 dev: true /walker/1.0.8: @@ -21383,12 +22185,12 @@ packages: /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: - defaults: 1.0.3 + defaults: 1.0.4 /web-encoding/1.1.5: resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} dependencies: - util: 0.12.4 + util: 0.12.5 optionalDependencies: '@zxing/text-encoding': 0.9.0 dev: false @@ -21400,17 +22202,12 @@ packages: /webidl-conversions/3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - /webidl-conversions/5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} + /webidl-conversions/7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} dev: true - /webidl-conversions/6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} - dev: true - - /webpack-cli/4.10.0_r5zkyi3k4cwcnn76n4wwxu6434: + /webpack-cli/4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri: resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} hasBin: true @@ -21433,16 +22230,16 @@ packages: '@discoveryjs/json-ext': 0.5.7 '@webpack-cli/configtest': 1.2.0_5v66e2inugklgvlh4huuavolfq '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 - '@webpack-cli/serve': 1.7.0_7r45by5oyo7ronrzgeqf7j6vxq + '@webpack-cli/serve': 1.7.0_ud4agclah7rahur6ntojouq57y colorette: 2.0.19 commander: 7.2.0 cross-spawn: 7.0.3 - fastest-levenshtein: 1.0.12 + fastest-levenshtein: 1.0.16 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-dev-server: 4.10.0_5v66e2inugklgvlh4huuavolfq + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq webpack-merge: 5.8.0 dev: true @@ -21473,7 +22270,7 @@ packages: colorette: 2.0.19 commander: 7.2.0 cross-spawn: 7.0.3 - fastest-levenshtein: 1.0.12 + fastest-levenshtein: 1.0.16 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 @@ -21495,6 +22292,21 @@ packages: webpack-log: 2.0.0 dev: true + /webpack-dev-middleware/4.3.0_webpack@5.74.0: + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + colorette: 1.4.0 + mem: 8.1.1 + memfs: 3.4.7 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 3.1.1 + webpack: 5.74.0 + dev: true + /webpack-dev-middleware/5.3.3_webpack@5.74.0: resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} @@ -21502,15 +22314,15 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: colorette: 2.0.19 - memfs: 3.4.6 + memfs: 3.4.7 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /webpack-dev-server/4.10.0_5v66e2inugklgvlh4huuavolfq: - resolution: {integrity: sha512-7dezwAs+k6yXVFZ+MaL8VnE+APobiO3zvpp3rBHe/HmWQ+avwh0Q3d0xxacOiBybZZ3syTZw9HXzpa3YNbAZDQ==} + /webpack-dev-server/4.11.1_5v66e2inugklgvlh4huuavolfq: + resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: @@ -21522,35 +22334,35 @@ packages: dependencies: '@types/bonjour': 3.5.10 '@types/connect-history-api-fallback': 1.3.5 - '@types/express': 4.17.13 + '@types/express': 4.17.14 '@types/serve-index': 1.9.1 - '@types/serve-static': 1.13.10 + '@types/serve-static': 1.15.0 '@types/sockjs': 0.3.33 '@types/ws': 8.5.3 ansi-html-community: 0.0.8 - bonjour-service: 1.0.13 + bonjour-service: 1.0.14 chokidar: 3.5.3 colorette: 2.0.19 compression: 1.7.4 connect-history-api-fallback: 2.0.0 default-gateway: 6.0.3 - express: 4.18.1 + express: 4.18.2 graceful-fs: 4.2.10 html-entities: 2.3.3 - http-proxy-middleware: 2.0.6_@types+express@4.17.13 + http-proxy-middleware: 2.0.6_@types+express@4.17.14 ipaddr.js: 2.0.1 open: 8.4.0 p-retry: 4.6.2 rimraf: 3.0.2 schema-utils: 4.0.0 - selfsigned: 2.0.1 + selfsigned: 2.1.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri webpack-dev-middleware: 5.3.3_webpack@5.74.0 - ws: 8.8.0 + ws: 8.9.0 transitivePeerDependencies: - bufferutil - debug @@ -21567,12 +22379,11 @@ packages: webpack: 4.46.0 dev: true - /webpack-hot-middleware/2.25.1: - resolution: {integrity: sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==} + /webpack-hot-middleware/2.25.2: + resolution: {integrity: sha512-CVgm3NAQyfdIonRvXisRwPTUYuSbyZ6BY7782tMeUzWOO7RmVI2NaBYuCp41qyD4gYCkJyTneAJdK69A13B0+A==} dependencies: ansi-html-community: 0.0.8 html-entities: 2.3.3 - querystring: 0.2.1 strip-ansi: 6.0.1 dev: true @@ -21612,6 +22423,10 @@ packages: - supports-color dev: true + /webpack-virtual-modules/0.4.5: + resolution: {integrity: sha512-8bWq0Iluiv9lVf9YaqWQ9+liNgXSHICm+rg544yRgGYaR8yXZTVBaHZkINZSB2yZSWo4b0F6MIxqJezVfOEAlg==} + dev: true + /webpack/4.46.0: resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==} engines: {node: '>=6.11.5'} @@ -21662,14 +22477,14 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.3 + '@types/eslint-scope': 3.7.4 '@types/estree': 0.0.51 '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.7.1 - acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.4 + acorn: 8.8.0 + acorn-import-assertions: 1.8.0_acorn@8.8.0 + browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -21683,7 +22498,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -21702,14 +22517,14 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.3 + '@types/eslint-scope': 3.7.4 '@types/estree': 0.0.51 '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.7.1 - acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.4 + acorn: 8.8.0 + acorn-import-assertions: 1.8.0_acorn@8.8.0 + browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -21723,9 +22538,9 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 watchpack: 2.4.0 - webpack-cli: 4.10.0_r5zkyi3k4cwcnn76n4wwxu6434 + webpack-cli: 4.10.0_webpack@5.74.0 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -21737,7 +22552,7 @@ packages: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} dependencies: - http-parser-js: 0.5.6 + http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 dev: true @@ -21747,20 +22562,24 @@ packages: engines: {node: '>=0.8.0'} dev: true - /whatwg-encoding/1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + /whatwg-encoding/2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} dependencies: - iconv-lite: 0.4.24 - dev: true - - /whatwg-mimetype/2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + iconv-lite: 0.6.3 dev: true /whatwg-mimetype/3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} - dev: false + + /whatwg-url/11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + dev: true /whatwg-url/5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} @@ -21768,15 +22587,6 @@ packages: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url/8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} - dependencies: - lodash: 4.17.21 - tr46: 2.1.0 - webidl-conversions: 6.1.0 - dev: true - /which-boxed-primitive/1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: @@ -21804,7 +22614,7 @@ packages: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 - es-abstract: 1.20.1 + es-abstract: 1.20.4 for-each: 0.3.3 has-tostringtag: 1.0.0 is-typed-array: 1.1.9 @@ -21902,6 +22712,12 @@ packages: resolution: {integrity: sha512-SITambzxtPTFU/wR82h+zOKGBiEv5V8gC1mt8xvoE1/168ApEa8H+6s2UToYJo3VLL7sNYTaApKuPD+pZHMGJQ==} dependencies: consumable-stream: 2.0.0 + dev: false + + /writable-consumable-stream/3.0.1: + resolution: {integrity: sha512-rAOJTA/sMgXD/X6eMwbQJe49w+Fnkdx3iV5oUzdmiZ7Bwx03khqUnAKIpzp/hbI8q2EP5NfjXgIXN0MsipfHeg==} + dependencies: + consumable-stream: 2.0.0 /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} @@ -21912,16 +22728,16 @@ packages: typedarray-to-buffer: 3.1.5 dev: true - /write-file-atomic/4.0.1: - resolution: {integrity: sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /write-file-atomic/4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 dev: true - /ws/7.5.8: - resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==} + /ws/7.5.9: + resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -21932,8 +22748,8 @@ packages: utf-8-validate: optional: true - /ws/8.8.0: - resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} + /ws/8.9.0: + resolution: {integrity: sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -21943,7 +22759,6 @@ packages: optional: true utf-8-validate: optional: true - dev: true /x-default-browser/0.4.0: resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} @@ -21952,16 +22767,17 @@ packages: default-browser-id: 1.0.4 dev: true - /xml-name-validator/3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + /xml-name-validator/4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} dev: true /xmlchars/2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true - /xss/1.0.13: - resolution: {integrity: sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==} + /xss/1.0.14: + resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==} engines: {node: '>= 0.10.0'} hasBin: true dependencies: @@ -22012,6 +22828,11 @@ packages: /yargs-parser/21.0.1: resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} engines: {node: '>=12'} + dev: true + + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} /yargs/15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} @@ -22043,17 +22864,17 @@ packages: yargs-parser: 20.2.9 dev: true - /yargs/17.5.1: - resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} + /yargs/17.6.0: + resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==} engines: {node: '>=12'} dependencies: - cliui: 7.0.4 + cliui: 8.0.1 escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 21.0.1 + yargs-parser: 21.1.1 /yargs/3.10.0: resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==} diff --git a/renovate.json b/renovate.json index 51037e65..82ab8ca8 100644 --- a/renovate.json +++ b/renovate.json @@ -21,11 +21,6 @@ "matchPackageNames": ["source-map"], "matchUpdateTypes": ["major", "minor"], "groupName": "source-map" - }, - { - "matchPackageNames": ["@chakra-ui/react"], - "matchUpdateTypes": ["major", "minor", "patch"], - "groupName": "chakra-ui" } ] }