From d9075020e3e55eea7347ec5d00dffcf7daaf3d86 Mon Sep 17 00:00:00 2001 From: James Robb <47126579+jamesrweb@users.noreply.github.com> Date: Thu, 6 Oct 2022 09:43:43 +0200 Subject: [PATCH 1/3] Move import ordering to prettier and further refactors --- README.md | 12 +- config/eslint/eslint.config.js | 18 +- config/jest/jest.config.js | 12 +- config/jest/jest.environment.js | 1 + config/prettier/prettier.config.js | 8 +- config/rollup/rollup.config.js | 15 +- config/typescript/tsconfig.json | 2 +- example/app.jsx | 7 +- package.json | 42 +- pnpm-lock.yaml | 2376 +++++++++++++++------------- tests/exports.test.tsx | 2 +- 11 files changed, 1293 insertions(+), 1202 deletions(-) diff --git a/README.md b/README.md index 1e9ef32..d4e26b3 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ first and only argument. ```typescript import React from "react"; -import { ReactP5Wrapper, P5CanvasInstance } from "react-p5-wrapper"; +import { P5CanvasInstance, ReactP5Wrapper } from "react-p5-wrapper"; function sketch(p5: P5CanvasInstance) { p5.setup = () => p5.createCanvas(600, 400, p5.WEBGL); @@ -174,10 +174,10 @@ correctly typed as a `number`. ##### Usage with the `P5CanvasInstance` type ```typescript -import React, { useState, useEffect } from "react"; +import React, { useEffect, useState } from "react"; import { - ReactP5Wrapper, P5CanvasInstance, + ReactP5Wrapper, SketchProps } from "react-p5-wrapper"; @@ -228,7 +228,7 @@ export function App() { ##### Usage with the `Sketch` type ```typescript -import React, { useState, useEffect } from "react"; +import React, { useEffect, useState } from "react"; import { ReactP5Wrapper, Sketch, SketchProps } from "react-p5-wrapper"; type MySketchProps = SketchProps & { @@ -329,7 +329,7 @@ wrapper are changed, if it is set within your sketch. This way we can render our our sketches! ```javascript -import React, { useState, useEffect } from "react"; +import React, { useEffect, useState } from "react"; import { ReactP5Wrapper } from "react-p5-wrapper"; function sketch(p5) { @@ -382,7 +382,7 @@ For instance, using [styled components](https://styled-components.com), we could center some text on top of our sketch like so: ```jsx -import { ReactP5Wrapper, P5WrapperClassName } from "react-p5-wrapper"; +import { P5WrapperClassName, ReactP5Wrapper } from "react-p5-wrapper"; import styled, { createGlobalStyle } from "styled-components"; const GlobalWrapperStyles = createGlobalStyle` diff --git a/config/eslint/eslint.config.js b/config/eslint/eslint.config.js index 09c5dcb..42603a6 100644 --- a/config/eslint/eslint.config.js +++ b/config/eslint/eslint.config.js @@ -1,7 +1,6 @@ module.exports = { env: { - browser: true, - es2021: true + browser: true }, extends: [ "eslint:recommended", @@ -14,21 +13,10 @@ module.exports = { ecmaFeatures: { jsx: true }, - ecmaVersion: 12, + ecmaVersion: "latest", sourceType: "module" }, - plugins: ["@typescript-eslint", "react", "simple-import-sort"], - overrides: [ - { - files: [".js", ".jsx", ".ts", ".tsx"] - } - ], - rules: { - "@typescript-eslint/no-explicit-any": "off", - "linebreak-style": ["error", "unix"], - "simple-import-sort/exports": "error", - "simple-import-sort/imports": "error" - }, + plugins: ["@typescript-eslint", "react"], settings: { react: { version: "detect" diff --git a/config/jest/jest.config.js b/config/jest/jest.config.js index 7df28ed..386ef7f 100644 --- a/config/jest/jest.config.js +++ b/config/jest/jest.config.js @@ -5,13 +5,13 @@ module.exports = { silent: true, testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$", transform: { - "^.+\\.tsx?$": "ts-jest" + "^.+\\.tsx?$": [ + "ts-jest", + { + tsconfig: join(__dirname, "..", "typescript", "tsconfig.json") + } + ] }, moduleFileExtensions: ["ts", "tsx", "js", "jsx"], - globals: { - "ts-jest": { - tsconfig: join(__dirname, "..", "typescript", "tsconfig.json") - } - }, testEnvironment: join(__dirname, "jest.environment.js") }; diff --git a/config/jest/jest.environment.js b/config/jest/jest.environment.js index e05c648..d23a37c 100644 --- a/config/jest/jest.environment.js +++ b/config/jest/jest.environment.js @@ -4,6 +4,7 @@ const { TextEncoder, TextDecoder } = require("util"); class CustomTestEnvironment extends Environment { async setup() { await super.setup(); + this.polyfillTextEncoder(); this.polyfillTextDecoder(); } diff --git a/config/prettier/prettier.config.js b/config/prettier/prettier.config.js index b76eb90..c60ff55 100644 --- a/config/prettier/prettier.config.js +++ b/config/prettier/prettier.config.js @@ -1,11 +1,17 @@ module.exports = { arrowParens: "avoid", + bracketSameLine: false, bracketSpacing: true, embeddedLanguageFormatting: "auto", htmlWhitespaceSensitivity: "css", + importOrder: ["", "^[./]"], + importOrderCaseInsensitive: true, + importOrderGroupNamespaceSpecifiers: true, + importOrderSeparation: true, + importOrderSortSpecifiers: true, insertPragma: false, - bracketSameLine: false, jsxSingleQuote: false, + plugins: ["@trivago/prettier-plugin-sort-imports"], printWidth: 80, proseWrap: "always", quoteProps: "as-needed", diff --git a/config/rollup/rollup.config.js b/config/rollup/rollup.config.js index 21d6532..1f93d90 100644 --- a/config/rollup/rollup.config.js +++ b/config/rollup/rollup.config.js @@ -1,12 +1,13 @@ -import typescript from "rollup-plugin-typescript2"; +import { join } from "path"; import { terser } from "rollup-plugin-terser"; +import typescript from "rollup-plugin-typescript2"; + import { + main as cjs, dependencies, - peerDependencies, - module, - main + module as esm, + peerDependencies } from "../../package.json"; -import { join } from "path"; const input = join(__dirname, "..", "..", "src", "index.tsx"); const external = [ @@ -41,7 +42,7 @@ function createBundleConfiguration(filename, format) { }; } -const ESM = createBundleConfiguration(module, "esm"); -const CJS = createBundleConfiguration(main, "cjs"); +const ESM = createBundleConfiguration(esm, "esm"); +const CJS = createBundleConfiguration(cjs, "cjs"); export default [ESM, CJS]; diff --git a/config/typescript/tsconfig.json b/config/typescript/tsconfig.json index 917035d..84afce3 100644 --- a/config/typescript/tsconfig.json +++ b/config/typescript/tsconfig.json @@ -5,7 +5,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "jsx": "react", - "module": "ES2015", + "module": "ESNext", "skipLibCheck": true, "strict": true, "target": "es5", diff --git a/example/app.jsx b/example/app.jsx index 637a7fa..abf75d0 100644 --- a/example/app.jsx +++ b/example/app.jsx @@ -1,9 +1,10 @@ -import React, { Fragment, useState, useCallback, useMemo } from "react"; +import React, { Fragment, useCallback, useMemo, useState } from "react"; import { createRoot } from "react-dom/client"; -import { ReactP5Wrapper } from "../src/index.tsx"; + import * as box from "./sketches/box"; -import * as torus from "./sketches/torus"; import * as plane from "./sketches/plane"; +import * as torus from "./sketches/torus"; +import { ReactP5Wrapper } from "../src/index.tsx"; import "./example.css"; function App() { diff --git a/package.json b/package.json index 50c3676..61d789c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "react-p5-wrapper", "version": "3.3.0", "description": "A wrapper component that allows you to utilise P5 sketches within React apps.", - "homepage": "https://github.com/jamesrweb/react-p5-wrapper", + "homepage": "https://github.com/P5-wrapper/react", "license": "MIT", "main": "dist/components/index.js", "module": "dist/components/index.esm.js", @@ -56,10 +56,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/jamesrweb/react-p5-wrapper.git" + "url": "https://github.com/P5-wrapper/react.git" }, "bugs": { - "url": "https://github.com/jamesrweb/react-p5-wrapper/issues" + "url": "https://github.com/P5-wrapper/react/issues" }, "dependencies": { "microdiff": "^1.3.1", @@ -70,43 +70,43 @@ "react-dom": ">= 17.0.2" }, "devDependencies": { - "@babel/core": "^7.19.0", - "@babel/preset-env": "^7.19.0", + "@babel/core": "^7.19.3", + "@babel/preset-env": "^7.19.3", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@testing-library/react": "^13.4.0", - "@types/jest": "^28.1.8", - "@types/p5": "^1.4.2", - "@types/react": "^18.0.19", + "@trivago/prettier-plugin-sort-imports": "^3.3.0", + "@types/jest": "^29.1.1", + "@types/p5": "^1.4.3", + "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@typescript-eslint/eslint-plugin": "^5.36.2", - "@typescript-eslint/parser": "^5.36.2", + "@typescript-eslint/eslint-plugin": "^5.39.0", + "@typescript-eslint/parser": "^5.39.0", "babel-loader": "^8.2.5", "canvas": "^2.10.1", "css-loader": "^6.7.1", - "eslint": "^8.23.1", + "eslint": "^8.24.0", "eslint-plugin-react": "^7.31.8", "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-simple-import-sort": "^7.0.0", "gh-pages": "^4.0.0", "html-webpack-plugin": "^5.5.0", - "jest": "^28.1.3", - "jest-environment-jsdom": "^28.1.3", - "jest-environment-jsdom-global": "^3.1.2", + "jest": "^29.1.2", + "jest-environment-jsdom": "^29.1.2", + "jest-environment-jsdom-global": "^4.0.0", "prettier": "^2.7.1", "react": "^18.2.0", "react-dom": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.79.0", + "rollup": "^2.79.1", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.32.1", + "rollup-plugin-typescript2": "^0.34.1", "style-loader": "^3.3.1", - "ts-jest": "^28.0.8", - "ts-loader": "^9.3.1", + "ts-jest": "^29.0.3", + "ts-loader": "^9.4.1", "tslib": "^2.4.0", - "typescript": "^4.8.3", + "typescript": "^4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.0" + "webpack-dev-server": "^4.11.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3ba4199..69bc117 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,90 +1,90 @@ lockfileVersion: 5.4 specifiers: - "@babel/core": ^7.19.0 - "@babel/preset-env": ^7.19.0 + "@babel/core": ^7.19.3 + "@babel/preset-env": ^7.19.3 "@babel/preset-react": ^7.18.6 "@babel/preset-typescript": ^7.18.6 "@testing-library/react": ^13.4.0 - "@types/jest": ^28.1.8 - "@types/p5": ^1.4.2 - "@types/react": ^18.0.19 + "@trivago/prettier-plugin-sort-imports": ^3.3.0 + "@types/jest": ^29.1.1 + "@types/p5": ^1.4.3 + "@types/react": ^18.0.21 "@types/react-dom": ^18.0.6 - "@typescript-eslint/eslint-plugin": ^5.36.2 - "@typescript-eslint/parser": ^5.36.2 + "@typescript-eslint/eslint-plugin": ^5.39.0 + "@typescript-eslint/parser": ^5.39.0 babel-loader: ^8.2.5 canvas: ^2.10.1 css-loader: ^6.7.1 - eslint: ^8.23.1 + eslint: ^8.24.0 eslint-plugin-react: ^7.31.8 eslint-plugin-react-hooks: ^4.6.0 - eslint-plugin-simple-import-sort: ^7.0.0 gh-pages: ^4.0.0 html-webpack-plugin: ^5.5.0 - jest: ^28.1.3 - jest-environment-jsdom: ^28.1.3 - jest-environment-jsdom-global: ^3.1.2 + jest: ^29.1.2 + jest-environment-jsdom: ^29.1.2 + jest-environment-jsdom-global: ^4.0.0 microdiff: ^1.3.1 p5: ^1.4.2 prettier: ^2.7.1 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.79.0 + rollup: ^2.79.1 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.32.1 + rollup-plugin-typescript2: ^0.34.1 style-loader: ^3.3.1 - ts-jest: ^28.0.8 - ts-loader: ^9.3.1 + ts-jest: ^29.0.3 + ts-loader: ^9.4.1 tslib: ^2.4.0 - typescript: ^4.8.3 + typescript: ^4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 - webpack-dev-server: ^4.11.0 + webpack-dev-server: ^4.11.1 dependencies: microdiff: 1.3.1 p5: 1.4.2 devDependencies: - "@babel/core": 7.19.0 - "@babel/preset-env": 7.19.0_@babel+core@7.19.0 - "@babel/preset-react": 7.18.6_@babel+core@7.19.0 - "@babel/preset-typescript": 7.18.6_@babel+core@7.19.0 + "@babel/core": 7.19.3 + "@babel/preset-env": 7.19.3_@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 "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@types/jest": 28.1.8 - "@types/p5": 1.4.2 - "@types/react": 18.0.19 + "@trivago/prettier-plugin-sort-imports": 3.3.0_prettier@2.7.1 + "@types/jest": 29.1.1 + "@types/p5": 1.4.3 + "@types/react": 18.0.21 "@types/react-dom": 18.0.6 - "@typescript-eslint/eslint-plugin": 5.36.2_wxqvmnl3i4rbvz4ixyoiufmx3e - "@typescript-eslint/parser": 5.36.2_irgkl5vooow2ydyo6aokmferha - babel-loader: 8.2.5_z22tmofudeh3tyeifpjvwjl5ei + "@typescript-eslint/eslint-plugin": 5.39.0_xyciw6oqjoiiono4dhv3uhn5my + "@typescript-eslint/parser": 5.39.0_ypn2ylkkyfa5i233caldtndbqa + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde canvas: 2.10.1 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.23.1 - eslint-plugin-react: 7.31.8_eslint@8.23.1 - eslint-plugin-react-hooks: 4.6.0_eslint@8.23.1 - eslint-plugin-simple-import-sort: 7.0.0_eslint@8.23.1 + eslint: 8.24.0 + eslint-plugin-react: 7.31.8_eslint@8.24.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.24.0 gh-pages: 4.0.0 html-webpack-plugin: 5.5.0_webpack@5.74.0 - jest: 28.1.3 - jest-environment-jsdom: 28.1.3_canvas@2.10.1 - jest-environment-jsdom-global: 3.1.2_rqqruudttwcdyftgmv7lyajjh4 + jest: 29.1.2 + jest-environment-jsdom: 29.1.2_canvas@2.10.1 + jest-environment-jsdom-global: 4.0.0_eehccwu7remqurin73gq6ugqky prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.79.0 - rollup-plugin-terser: 7.0.2_rollup@2.79.0 - rollup-plugin-typescript2: 0.32.1_ihkqvyh37tzxtjmovjyy2yrv7m + rollup: 2.79.1 + rollup-plugin-terser: 7.0.2_rollup@2.79.1 + rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq style-loader: 3.3.1_webpack@5.74.0 - ts-jest: 28.0.8_v3rev37ob2crahnvrjq7tmikvy - ts-loader: 9.3.1_kb3egcnme7w23lfa5xodfjfhge + ts-jest: 29.0.3_jxje2hcbylcap4trrcwjnopnr4 + ts-loader: 9.4.1_qqxisngxjbp7lstdk7boexbu3e tslib: 2.4.0 - typescript: 4.8.3 + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m - webpack-dev-server: 4.11.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq packages: /@ampproject/remapping/2.2.0: @@ -108,31 +108,31 @@ packages: "@babel/highlight": 7.18.6 dev: true - /@babel/compat-data/7.19.0: + /@babel/compat-data/7.19.3: resolution: { - integrity: sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw== + integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw== } engines: { node: ">=6.9.0" } dev: true - /@babel/core/7.19.0: + /@babel/core/7.17.8: resolution: { - integrity: sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ== + integrity: sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ== } engines: { node: ">=6.9.0" } dependencies: "@ampproject/remapping": 2.2.0 "@babel/code-frame": 7.18.6 - "@babel/generator": 7.19.0 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@babel/generator": 7.17.7 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.17.8 "@babel/helper-module-transforms": 7.19.0 "@babel/helpers": 7.19.0 - "@babel/parser": 7.19.0 + "@babel/parser": 7.17.8 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.0 - "@babel/types": 7.19.0 + "@babel/traverse": 7.17.3 + "@babel/types": 7.17.0 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -142,14 +142,52 @@ packages: - supports-color dev: true - /@babel/generator/7.19.0: + /@babel/core/7.19.3: resolution: { - integrity: sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg== + integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.19.3 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/helper-module-transforms": 7.19.0 + "@babel/helpers": 7.19.0 + "@babel/parser": 7.19.3 + "@babel/template": 7.18.10 + "@babel/traverse": 7.19.3 + "@babel/types": 7.19.3 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator/7.17.7: + resolution: + { + integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w== + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.17.0 + jsesc: 2.5.2 + source-map: 0.5.7 + dev: true + + /@babel/generator/7.19.3: + resolution: + { + integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ== + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.19.3 "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 dev: true @@ -161,7 +199,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: @@ -172,26 +210,42 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/helper-explode-assignable-expression": 7.18.6 - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 + dev: true + + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.17.8: + resolution: + { + integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.19.3 + "@babel/core": 7.17.8 + "@babel/helper-validator-option": 7.18.6 + browserslist: 4.21.4 + semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.0: + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: resolution: { - integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA== + integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/compat-data": 7.19.0 - "@babel/core": 7.19.0 + "@babel/compat-data": 7.19.3 + "@babel/core": 7.19.3 "@babel/helper-validator-option": 7.18.6 - browserslist: 4.21.3 + browserslist: 4.21.4 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.0: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== @@ -200,19 +254,19 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 + "@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.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.19.0_@babel+core@7.19.0: + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== @@ -221,21 +275,21 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 + "@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.3.2_@babel+core@7.19.0: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.3: resolution: { - integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg== + integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== } peerDependencies: "@babel/core": ^7.4.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@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 @@ -260,7 +314,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-function-name/7.19.0: @@ -271,7 +325,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.18.10 - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-hoist-variables/7.18.6: @@ -281,7 +335,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-member-expression-to-functions/7.18.9: @@ -291,7 +345,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-module-imports/7.18.6: @@ -301,7 +355,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-module-transforms/7.19.0: @@ -315,10 +369,10 @@ packages: "@babel/helper-module-imports": 7.18.6 "@babel/helper-simple-access": 7.18.6 "@babel/helper-split-export-declaration": 7.18.6 - "@babel/helper-validator-identifier": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.0 - "@babel/types": 7.19.0 + "@babel/traverse": 7.19.3 + "@babel/types": 7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -330,7 +384,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-plugin-utils/7.19.0: @@ -341,7 +395,7 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.0: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== @@ -350,27 +404,27 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0 - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.18.9: + /@babel/helper-replace-supers/7.19.1: resolution: { - integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ== + 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.19.0 - "@babel/types": 7.19.0 + "@babel/traverse": 7.19.3 + "@babel/types": 7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -382,7 +436,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.18.9: @@ -392,7 +446,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-split-export-declaration/7.18.6: @@ -402,7 +456,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@babel/helper-string-parser/7.18.10: @@ -413,10 +467,10 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-validator-identifier/7.18.6: + /@babel/helper-validator-identifier/7.19.1: resolution: { - integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== + integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== } engines: { node: ">=6.9.0" } dev: true @@ -438,8 +492,8 @@ packages: dependencies: "@babel/helper-function-name": 7.19.0 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.0 - "@babel/types": 7.19.0 + "@babel/traverse": 7.19.3 + "@babel/types": 7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -452,8 +506,8 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.18.10 - "@babel/traverse": 7.19.0 - "@babel/types": 7.19.0 + "@babel/traverse": 7.19.3 + "@babel/types": 7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -465,23 +519,34 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-validator-identifier": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.19.0: + /@babel/parser/7.17.8: + resolution: + { + integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ== + } + engines: { node: ">=6.0.0" } + hasBin: true + dependencies: + "@babel/types": 7.17.0 + dev: true + + /@babel/parser/7.19.3: resolution: { - integrity: sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw== + integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ== } engines: { node: ">=6.0.0" } hasBin: true dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.0: + /@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== @@ -490,11 +555,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== @@ -503,31 +568,31 @@ packages: peerDependencies: "@babel/core": ^7.13.0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0 + "@babel/plugin-proposal-optional-chaining": 7.18.9_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-async-generator-functions/7.19.0_@babel+core@7.19.0: + /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.3: resolution: { - integrity: sha512-nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ== + integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-remap-async-to-generator": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@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.19.0: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -536,14 +601,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== @@ -552,15 +617,15 @@ packages: peerDependencies: "@babel/core": ^7.12.0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.0 + "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== @@ -569,12 +634,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.0 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.3 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== @@ -583,12 +648,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.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.19.0: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== @@ -597,12 +662,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@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.19.0: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== @@ -611,12 +676,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.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.19.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -625,12 +690,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.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.19.0: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== @@ -639,12 +704,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@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.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== @@ -653,15 +718,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.0 - "@babel/core": 7.19.0 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@babel/compat-data": 7.19.3 + "@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.0 - "@babel/plugin-transform-parameters": 7.18.8_@babel+core@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.19.0: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== @@ -670,12 +735,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.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.19.0: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== @@ -684,13 +749,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0 + "@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.19.0: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== @@ -699,14 +764,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== @@ -715,16 +780,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.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.19.0: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== @@ -733,12 +798,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3: resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== @@ -746,11 +811,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== @@ -758,11 +823,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3: resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== @@ -770,11 +835,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.3: resolution: { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== @@ -783,11 +848,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== @@ -795,11 +860,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== @@ -807,11 +872,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== @@ -820,11 +885,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.3: resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -832,11 +897,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== @@ -844,11 +909,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== @@ -857,11 +922,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3: resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -869,11 +934,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== @@ -881,11 +946,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3: resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -893,11 +958,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== @@ -905,11 +970,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== @@ -917,11 +982,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3: resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== @@ -929,11 +994,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.3: resolution: { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== @@ -942,11 +1007,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3: resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== @@ -955,11 +1020,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== @@ -968,11 +1033,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== @@ -981,11 +1046,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== @@ -994,15 +1059,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-module-imports": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-remap-async-to-generator": 7.18.9_@babel+core@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.19.0: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== @@ -1011,11 +1076,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== @@ -1024,11 +1089,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== @@ -1037,21 +1102,21 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-function-name": 7.19.0 "@babel/helper-optimise-call-expression": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-replace-supers": 7.18.9 + "@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.19.0: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== @@ -1060,11 +1125,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.0: + /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.3: resolution: { integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow== @@ -1073,11 +1138,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== @@ -1086,12 +1151,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== @@ -1100,11 +1165,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== @@ -1113,12 +1178,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-builder-binary-assignment-operator-visitor": 7.18.9 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3: resolution: { integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== @@ -1127,11 +1192,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== @@ -1140,13 +1205,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== @@ -1155,11 +1220,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== @@ -1168,11 +1233,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== @@ -1181,7 +1246,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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 @@ -1189,7 +1254,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== @@ -1198,7 +1263,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-module-transforms": 7.19.0 "@babel/helper-plugin-utils": 7.19.0 "@babel/helper-simple-access": 7.18.6 @@ -1207,7 +1272,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A== @@ -1216,17 +1281,17 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-hoist-variables": 7.18.6 "@babel/helper-module-transforms": 7.19.0 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-validator-identifier": 7.18.6 + "@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.19.0: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== @@ -1235,28 +1300,28 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.3: resolution: { - integrity: sha512-HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ== + integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.19.0: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== @@ -1265,11 +1330,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== @@ -1278,14 +1343,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-replace-supers": 7.18.9 + "@babel/helper-replace-supers": 7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3: resolution: { integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== @@ -1294,11 +1359,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== @@ -1307,11 +1372,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== @@ -1320,11 +1385,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== @@ -1333,11 +1398,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.19.0 + "@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.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== @@ -1346,15 +1411,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0 - "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.19.0 - "@babel/types": 7.19.0 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.19.3 + "@babel/types": 7.19.3 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== @@ -1363,12 +1428,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== @@ -1377,12 +1442,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== @@ -1391,11 +1456,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== @@ -1404,11 +1469,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3: resolution: { integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== @@ -1417,12 +1482,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== @@ -1431,11 +1496,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== @@ -1444,11 +1509,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.3: resolution: { integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== @@ -1457,28 +1522,28 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-typescript/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.3: resolution: { - integrity: sha512-DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA== + integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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.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.19.0: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.3: resolution: { integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== @@ -1487,11 +1552,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== @@ -1500,101 +1565,101 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.0 + "@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/preset-env/7.19.0_@babel+core@7.19.0: + /@babel/preset-env/7.19.3_@babel+core@7.19.3: resolution: { - integrity: sha512-1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ== + integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.0 - "@babel/core": 7.19.0 - "@babel/helper-compilation-targets": 7.19.0_@babel+core@7.19.0 + "@babel/compat-data": 7.19.3 + "@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.19.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-proposal-async-generator-functions": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-proposal-class-properties": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-class-static-block": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-dynamic-import": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-export-namespace-from": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-proposal-json-strings": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-logical-assignment-operators": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-numeric-separator": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-object-rest-spread": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-proposal-optional-catch-binding": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-optional-chaining": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-proposal-private-methods": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-private-property-in-object": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-proposal-unicode-property-regex": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.19.0 - "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.19.0 - "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.19.0 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-import-assertions": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.0 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.0 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.19.0 - "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.19.0 - "@babel/plugin-transform-arrow-functions": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-async-to-generator": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-block-scoped-functions": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-block-scoping": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-classes": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-transform-computed-properties": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-destructuring": 7.18.13_@babel+core@7.19.0 - "@babel/plugin-transform-dotall-regex": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-duplicate-keys": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-exponentiation-operator": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-for-of": 7.18.8_@babel+core@7.19.0 - "@babel/plugin-transform-function-name": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-literals": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-member-expression-literals": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-modules-amd": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-modules-commonjs": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-modules-systemjs": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-transform-modules-umd": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-named-capturing-groups-regex": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-transform-new-target": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-object-super": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.19.0 - "@babel/plugin-transform-property-literals": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-regenerator": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-reserved-words": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-shorthand-properties": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-spread": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-transform-sticky-regex": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-template-literals": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-typeof-symbol": 7.18.9_@babel+core@7.19.0 - "@babel/plugin-transform-unicode-escapes": 7.18.10_@babel+core@7.19.0 - "@babel/plugin-transform-unicode-regex": 7.18.6_@babel+core@7.19.0 - "@babel/preset-modules": 0.1.5_@babel+core@7.19.0 - "@babel/types": 7.19.0 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.19.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.19.0 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.19.0 - core-js-compat: 3.25.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.18.9_@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.18.9_@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.18.13_@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.3 + 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-modules/0.1.5_@babel+core@7.19.0: + /@babel/preset-modules/0.1.5_@babel+core@7.19.3: resolution: { integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== @@ -1602,15 +1667,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.0 - "@babel/plugin-transform-dotall-regex": 7.18.6_@babel+core@7.19.0 - "@babel/types": 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.3 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.19.0: + /@babel/preset-react/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== @@ -1619,16 +1684,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@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.19.0 - "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.19.0 - "@babel/plugin-transform-react-jsx-development": 7.18.6_@babel+core@7.19.0 - "@babel/plugin-transform-react-pure-annotations": 7.18.6_@babel+core@7.19.0 + "@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.19.0: + /@babel/preset-typescript/7.18.6_@babel+core@7.19.3: resolution: { integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== @@ -1637,10 +1702,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 "@babel/helper-plugin-utils": 7.19.0 "@babel/helper-validator-option": 7.18.6 - "@babel/plugin-transform-typescript": 7.19.0_@babel+core@7.19.0 + "@babel/plugin-transform-typescript": 7.19.3_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -1663,40 +1728,72 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.18.6 - "@babel/parser": 7.19.0 - "@babel/types": 7.19.0 + "@babel/parser": 7.19.3 + "@babel/types": 7.19.3 + dev: true + + /@babel/traverse/7.17.3: + resolution: + { + integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw== + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.17.7 + "@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.17.8 + "@babel/types": 7.17.0 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/traverse/7.19.0: + /@babel/traverse/7.19.3: resolution: { - integrity: sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA== + integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ== } engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.18.6 - "@babel/generator": 7.19.0 + "@babel/generator": 7.19.3 "@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.19.0 - "@babel/types": 7.19.0 + "@babel/parser": 7.19.3 + "@babel/types": 7.19.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.19.0: + /@babel/types/7.17.0: + resolution: + { + integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-validator-identifier": 7.19.1 + to-fast-properties: 2.0.0 + dev: true + + /@babel/types/7.19.3: resolution: { - integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA== + integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw== } engines: { node: ">=6.9.0" } dependencies: "@babel/helper-string-parser": 7.18.10 - "@babel/helper-validator-identifier": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 dev: true @@ -1735,10 +1832,10 @@ packages: - supports-color dev: true - /@humanwhocodes/config-array/0.10.4: + /@humanwhocodes/config-array/0.10.7: resolution: { - integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw== + integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w== } engines: { node: ">=10.10.0" } dependencies: @@ -1793,60 +1890,59 @@ packages: engines: { node: ">=8" } dev: true - /@jest/console/28.1.3: + /@jest/console/29.1.2: resolution: { - integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw== + integrity: sha512-ujEBCcYs82BTmRxqfHMQggSlkUZP63AE5YEaTPj7eFyJOzukkTorstOUC7L6nE3w5SYadGVAnTsQ/ZjTGL0qYQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 chalk: 4.1.2 - jest-message-util: 28.1.3 - jest-util: 28.1.3 + jest-message-util: 29.1.2 + jest-util: 29.1.2 slash: 3.0.0 dev: true - /@jest/core/28.1.3: + /@jest/core/29.1.2: resolution: { - integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA== + integrity: sha512-sCO2Va1gikvQU2ynDN8V4+6wB7iVrD2CvT0zaRst4rglf56yLly0NQ9nuRRAWFeimRf+tCdFsb1Vk1N9LrrMPA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + 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": 28.1.3 - "@jest/reporters": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/console": 29.1.2 + "@jest/reporters": 29.1.2 + "@jest/test-result": 29.1.2 + "@jest/transform": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.4.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 28.1.3 - jest-config: 28.1.3_@types+node@18.7.16 - jest-haste-map: 28.1.3 - jest-message-util: 28.1.3 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 - jest-resolve-dependencies: 28.1.3 - jest-runner: 28.1.3 - jest-runtime: 28.1.3 - jest-snapshot: 28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 - jest-watcher: 28.1.3 + jest-changed-files: 29.0.0 + jest-config: 29.1.2_@types+node@18.8.2 + jest-haste-map: 29.1.2 + jest-message-util: 29.1.2 + jest-regex-util: 29.0.0 + jest-resolve: 29.1.2 + jest-resolve-dependencies: 29.1.2 + jest-runner: 29.1.2 + jest-runtime: 29.1.2 + jest-snapshot: 29.1.2 + jest-util: 29.1.2 + jest-validate: 29.1.2 + jest-watcher: 29.1.2 micromatch: 4.0.5 - pretty-format: 28.1.3 - rimraf: 3.0.2 + pretty-format: 29.1.2 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -1854,77 +1950,78 @@ packages: - ts-node dev: true - /@jest/environment/28.1.3: + /@jest/environment/29.1.2: resolution: { - integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA== + integrity: sha512-rG7xZ2UeOfvOVzoLIJ0ZmvPl4tBEQ2n73CZJSlzUjPw4or1oSWC0s0Rk0ZX+pIBJ04aVr6hLWFn1DFtrnf8MhQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 - jest-mock: 28.1.3 + "@jest/fake-timers": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 + jest-mock: 29.1.2 dev: true - /@jest/expect-utils/28.1.3: + /@jest/expect-utils/29.1.2: resolution: { - integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA== + integrity: sha512-4a48bhKfGj/KAH39u0ppzNTABXQ8QPccWAFUFobWBaEMSMp+sB31Z2fK/l47c4a/Mu1po2ffmfAIPxXbVTXdtg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-get-type: 28.0.2 + jest-get-type: 29.0.0 dev: true - /@jest/expect/28.1.3: + /@jest/expect/29.1.2: resolution: { - integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw== + integrity: sha512-FXw/UmaZsyfRyvZw3M6POgSNqwmuOXJuzdNiMWW9LCYo0GRoRDhg+R5iq5higmRTHQY7hx32+j7WHwinRmoILQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - expect: 28.1.3 - jest-snapshot: 28.1.3 + expect: 29.1.2 + jest-snapshot: 29.1.2 transitivePeerDependencies: - supports-color dev: true - /@jest/fake-timers/28.1.3: + /@jest/fake-timers/29.1.2: resolution: { - integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw== + integrity: sha512-GppaEqS+QQYegedxVMpCe2xCXxxeYwQ7RsNx55zc8f+1q1qevkZGKequfTASI7ejmg9WwI+SJCrHe9X11bLL9Q== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 + "@jest/types": 29.1.2 "@sinonjs/fake-timers": 9.1.2 - "@types/node": 18.7.16 - jest-message-util: 28.1.3 - jest-mock: 28.1.3 - jest-util: 28.1.3 + "@types/node": 18.8.2 + jest-message-util: 29.1.2 + jest-mock: 29.1.2 + jest-util: 29.1.2 dev: true - /@jest/globals/28.1.3: + /@jest/globals/29.1.2: resolution: { - integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA== + integrity: sha512-uMgfERpJYoQmykAd0ffyMq8wignN4SvLUG6orJQRe9WAlTRc9cdpCaE/29qurXixYJVZWUqIBXhSk8v5xN1V9g== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 28.1.3 - "@jest/expect": 28.1.3 - "@jest/types": 28.1.3 + "@jest/environment": 29.1.2 + "@jest/expect": 29.1.2 + "@jest/types": 29.1.2 + jest-mock: 29.1.2 transitivePeerDependencies: - supports-color dev: true - /@jest/reporters/28.1.3: + /@jest/reporters/29.1.2: resolution: { - integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg== + integrity: sha512-X4fiwwyxy9mnfpxL0g9DD0KcTmEIqP0jUdnc2cfa9riHy+I6Gwwp5vOZiwyg0vZxfSDxrOlK9S4+340W4d+DAA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -1932,25 +2029,25 @@ packages: optional: true dependencies: "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 + "@jest/console": 29.1.2 + "@jest/test-result": 29.1.2 + "@jest/transform": 29.1.2 + "@jest/types": 29.1.2 "@jridgewell/trace-mapping": 0.3.15 - "@types/node": 18.7.16 + "@types/node": 18.8.2 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.5 - jest-message-util: 28.1.3 - jest-util: 28.1.3 - jest-worker: 28.1.3 + jest-message-util: 29.1.2 + jest-util: 29.1.2 + jest-worker: 29.1.2 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 @@ -1960,72 +2057,72 @@ packages: - supports-color dev: true - /@jest/schemas/28.1.3: + /@jest/schemas/29.0.0: resolution: { - integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== + integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@sinclair/typebox": 0.24.40 + "@sinclair/typebox": 0.24.44 dev: true - /@jest/source-map/28.1.2: + /@jest/source-map/29.0.0: resolution: { - integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww== + integrity: sha512-nOr+0EM8GiHf34mq2GcJyz/gYFyLQ2INDhAylrZJ9mMWoW21mLBfZa0BUVPPMxVYrLjeiRe2Z7kWXOGnS0TFhQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@jridgewell/trace-mapping": 0.3.15 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true - /@jest/test-result/28.1.3: + /@jest/test-result/29.1.2: resolution: { - integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg== + integrity: sha512-jjYYjjumCJjH9hHCoMhA8PCl1OxNeGgAoZ7yuGYILRJX9NjgzTN0pCT5qAoYR4jfOP8htIByvAlz9vfNSSBoVg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/console": 28.1.3 - "@jest/types": 28.1.3 + "@jest/console": 29.1.2 + "@jest/types": 29.1.2 "@types/istanbul-lib-coverage": 2.0.4 collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/28.1.3: + /@jest/test-sequencer/29.1.2: resolution: { - integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw== + integrity: sha512-fU6dsUqqm8sA+cd85BmeF7Gu9DsXVWFdGn9taxM6xN1cKdcP/ivSgXh5QucFRFz1oZxKv3/9DYYbq0ULly3P/Q== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/test-result": 28.1.3 + "@jest/test-result": 29.1.2 graceful-fs: 4.2.10 - jest-haste-map: 28.1.3 + jest-haste-map: 29.1.2 slash: 3.0.0 dev: true - /@jest/transform/28.1.3: + /@jest/transform/29.1.2: resolution: { - integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA== + integrity: sha512-2uaUuVHTitmkx1tHF+eBjb4p7UuzBG7SXIaA/hNIkaMP6K+gXYGxP38ZcrofzqN0HeZ7A90oqsOa97WU7WZkSw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@babel/core": 7.19.0 - "@jest/types": 28.1.3 + "@babel/core": 7.19.3 + "@jest/types": 29.1.2 "@jridgewell/trace-mapping": 0.3.15 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.8.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 28.1.3 - jest-regex-util: 28.0.2 - jest-util: 28.1.3 + jest-haste-map: 29.1.2 + jest-regex-util: 29.0.0 + jest-util: 29.1.2 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 @@ -2034,18 +2131,18 @@ packages: - supports-color dev: true - /@jest/types/28.1.3: + /@jest/types/29.1.2: resolution: { - integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== + integrity: sha512-DcXGtoTykQB5jiwCmVr8H4vdg2OJhQex3qPkG+ISyDO7xQXbt/4R6dowcRyPemRnkH7JoHvZuxPBdlq+9JxFCg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/schemas": 28.1.3 + "@jest/schemas": 29.0.0 "@types/istanbul-lib-coverage": 2.0.4 "@types/istanbul-reports": 3.0.1 - "@types/node": 18.7.16 - "@types/yargs": 17.0.12 + "@types/node": 18.8.2 + "@types/yargs": 17.0.13 chalk: 4.1.2 dev: true @@ -2136,7 +2233,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 @@ -2184,10 +2281,10 @@ packages: picomatch: 2.3.1 dev: true - /@sinclair/typebox/0.24.40: + /@sinclair/typebox/0.24.44: resolution: { - integrity: sha512-Xint60L8rF0+nRy+6fCjW9jQMmu7fTpbwTBrXZiK6eq/RHDJS7LvWX/0oXC8O7fCePmrY/XdfaTv2HiUDeCq4g== + integrity: sha512-ka0W0KN5i6LfrSocduwliMMpqVgohtPFidKdMEOUjoOFCHcOOYkKsPRxfs5f15oPNHTm6ERAm0GV/+/LTKeiWg== } dev: true @@ -2209,10 +2306,10 @@ packages: "@sinonjs/commons": 1.8.3 dev: true - /@testing-library/dom/8.17.1: + /@testing-library/dom/8.18.1: resolution: { - integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ== + integrity: sha512-oEvsm2B/WtcHKE+IcEeeCqNU/ltFGaVyGbpcm4g/2ytuT49jrlH9x5qRKL/H3A6yfM4YAbSbC0ceT5+9CEXnLg== } engines: { node: ">=12" } dependencies: @@ -2237,7 +2334,7 @@ packages: react-dom: ^18.0.0 dependencies: "@babel/runtime": 7.19.0 - "@testing-library/dom": 8.17.1 + "@testing-library/dom": 8.18.1 "@types/react-dom": 18.0.6 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -2251,6 +2348,26 @@ packages: engines: { node: ">= 10" } dev: true + /@trivago/prettier-plugin-sort-imports/3.3.0_prettier@2.7.1: + resolution: + { + integrity: sha512-1y44bVZuIN0RsS3oIiGd5k8Vm3IZXYZnp4VsP2Z/S5L9WAOw43HE2clso66M2S/dDeJ+8sKPqnHsEfh39Vjs3w== + } + peerDependencies: + prettier: 2.x + dependencies: + "@babel/core": 7.17.8 + "@babel/generator": 7.17.7 + "@babel/parser": 7.17.8 + "@babel/traverse": 7.17.3 + "@babel/types": 7.17.0 + javascript-natural-sort: 0.7.1 + lodash: 4.17.21 + prettier: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + /@types/aria-query/4.2.2: resolution: { @@ -2264,11 +2381,11 @@ packages: integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== } dependencies: - "@babel/parser": 7.19.0 - "@babel/types": 7.19.0 + "@babel/parser": 7.19.3 + "@babel/types": 7.19.3 "@types/babel__generator": 7.6.4 "@types/babel__template": 7.4.1 - "@types/babel__traverse": 7.18.1 + "@types/babel__traverse": 7.18.2 dev: true /@types/babel__generator/7.6.4: @@ -2277,7 +2394,7 @@ packages: integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@types/babel__template/7.4.1: @@ -2286,17 +2403,17 @@ packages: integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== } dependencies: - "@babel/parser": 7.19.0 - "@babel/types": 7.19.0 + "@babel/parser": 7.19.3 + "@babel/types": 7.19.3 dev: true - /@types/babel__traverse/7.18.1: + /@types/babel__traverse/7.18.2: resolution: { - integrity: sha512-FSdLaZh2UxaMuLp9lixWaHq/golWTRWOnRsAXzDTDSDOQLuZb1nsdCt6pJSPWSEQt2eFZ2YVk3oYhn+1kLMeMA== + integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== } dependencies: - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 dev: true /@types/body-parser/1.19.2: @@ -2306,7 +2423,7 @@ packages: } dependencies: "@types/connect": 3.4.35 - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/bonjour/3.5.10: @@ -2315,7 +2432,7 @@ packages: integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/connect-history-api-fallback/1.3.5: @@ -2324,8 +2441,8 @@ packages: integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw== } dependencies: - "@types/express-serve-static-core": 4.17.30 - "@types/node": 18.7.16 + "@types/express-serve-static-core": 4.17.31 + "@types/node": 18.8.2 dev: true /@types/connect/3.4.35: @@ -2334,7 +2451,7 @@ packages: integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/eslint-scope/3.7.4: @@ -2364,25 +2481,25 @@ packages: } dev: true - /@types/express-serve-static-core/4.17.30: + /@types/express-serve-static-core/4.17.31: resolution: { - integrity: sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ== + integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 "@types/qs": 6.9.7 "@types/range-parser": 1.2.4 dev: true - /@types/express/4.17.13: + /@types/express/4.17.14: resolution: { - integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA== + integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg== } dependencies: "@types/body-parser": 1.19.2 - "@types/express-serve-static-core": 4.17.30 + "@types/express-serve-static-core": 4.17.31 "@types/qs": 6.9.7 "@types/serve-static": 1.15.0 dev: true @@ -2393,7 +2510,7 @@ packages: integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/html-minifier-terser/6.1.0: @@ -2409,7 +2526,7 @@ packages: integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/istanbul-lib-coverage/2.0.4: @@ -2437,25 +2554,25 @@ packages: "@types/istanbul-lib-report": 3.0.0 dev: true - /@types/jest/28.1.8: + /@types/jest/29.1.1: resolution: { - integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw== + integrity: sha512-U9Ey07dGWl6fUFaIaUQUKWG5NoKi/zizeVQCGV8s4nSU0jPgqphVZvS64+8BtWYvrc3ZGw6wo943NSYPxkrp/g== } dependencies: - expect: 28.1.3 - pretty-format: 28.1.3 + expect: 29.1.2 + pretty-format: 29.1.2 dev: true - /@types/jsdom/16.2.15: + /@types/jsdom/20.0.0: resolution: { - integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ== + integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA== } dependencies: - "@types/node": 18.7.16 - "@types/parse5": 6.0.3 + "@types/node": 18.8.2 "@types/tough-cookie": 4.0.2 + parse5: 7.1.1 dev: true /@types/json-schema/7.0.11: @@ -2472,31 +2589,24 @@ packages: } dev: true - /@types/node/18.7.16: - resolution: - { - integrity: sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg== - } - dev: true - - /@types/p5/1.4.2: + /@types/node/18.8.2: resolution: { - integrity: sha512-tzJ2PdmeXlX8tidbA1/pQEhs0MHVWam0K4ux5ri0GrZXhBU3QrpTpSVzNaBDuo6KheryHdH8wR82x1nPvxo42g== + integrity: sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA== } dev: true - /@types/parse5/6.0.3: + /@types/p5/1.4.3: resolution: { - integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== + integrity: sha512-UjgBi1/VU0Dz1/JxzRZrDKlC54rMELWW+6oHx1pRKzKkVgwzvP+dEjZ1JbeMjK12VJMUjDx4lhGUmnUL2jBASQ== } dev: true - /@types/prettier/2.7.0: + /@types/prettier/2.7.1: resolution: { - integrity: sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A== + integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow== } dev: true @@ -2527,18 +2637,18 @@ packages: integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA== } dependencies: - "@types/react": 18.0.19 + "@types/react": 18.0.21 dev: true - /@types/react/18.0.19: + /@types/react/18.0.21: resolution: { - integrity: sha512-BDc3Q+4Q3zsn7k9xZrKfjWyJsSlEDMs38gD1qp2eDazLCdcPqAT+vq1ND+Z8AGel/UiwzNUk8ptpywgNQcJ1MQ== + 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 dev: true /@types/retry/0.12.0: @@ -2561,7 +2671,7 @@ packages: integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== } dependencies: - "@types/express": 4.17.13 + "@types/express": 4.17.14 dev: true /@types/serve-static/1.15.0: @@ -2571,7 +2681,7 @@ packages: } dependencies: "@types/mime": 3.0.1 - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/sockjs/0.3.33: @@ -2580,7 +2690,7 @@ packages: integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/stack-utils/2.0.1: @@ -2603,7 +2713,7 @@ packages: integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 dev: true /@types/yargs-parser/21.0.0: @@ -2613,19 +2723,19 @@ packages: } dev: true - /@types/yargs/17.0.12: + /@types/yargs/17.0.13: resolution: { - integrity: sha512-Nz4MPhecOFArtm81gFQvQqdV7XYCrWKx5uUt6GNHredFHn1i2mtWqXTON7EPXMtNi1qjtjEM/VCHDhcHsAMLXQ== + integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg== } dependencies: "@types/yargs-parser": 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.36.2_wxqvmnl3i4rbvz4ixyoiufmx3e: + /@typescript-eslint/eslint-plugin/5.39.0_xyciw6oqjoiiono4dhv3uhn5my: resolution: { - integrity: sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw== + integrity: sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2636,26 +2746,25 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/parser": 5.36.2_irgkl5vooow2ydyo6aokmferha - "@typescript-eslint/scope-manager": 5.36.2 - "@typescript-eslint/type-utils": 5.36.2_irgkl5vooow2ydyo6aokmferha - "@typescript-eslint/utils": 5.36.2_irgkl5vooow2ydyo6aokmferha + "@typescript-eslint/parser": 5.39.0_ypn2ylkkyfa5i233caldtndbqa + "@typescript-eslint/scope-manager": 5.39.0 + "@typescript-eslint/type-utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa + "@typescript-eslint/utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa debug: 4.3.4 - eslint: 8.23.1 - functional-red-black-tree: 1.0.1 + eslint: 8.24.0 ignore: 5.2.0 regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + 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.36.2_irgkl5vooow2ydyo6aokmferha: + /@typescript-eslint/parser/5.39.0_ypn2ylkkyfa5i233caldtndbqa: resolution: { - integrity: sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA== + integrity: sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2665,31 +2774,31 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.36.2 - "@typescript-eslint/types": 5.36.2 - "@typescript-eslint/typescript-estree": 5.36.2_typescript@4.8.3 + "@typescript-eslint/scope-manager": 5.39.0 + "@typescript-eslint/types": 5.39.0 + "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.4 debug: 4.3.4 - eslint: 8.23.1 - typescript: 4.8.3 + eslint: 8.24.0 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.36.2: + /@typescript-eslint/scope-manager/5.39.0: resolution: { - integrity: sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw== + integrity: sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.36.2 - "@typescript-eslint/visitor-keys": 5.36.2 + "@typescript-eslint/types": 5.39.0 + "@typescript-eslint/visitor-keys": 5.39.0 dev: true - /@typescript-eslint/type-utils/5.36.2_irgkl5vooow2ydyo6aokmferha: + /@typescript-eslint/type-utils/5.39.0_ypn2ylkkyfa5i233caldtndbqa: resolution: { - integrity: sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw== + integrity: sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2699,28 +2808,28 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.36.2_typescript@4.8.3 - "@typescript-eslint/utils": 5.36.2_irgkl5vooow2ydyo6aokmferha + "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.4 + "@typescript-eslint/utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa debug: 4.3.4 - eslint: 8.23.1 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + eslint: 8.24.0 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.36.2: + /@typescript-eslint/types/5.39.0: resolution: { - integrity: sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ== + integrity: sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@typescript-eslint/typescript-estree/5.36.2_typescript@4.8.3: + /@typescript-eslint/typescript-estree/5.39.0_typescript@4.8.4: resolution: { - integrity: sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w== + integrity: sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2729,47 +2838,47 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.36.2 - "@typescript-eslint/visitor-keys": 5.36.2 + "@typescript-eslint/types": 5.39.0 + "@typescript-eslint/visitor-keys": 5.39.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.3 - typescript: 4.8.3 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.36.2_irgkl5vooow2ydyo6aokmferha: + /@typescript-eslint/utils/5.39.0_ypn2ylkkyfa5i233caldtndbqa: resolution: { - integrity: sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg== + integrity: sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg== } 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.36.2 - "@typescript-eslint/types": 5.36.2 - "@typescript-eslint/typescript-estree": 5.36.2_typescript@4.8.3 - eslint: 8.23.1 + "@typescript-eslint/scope-manager": 5.39.0 + "@typescript-eslint/types": 5.39.0 + "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.4 + eslint: 8.24.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.23.1 + eslint-utils: 3.0.0_eslint@8.24.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.36.2: + /@typescript-eslint/visitor-keys/5.39.0: resolution: { - integrity: sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A== + integrity: sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.36.2 + "@typescript-eslint/types": 5.39.0 eslint-visitor-keys: 3.3.0 dev: true @@ -2934,7 +3043,7 @@ packages: webpack-cli: 4.x.x dependencies: webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri dev: true /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: @@ -2946,10 +3055,10 @@ packages: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri dev: true - /@webpack-cli/serve/1.7.0_jlfjvoklaykqqbzdxipmerxj5e: + /@webpack-cli/serve/1.7.0_ud4agclah7rahur6ntojouq57y: resolution: { integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q== @@ -2961,8 +3070,8 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m - webpack-dev-server: 4.11.0_5v66e2inugklgvlh4huuavolfq + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq dev: true /@xtuc/ieee754/1.2.0: @@ -3004,14 +3113,14 @@ packages: negotiator: 0.6.3 dev: true - /acorn-globals/6.0.0: + /acorn-globals/7.0.1: resolution: { - integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== + 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.8.0: @@ -3036,21 +3145,12 @@ packages: acorn: 8.8.0 dev: true - /acorn-walk/7.2.0: - resolution: - { - integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - } - engines: { node: ">=0.4.0" } - dev: true - - /acorn/7.4.1: + /acorn-walk/8.2.0: resolution: { - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== } engines: { node: ">=0.4.0" } - hasBin: true dev: true /acorn/8.8.0: @@ -3264,8 +3364,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 - get-intrinsic: 1.1.2 + es-abstract: 1.20.3 + get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -3304,7 +3404,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 es-shim-unscopables: 1.0.0 dev: true @@ -3324,20 +3424,20 @@ packages: } dev: true - /babel-jest/28.1.3_@babel+core@7.19.0: + /babel-jest/29.1.2_@babel+core@7.19.3: resolution: { - integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q== + integrity: sha512-IuG+F3HTHryJb7gacC7SQ59A9kO56BctUsT67uJHp1mMCHUOMXpDwOHWGifWqdWVknN2WNkCVQELPjXx0aLJ9Q== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: "@babel/core": ^7.8.0 dependencies: - "@babel/core": 7.19.0 - "@jest/transform": 28.1.3 + "@babel/core": 7.19.3 + "@jest/transform": 29.1.2 "@types/babel__core": 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.19.0 + babel-preset-jest: 29.0.2_@babel+core@7.19.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -3345,7 +3445,7 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_z22tmofudeh3tyeifpjvwjl5ei: + /babel-loader/8.2.5_wfdvla2jorjoj23kkavho2upde: resolution: { integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== @@ -3355,7 +3455,7 @@ packages: "@babel/core": ^7.0.0 webpack: ">=2" dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -3382,71 +3482,71 @@ packages: "@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/28.1.3: + /babel-plugin-jest-hoist/29.0.2: resolution: { - integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q== + integrity: sha512-eBr2ynAEFjcebVvu8Ktx580BD1QKCrBG1XwEUTXJe285p9HA/4hOhfWCFRQhTKSyBV0VzjhG7H91Eifz9s29hg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@babel/template": 7.18.10 - "@babel/types": 7.19.0 + "@babel/types": 7.19.3 "@types/babel__core": 7.1.19 - "@types/babel__traverse": 7.18.1 + "@types/babel__traverse": 7.18.2 dev: true - /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.19.0: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3: resolution: { - integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q== + integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.0 - "@babel/core": 7.19.0 - "@babel/helper-define-polyfill-provider": 0.3.2_@babel+core@7.19.0 + "@babel/compat-data": 7.19.3 + "@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.5.3_@babel+core@7.19.0: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.3: resolution: { - integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== + integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-define-polyfill-provider": 0.3.2_@babel+core@7.19.0 - core-js-compat: 3.25.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.19.0: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.3: resolution: { - integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw== + integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.0 - "@babel/helper-define-polyfill-provider": 0.3.2_@babel+core@7.19.0 + "@babel/core": 7.19.3 + "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.3 transitivePeerDependencies: - supports-color dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.0: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.3: resolution: { integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== @@ -3454,33 +3554,33 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.19.0 - "@babel/plugin-syntax-bigint": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.19.0 - "@babel/plugin-syntax-import-meta": 7.10.4_@babel+core@7.19.0 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.0 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.0 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.19.0 - "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.19.0 + "@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/28.1.3_@babel+core@7.19.0: + /babel-preset-jest/29.0.2_@babel+core@7.19.3: resolution: { - integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A== + integrity: sha512-BeVXp7rH5TK96ofyEnHjznjLMQ2nAeDJ+QzxKnHAAMs0RgrQsCywjAN8m4mOm5Di0pxU//3AoEeJJrerMH5UeA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.0 - babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + "@babel/core": 7.19.3 + babel-plugin-jest-hoist: 29.0.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 dev: true /balanced-match/1.0.2: @@ -3574,25 +3674,18 @@ packages: fill-range: 7.0.1 dev: true - /browser-process-hrtime/1.0.0: - resolution: - { - integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - } - dev: true - - /browserslist/4.21.3: + /browserslist/4.21.4: resolution: { - integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ== + integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001397 - electron-to-chromium: 1.4.247 + caniuse-lite: 1.0.30001416 + electron-to-chromium: 1.4.274 node-releases: 2.0.6 - update-browserslist-db: 1.0.7_browserslist@4.21.3 + update-browserslist-db: 1.0.10_browserslist@4.21.4 dev: true /bs-logger/0.2.6: @@ -3644,7 +3737,7 @@ packages: } dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /callsites/3.1.0: @@ -3681,10 +3774,10 @@ packages: engines: { node: ">=10" } dev: true - /caniuse-lite/1.0.30001397: + /caniuse-lite/1.0.30001416: resolution: { - integrity: sha512-SW9N2TbCdLf0eiNDRrrQXx2sOkaakNZbCjgNpPyMJJbiOrU5QzMIrXOVMRM1myBXTD5iTkdrtU/EguCrBocHlA== + integrity: sha512-06wzzdAkCPZO+Qm4e/eNghZBDfVNDsCgw33T27OwBH9unE9S478OYw//Q2L7Npf/zBzs7rjZOszIFQkwQKAEqA== } dev: true @@ -3793,11 +3886,12 @@ packages: source-map: 0.6.1 dev: true - /cliui/7.0.4: + /cliui/8.0.1: resolution: { - integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + 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 @@ -4011,13 +4105,13 @@ packages: engines: { node: ">= 0.6" } dev: true - /core-js-compat/3.25.1: + /core-js-compat/3.25.5: resolution: { - integrity: sha512-pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw== + integrity: sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA== } dependencies: - browserslist: 4.21.3 + browserslist: 4.21.4 dev: true /core-util-is/1.0.3: @@ -4048,14 +4142,14 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.16 - postcss: 8.4.16 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.16 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.16 - postcss-modules-scope: 3.0.0_postcss@8.4.16 - postcss-modules-values: 4.0.0_postcss@8.4.16 + icss-utils: 5.1.0_postcss@8.4.17 + postcss: 8.4.17 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.17 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.17 + postcss-modules-scope: 3.0.0_postcss@8.4.17 + postcss-modules-values: 4.0.0_postcss@8.4.17 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 @@ -4113,10 +4207,10 @@ packages: cssom: 0.3.8 dev: true - /csstype/3.1.0: + /csstype/3.1.1: resolution: { - integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== + integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== } dev: true @@ -4161,10 +4255,10 @@ packages: ms: 2.1.2 dev: true - /decimal.js/10.4.0: + /decimal.js/10.4.1: resolution: { - integrity: sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== + integrity: sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw== } dev: true @@ -4291,12 +4385,12 @@ packages: } dev: true - /diff-sequences/28.1.1: + /diff-sequences/29.0.0: resolution: { - integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw== + integrity: sha512-7Qe/zd1wxSDL4D/X/FPjOMB+ZMDt71W94KYaq05I2l0oQqgXgs7s4ftYYmV38gBSrPz2vcygxfs1xn0FT+rKNA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true /dir-glob/3.0.1: @@ -4428,10 +4522,10 @@ packages: } dev: true - /electron-to-chromium/1.4.247: + /electron-to-chromium/1.4.274: resolution: { - integrity: sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw== + integrity: sha512-Fgn7JZQzq85I81FpKUNxVLAzoghy8JZJ4NIue+YfUYBbu1AkpgzFvNwzF/ZNZH9ElkmJD0TSWu1F2gTpw/zZlg== } dev: true @@ -4491,6 +4585,14 @@ packages: } dev: true + /entities/4.4.0: + resolution: + { + integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== + } + engines: { node: ">=0.12" } + dev: true + /envinfo/7.8.1: resolution: { @@ -4509,10 +4611,10 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.20.2: + /es-abstract/1.20.3: resolution: { - integrity: sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== + integrity: sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw== } engines: { node: ">= 0.4" } dependencies: @@ -4520,13 +4622,13 @@ packages: 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.5 + is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 @@ -4536,6 +4638,7 @@ packages: object-keys: 1.1.1 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 @@ -4564,7 +4667,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - is-callable: 1.2.5 + is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true @@ -4624,7 +4727,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.23.1: + /eslint-plugin-react-hooks/4.6.0_eslint@8.24.0: resolution: { integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== @@ -4633,10 +4736,10 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.23.1 + eslint: 8.24.0 dev: true - /eslint-plugin-react/7.31.8_eslint@8.23.1: + /eslint-plugin-react/7.31.8_eslint@8.24.0: resolution: { integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw== @@ -4648,7 +4751,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.23.1 + eslint: 8.24.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -4662,17 +4765,6 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /eslint-plugin-simple-import-sort/7.0.0_eslint@8.23.1: - resolution: - { - integrity: sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw== - } - peerDependencies: - eslint: ">=5.0.0" - dependencies: - eslint: 8.23.1 - dev: true - /eslint-scope/5.1.1: resolution: { @@ -4695,7 +4787,7 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.23.1: + /eslint-utils/3.0.0_eslint@8.24.0: resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== @@ -4704,7 +4796,7 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.23.1 + eslint: 8.24.0 eslint-visitor-keys: 2.1.0 dev: true @@ -4724,16 +4816,16 @@ packages: engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /eslint/8.23.1: + /eslint/8.24.0: resolution: { - integrity: sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg== + integrity: sha512-dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: "@eslint/eslintrc": 1.3.2 - "@humanwhocodes/config-array": 0.10.4 + "@humanwhocodes/config-array": 0.10.7 "@humanwhocodes/gitignore-to-minimatch": 1.0.2 "@humanwhocodes/module-importer": 1.0.1 ajv: 6.12.6 @@ -4743,7 +4835,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.23.1 + eslint-utils: 3.0.0_eslint@8.24.0 eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -4759,7 +4851,7 @@ packages: import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 - js-sdsl: 4.1.4 + js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -4896,18 +4988,18 @@ packages: engines: { node: ">= 0.8.0" } dev: true - /expect/28.1.3: + /expect/29.1.2: resolution: { - integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g== + integrity: sha512-AuAGn1uxva5YBbBlXb+2JPxJRuemZsmlGcapPXWNSBNsQtAULfjioREGBWuI0EOvYUKjDnrCy8PW5Zlr1md5mw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/expect-utils": 28.1.3 - jest-get-type: 28.0.2 - jest-matcher-utils: 28.1.3 - jest-message-util: 28.1.3 - jest-util: 28.1.3 + "@jest/expect-utils": 29.1.2 + jest-get-type: 29.0.0 + jest-matcher-utils: 29.1.2 + jest-message-util: 29.1.2 + jest-util: 29.1.2 dev: true /express/4.18.1: @@ -5014,10 +5106,10 @@ packages: websocket-driver: 0.7.4 dev: true - /fb-watchman/2.0.1: + /fb-watchman/2.0.2: resolution: { - integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== } dependencies: bser: 2.1.1 @@ -5133,10 +5225,10 @@ packages: } dev: true - /follow-redirects/1.15.1: + /follow-redirects/1.15.2: resolution: { - integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA== + integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== } engines: { node: ">=4.0" } peerDependencies: @@ -5249,17 +5341,10 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 functions-have-names: 1.2.3 dev: true - /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: { @@ -5301,10 +5386,10 @@ packages: engines: { node: 6.* || 8.* || >= 10.* } dev: true - /get-intrinsic/1.1.2: + /get-intrinsic/1.1.3: resolution: { - integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== + integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== } dependencies: function-bind: 1.1.1 @@ -5336,7 +5421,7 @@ packages: engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /gh-pages/4.0.0: @@ -5494,7 +5579,7 @@ packages: integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== } dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /has-symbols/1.0.3: @@ -5590,7 +5675,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.15.0 + terser: 5.15.1 dev: true /html-webpack-plugin/5.5.0_webpack@5.74.0: @@ -5677,7 +5762,7 @@ packages: - supports-color dev: true - /http-proxy-middleware/2.0.6_@types+express@4.17.13: + /http-proxy-middleware/2.0.6_@types+express@4.17.14: resolution: { integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== @@ -5689,7 +5774,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 @@ -5707,7 +5792,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 @@ -5754,7 +5839,7 @@ packages: safer-buffer: 2.1.2 dev: true - /icss-utils/5.1.0_postcss@8.4.16: + /icss-utils/5.1.0_postcss@8.4.17: resolution: { integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== @@ -5763,7 +5848,7 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.16 + postcss: 8.4.17 dev: true /ignore/5.2.0: @@ -5836,7 +5921,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 has: 1.0.3 side-channel: 1.0.4 dev: true @@ -5902,10 +5987,10 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-callable/1.2.5: + /is-callable/1.2.7: resolution: { - integrity: sha512-ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw== + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== } engines: { node: ">= 0.4" } dev: true @@ -6120,15 +6205,15 @@ packages: engines: { node: ">=8" } dev: true - /istanbul-lib-instrument/5.2.0: + /istanbul-lib-instrument/5.2.1: resolution: { - integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== } engines: { node: ">=8" } dependencies: - "@babel/core": 7.19.0 - "@babel/parser": 7.19.0 + "@babel/core": 7.19.3 + "@babel/parser": 7.19.3 "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -6173,53 +6258,60 @@ packages: istanbul-lib-report: 3.0.0 dev: true - /jest-changed-files/28.1.3: + /javascript-natural-sort/0.7.1: resolution: { - integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA== + integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dev: true + + /jest-changed-files/29.0.0: + resolution: + { + integrity: sha512-28/iDMDrUpGoCitTURuDqUzWQoWmOmOKOFST1mi2lwh62X4BFf6khgH3uSuo1e49X/UDjuApAj3w0wLOex4VPQ== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: execa: 5.1.1 p-limit: 3.1.0 dev: true - /jest-circus/28.1.3: + /jest-circus/29.1.2: resolution: { - integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow== + integrity: sha512-ajQOdxY6mT9GtnfJRZBRYS7toNIJayiiyjDyoZcnvPRUPwJ58JX0ci0PKAKUo2C1RyzlHw0jabjLGKksO42JGA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 28.1.3 - "@jest/expect": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/environment": 29.1.2 + "@jest/expect": 29.1.2 + "@jest/test-result": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 - jest-each: 28.1.3 - jest-matcher-utils: 28.1.3 - jest-message-util: 28.1.3 - jest-runtime: 28.1.3 - jest-snapshot: 28.1.3 - jest-util: 28.1.3 + jest-each: 29.1.2 + jest-matcher-utils: 29.1.2 + jest-message-util: 29.1.2 + jest-runtime: 29.1.2 + jest-snapshot: 29.1.2 + jest-util: 29.1.2 p-limit: 3.1.0 - pretty-format: 28.1.3 + pretty-format: 29.1.2 slash: 3.0.0 stack-utils: 2.0.5 transitivePeerDependencies: - supports-color dev: true - /jest-cli/28.1.3: + /jest-cli/29.1.2: resolution: { - integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ== + integrity: sha512-vsvBfQ7oS2o4MJdAH+4u9z76Vw5Q8WBQF5MchDbkylNknZdrPTX1Ix7YRJyTlOWqRaS7ue/cEAn+E4V1MWyMzw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + 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 @@ -6227,30 +6319,30 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 + "@jest/core": 29.1.2 + "@jest/test-result": 29.1.2 + "@jest/types": 29.1.2 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 + jest-config: 29.1.2 + jest-util: 29.1.2 + jest-validate: 29.1.2 prompts: 2.4.2 - yargs: 17.5.1 + yargs: 17.6.0 transitivePeerDependencies: - "@types/node" - supports-color - ts-node dev: true - /jest-config/28.1.3: + /jest-config/29.1.2: resolution: { - integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ== + integrity: sha512-EC3Zi86HJUOz+2YWQcJYQXlf0zuBhJoeyxLM6vb6qJsVmpP7KcCP1JnyF0iaqTaXdBP8Rlwsvs7hnKWQWWLwwA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: "@types/node": "*" ts-node: ">=9.0.0" @@ -6260,38 +6352,38 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.19.0 - "@jest/test-sequencer": 28.1.3 - "@jest/types": 28.1.3 - babel-jest: 28.1.3_@babel+core@7.19.0 + "@babel/core": 7.19.3 + "@jest/test-sequencer": 29.1.2 + "@jest/types": 29.1.2 + babel-jest: 29.1.2_@babel+core@7.19.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 28.1.3 - jest-environment-node: 28.1.3 - jest-get-type: 28.0.2 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 - jest-runner: 28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 + jest-circus: 29.1.2 + jest-environment-node: 29.1.2 + jest-get-type: 29.0.0 + jest-regex-util: 29.0.0 + jest-resolve: 29.1.2 + jest-runner: 29.1.2 + jest-util: 29.1.2 + jest-validate: 29.1.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 28.1.3 + pretty-format: 29.1.2 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-config/28.1.3_@types+node@18.7.16: + /jest-config/29.1.2_@types+node@18.8.2: resolution: { - integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ== + integrity: sha512-EC3Zi86HJUOz+2YWQcJYQXlf0zuBhJoeyxLM6vb6qJsVmpP7KcCP1JnyF0iaqTaXdBP8Rlwsvs7hnKWQWWLwwA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: "@types/node": "*" ts-node: ">=9.0.0" @@ -6301,98 +6393,98 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.19.0 - "@jest/test-sequencer": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 - babel-jest: 28.1.3_@babel+core@7.19.0 + "@babel/core": 7.19.3 + "@jest/test-sequencer": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 + babel-jest: 29.1.2_@babel+core@7.19.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 28.1.3 - jest-environment-node: 28.1.3 - jest-get-type: 28.0.2 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 - jest-runner: 28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 + jest-circus: 29.1.2 + jest-environment-node: 29.1.2 + jest-get-type: 29.0.0 + jest-regex-util: 29.0.0 + jest-resolve: 29.1.2 + jest-runner: 29.1.2 + jest-util: 29.1.2 + jest-validate: 29.1.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 28.1.3 + pretty-format: 29.1.2 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-diff/28.1.3: + /jest-diff/29.1.2: resolution: { - integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw== + integrity: sha512-4GQts0aUopVvecIT4IwD/7xsBaMhKTYoM4/njE/aVw9wpw+pIUVp8Vab/KnSzSilr84GnLBkaP3JLDnQYCKqVQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 - diff-sequences: 28.1.1 - jest-get-type: 28.0.2 - pretty-format: 28.1.3 + diff-sequences: 29.0.0 + jest-get-type: 29.0.0 + pretty-format: 29.1.2 dev: true - /jest-docblock/28.1.1: + /jest-docblock/29.0.0: resolution: { - integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== + integrity: sha512-s5Kpra/kLzbqu9dEjov30kj1n4tfu3e7Pl8v+f8jOkeWNqM6Ds8jRaJfZow3ducoQUrf2Z4rs2N5S3zXnb83gw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: detect-newline: 3.1.0 dev: true - /jest-each/28.1.3: + /jest-each/29.1.2: resolution: { - integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g== + integrity: sha512-AmTQp9b2etNeEwMyr4jc0Ql/LIX/dhbgP21gHAizya2X6rUspHn2gysMXaj6iwWuOJ2sYRgP8c1P4cXswgvS1A== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 + "@jest/types": 29.1.2 chalk: 4.1.2 - jest-get-type: 28.0.2 - jest-util: 28.1.3 - pretty-format: 28.1.3 + jest-get-type: 29.0.0 + jest-util: 29.1.2 + pretty-format: 29.1.2 dev: true - /jest-environment-jsdom-global/3.1.2_rqqruudttwcdyftgmv7lyajjh4: + /jest-environment-jsdom-global/4.0.0_eehccwu7remqurin73gq6ugqky: resolution: { - integrity: sha512-Suq/B0c8OVUYrx05j8ynKqKMzNCTNll72SLxzoTeBtjnsbrScM2Az0dBEBPN8EVTuP1lcgWN0tV0M9+hfkvXHQ== + integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA== } - engines: { node: ">= 12" } + engines: { node: ">= 14" } peerDependencies: jest-environment-jsdom: - 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x + 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: - jest-environment-jsdom: 28.1.3_canvas@2.10.1 + jest-environment-jsdom: 29.1.2_canvas@2.10.1 dev: true - /jest-environment-jsdom/28.1.3_canvas@2.10.1: + /jest-environment-jsdom/29.1.2_canvas@2.10.1: resolution: { - integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg== + integrity: sha512-D+XNIKia5+uDjSMwL/G1l6N9MCb7LymKI8FpcLo7kkISjc/Sa9w+dXXEa7u1Wijo3f8sVLqfxdGqYtRhmca+Xw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/jsdom": 16.2.15 - "@types/node": 18.7.16 - jest-mock: 28.1.3 - jest-util: 28.1.3 - jsdom: 19.0.0_canvas@2.10.1 + "@jest/environment": 29.1.2 + "@jest/fake-timers": 29.1.2 + "@jest/types": 29.1.2 + "@types/jsdom": 20.0.0 + "@types/node": 18.8.2 + jest-mock: 29.1.2 + jest-util: 29.1.2 + jsdom: 20.0.1_canvas@2.10.1 transitivePeerDependencies: - bufferutil - canvas @@ -6400,105 +6492,106 @@ packages: - utf-8-validate dev: true - /jest-environment-node/28.1.3: + /jest-environment-node/29.1.2: resolution: { - integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A== + integrity: sha512-C59yVbdpY8682u6k/lh8SUMDJPbOyCHOTgLVVi1USWFxtNV+J8fyIwzkg+RJIVI30EKhKiAGNxYaFr3z6eyNhQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 - jest-mock: 28.1.3 - jest-util: 28.1.3 + "@jest/environment": 29.1.2 + "@jest/fake-timers": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 + jest-mock: 29.1.2 + jest-util: 29.1.2 dev: true - /jest-get-type/28.0.2: + /jest-get-type/29.0.0: resolution: { - integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== + integrity: sha512-83X19z/HuLKYXYHskZlBAShO7UfLFXu/vWajw9ZNJASN32li8yHMaVGAQqxFW1RCFOkB7cubaL6FaJVQqqJLSw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true - /jest-haste-map/28.1.3: + /jest-haste-map/29.1.2: resolution: { - integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA== + integrity: sha512-xSjbY8/BF11Jh3hGSPfYTa/qBFrm3TPM7WU8pU93m2gqzORVLkHFWvuZmFsTEBPRKndfewXhMOuzJNHyJIZGsw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 + "@jest/types": 29.1.2 "@types/graceful-fs": 4.1.5 - "@types/node": 18.7.16 + "@types/node": 18.8.2 anymatch: 3.1.2 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 graceful-fs: 4.2.10 - jest-regex-util: 28.0.2 - jest-util: 28.1.3 - jest-worker: 28.1.3 + jest-regex-util: 29.0.0 + jest-util: 29.1.2 + jest-worker: 29.1.2 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 dev: true - /jest-leak-detector/28.1.3: + /jest-leak-detector/29.1.2: resolution: { - integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA== + integrity: sha512-TG5gAZJpgmZtjb6oWxBLf2N6CfQ73iwCe6cofu/Uqv9iiAm6g502CAnGtxQaTfpHECBdVEMRBhomSXeLnoKjiQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-get-type: 28.0.2 - pretty-format: 28.1.3 + jest-get-type: 29.0.0 + pretty-format: 29.1.2 dev: true - /jest-matcher-utils/28.1.3: + /jest-matcher-utils/29.1.2: resolution: { - integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw== + integrity: sha512-MV5XrD3qYSW2zZSHRRceFzqJ39B2z11Qv0KPyZYxnzDHFeYZGJlgGi0SW+IXSJfOewgJp/Km/7lpcFT+cgZypw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 - jest-diff: 28.1.3 - jest-get-type: 28.0.2 - pretty-format: 28.1.3 + jest-diff: 29.1.2 + jest-get-type: 29.0.0 + pretty-format: 29.1.2 dev: true - /jest-message-util/28.1.3: + /jest-message-util/29.1.2: resolution: { - integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== + integrity: sha512-9oJ2Os+Qh6IlxLpmvshVbGUiSkZVc2FK+uGOm6tghafnB2RyjKAxMZhtxThRMxfX1J1SOMhTn9oK3/MutRWQJQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@babel/code-frame": 7.18.6 - "@jest/types": 28.1.3 + "@jest/types": 29.1.2 "@types/stack-utils": 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.10 micromatch: 4.0.5 - pretty-format: 28.1.3 + pretty-format: 29.1.2 slash: 3.0.0 stack-utils: 2.0.5 dev: true - /jest-mock/28.1.3: + /jest-mock/29.1.2: resolution: { - integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA== + integrity: sha512-PFDAdjjWbjPUtQPkQufvniXIS3N9Tv7tbibePEjIIprzjgo0qQlyUiVMrT4vL8FaSJo1QXifQUOuPH3HQC/aMA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 + jest-util: 29.1.2 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3: + /jest-pnp-resolver/1.2.2_jest-resolve@29.1.2: resolution: { integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== @@ -6510,191 +6603,192 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 28.1.3 + jest-resolve: 29.1.2 dev: true - /jest-regex-util/28.0.2: + /jest-regex-util/29.0.0: resolution: { - integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== + integrity: sha512-BV7VW7Sy0fInHWN93MMPtlClweYv2qrSCwfeFWmpribGZtQPWNvRSq9XOVgOEjU1iBGRKXUZil0o2AH7Iy9Lug== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true - /jest-resolve-dependencies/28.1.3: + /jest-resolve-dependencies/29.1.2: resolution: { - integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA== + integrity: sha512-44yYi+yHqNmH3OoWZvPgmeeiwKxhKV/0CfrzaKLSkZG9gT973PX8i+m8j6pDrTYhhHoiKfF3YUFg/6AeuHw4HQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-regex-util: 28.0.2 - jest-snapshot: 28.1.3 + jest-regex-util: 29.0.0 + jest-snapshot: 29.1.2 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/28.1.3: + /jest-resolve/29.1.2: resolution: { - integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ== + integrity: sha512-7fcOr+k7UYSVRJYhSmJHIid3AnDBcLQX3VmT9OSbPWsWz1MfT7bcoerMhADKGvKCoMpOHUQaDHtQoNp/P9JMGg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 28.1.3 - jest-pnp-resolver: 1.2.2_jest-resolve@28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 + jest-haste-map: 29.1.2 + jest-pnp-resolver: 1.2.2_jest-resolve@29.1.2 + jest-util: 29.1.2 + jest-validate: 29.1.2 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/28.1.3: + /jest-runner/29.1.2: resolution: { - integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA== + integrity: sha512-yy3LEWw8KuBCmg7sCGDIqKwJlULBuNIQa2eFSVgVASWdXbMYZ9H/X0tnXt70XFoGf92W2sOQDOIFAA6f2BG04Q== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/console": 28.1.3 - "@jest/environment": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/console": 29.1.2 + "@jest/environment": 29.1.2 + "@jest/test-result": 29.1.2 + "@jest/transform": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 - jest-docblock: 28.1.1 - jest-environment-node: 28.1.3 - jest-haste-map: 28.1.3 - jest-leak-detector: 28.1.3 - jest-message-util: 28.1.3 - jest-resolve: 28.1.3 - jest-runtime: 28.1.3 - jest-util: 28.1.3 - jest-watcher: 28.1.3 - jest-worker: 28.1.3 + jest-docblock: 29.0.0 + jest-environment-node: 29.1.2 + jest-haste-map: 29.1.2 + jest-leak-detector: 29.1.2 + jest-message-util: 29.1.2 + jest-resolve: 29.1.2 + jest-runtime: 29.1.2 + jest-util: 29.1.2 + jest-watcher: 29.1.2 + jest-worker: 29.1.2 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color dev: true - /jest-runtime/28.1.3: + /jest-runtime/29.1.2: resolution: { - integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw== + integrity: sha512-jr8VJLIf+cYc+8hbrpt412n5jX3tiXmpPSYTGnwcvNemY+EOuLNiYnHJ3Kp25rkaAcTWOEI4ZdOIQcwYcXIAZw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/globals": 28.1.3 - "@jest/source-map": 28.1.2 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 + "@jest/environment": 29.1.2 + "@jest/fake-timers": 29.1.2 + "@jest/globals": 29.1.2 + "@jest/source-map": 29.0.0 + "@jest/test-result": 29.1.2 + "@jest/transform": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 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: 28.1.3 - jest-message-util: 28.1.3 - jest-mock: 28.1.3 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 - jest-snapshot: 28.1.3 - jest-util: 28.1.3 + jest-haste-map: 29.1.2 + jest-message-util: 29.1.2 + jest-mock: 29.1.2 + jest-regex-util: 29.0.0 + jest-resolve: 29.1.2 + jest-snapshot: 29.1.2 + jest-util: 29.1.2 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /jest-snapshot/28.1.3: + /jest-snapshot/29.1.2: resolution: { - integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg== + integrity: sha512-rYFomGpVMdBlfwTYxkUp3sjD6usptvZcONFYNqVlaz4EpHPnDvlWjvmOQ9OCSNKqYZqLM2aS3wq01tWujLg7gg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@babel/core": 7.19.0 - "@babel/generator": 7.19.0 - "@babel/plugin-syntax-typescript": 7.18.6_@babel+core@7.19.0 - "@babel/traverse": 7.19.0 - "@babel/types": 7.19.0 - "@jest/expect-utils": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/babel__traverse": 7.18.1 - "@types/prettier": 2.7.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + "@babel/core": 7.19.3 + "@babel/generator": 7.19.3 + "@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.3 + "@babel/types": 7.19.3 + "@jest/expect-utils": 29.1.2 + "@jest/transform": 29.1.2 + "@jest/types": 29.1.2 + "@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: 28.1.3 + expect: 29.1.2 graceful-fs: 4.2.10 - jest-diff: 28.1.3 - jest-get-type: 28.0.2 - jest-haste-map: 28.1.3 - jest-matcher-utils: 28.1.3 - jest-message-util: 28.1.3 - jest-util: 28.1.3 + jest-diff: 29.1.2 + jest-get-type: 29.0.0 + jest-haste-map: 29.1.2 + jest-matcher-utils: 29.1.2 + jest-message-util: 29.1.2 + jest-util: 29.1.2 natural-compare: 1.4.0 - pretty-format: 28.1.3 - semver: 7.3.7 + pretty-format: 29.1.2 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true - /jest-util/28.1.3: + /jest-util/29.1.2: resolution: { - integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== + integrity: sha512-vPCk9F353i0Ymx3WQq3+a4lZ07NXu9Ca8wya6o4Fe4/aO1e1awMMprZ3woPFpKwghEOW+UXgd15vVotuNN9ONQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 chalk: 4.1.2 ci-info: 3.4.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/28.1.3: + /jest-validate/29.1.2: resolution: { - integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA== + integrity: sha512-k71pOslNlV8fVyI+mEySy2pq9KdXdgZtm7NHrBX8LghJayc3wWZH0Yr0mtYNGaCU4F1OLPXRkwZR0dBm/ClshA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 28.1.3 + "@jest/types": 29.1.2 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 28.0.2 + jest-get-type: 29.0.0 leven: 3.1.0 - pretty-format: 28.1.3 + pretty-format: 29.1.2 dev: true - /jest-watcher/28.1.3: + /jest-watcher/29.1.2: resolution: { - integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g== + integrity: sha512-6JUIUKVdAvcxC6bM8/dMgqY2N4lbT+jZVsxh0hCJRbwkIEnbr/aPjMQ28fNDI5lB51Klh00MWZZeVf27KBUj5w== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 18.7.16 + "@jest/test-result": 29.1.2 + "@jest/types": 29.1.2 + "@types/node": 18.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 - jest-util: 28.1.3 + jest-util: 29.1.2 string-length: 4.0.2 dev: true @@ -6705,7 +6799,7 @@ packages: } engines: { node: ">= 10.13.0" } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -6717,29 +6811,30 @@ packages: } engines: { node: ">= 10.13.0" } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest-worker/28.1.3: + /jest-worker/29.1.2: resolution: { - integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== + integrity: sha512-AdTZJxKjTSPHbXT/AIOjQVmoFx0LHFcVabWu0sxI7PAy7rFf8c0upyvgBKgguVXdM4vY74JdwkyD4hSmpTW8jA== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@types/node": 18.7.16 + "@types/node": 18.8.2 + jest-util: 29.1.2 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/28.1.3: + /jest/29.1.2: resolution: { - integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA== + integrity: sha512-5wEIPpCezgORnqf+rCaYD1SK+mNN7NsstWzIsuvsnrhR/hSxXWd82oI7DkrbJ+XTD28/eG8SmxdGvukrGGK6Tw== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + 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 @@ -6747,20 +6842,20 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 28.1.3 - "@jest/types": 28.1.3 + "@jest/core": 29.1.2 + "@jest/types": 29.1.2 import-local: 3.1.0 - jest-cli: 28.1.3 + jest-cli: 29.1.2 transitivePeerDependencies: - "@types/node" - supports-color - ts-node dev: true - /js-sdsl/4.1.4: + /js-sdsl/4.1.5: resolution: { - integrity: sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw== + integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== } dev: true @@ -6792,12 +6887,12 @@ packages: argparse: 2.0.1 dev: true - /jsdom/19.0.0_canvas@2.10.1: + /jsdom/20.0.1_canvas@2.10.1: resolution: { - integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A== + integrity: sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A== } - engines: { node: ">=12" } + engines: { node: ">=14" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -6806,12 +6901,12 @@ packages: dependencies: abab: 2.0.6 acorn: 8.8.0 - acorn-globals: 6.0.0 + acorn-globals: 7.0.1 canvas: 2.10.1 cssom: 0.5.0 cssstyle: 2.3.0 data-urls: 3.0.2 - decimal.js: 10.4.0 + decimal.js: 10.4.1 domexception: 4.0.0 escodegen: 2.0.0 form-data: 4.0.0 @@ -6820,17 +6915,16 @@ packages: https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.2 - parse5: 6.0.1 - saxes: 5.0.1 + parse5: 7.1.1 + saxes: 6.0.0 symbol-tree: 3.2.4 tough-cookie: 4.1.2 - w3c-hr-time: 1.0.2 w3c-xmlserializer: 3.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 - whatwg-url: 10.0.0 - ws: 8.8.1 + whatwg-url: 11.0.0 + ws: 8.9.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil @@ -7481,7 +7575,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /object.fromentries/2.0.5: @@ -7493,7 +7587,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /object.hasown/1.1.1: @@ -7503,7 +7597,7 @@ packages: } dependencies: define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /object.values/1.1.5: @@ -7515,7 +7609,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /obuf/1.1.2: @@ -7703,11 +7797,13 @@ packages: lines-and-columns: 1.2.4 dev: true - /parse5/6.0.1: + /parse5/7.1.1: resolution: { - integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg== } + dependencies: + entities: 4.4.0 dev: true /parseurl/1.3.3: @@ -7833,7 +7929,7 @@ packages: find-up: 4.1.0 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.16: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.17: resolution: { integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== @@ -7842,10 +7938,10 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.16 + postcss: 8.4.17 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.16: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.17: resolution: { integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== @@ -7854,13 +7950,13 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.16 - postcss: 8.4.16 + icss-utils: 5.1.0_postcss@8.4.17 + postcss: 8.4.17 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.16: + /postcss-modules-scope/3.0.0_postcss@8.4.17: resolution: { integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== @@ -7869,11 +7965,11 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.16 + postcss: 8.4.17 postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.16: + /postcss-modules-values/4.0.0_postcss@8.4.17: resolution: { integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== @@ -7882,8 +7978,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.16 - postcss: 8.4.16 + icss-utils: 5.1.0_postcss@8.4.17 + postcss: 8.4.17 dev: true /postcss-selector-parser/6.0.10: @@ -7904,10 +8000,10 @@ packages: } dev: true - /postcss/8.4.16: + /postcss/8.4.17: resolution: { - integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ== + integrity: sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q== } engines: { node: ^10 || ^12 || >=14 } dependencies: @@ -7963,15 +8059,14 @@ packages: react-is: 17.0.2 dev: true - /pretty-format/28.1.3: + /pretty-format/29.1.2: resolution: { - integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== + integrity: sha512-CGJ6VVGXVRP2o2Dorl4mAwwvDWT25luIsYhkyVQW32E4nL+TgW939J7LlKT/npq5Cpq6j3s+sy+13yk7xYpBmg== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/schemas": 28.1.3 - ansi-regex: 5.0.1 + "@jest/schemas": 29.0.0 ansi-styles: 5.2.0 react-is: 18.2.0 dev: true @@ -8176,10 +8271,10 @@ packages: resolve: 1.22.1 dev: true - /regenerate-unicode-properties/10.0.1: + /regenerate-unicode-properties/10.1.0: resolution: { - integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw== + integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== } engines: { node: ">=4" } dependencies: @@ -8229,32 +8324,32 @@ packages: engines: { node: ">=8" } dev: true - /regexpu-core/5.1.0: + /regexpu-core/5.2.1: resolution: { - integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA== + 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: + /regjsgen/0.7.1: resolution: { - integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA== + integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA== } dev: true - /regjsparser/0.8.4: + /regjsparser/0.9.1: resolution: { - integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA== + integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== } hasBin: true dependencies: @@ -8389,7 +8484,7 @@ packages: glob: 7.2.3 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.79.0: + /rollup-plugin-terser/7.0.2_rollup@2.79.1: resolution: { integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== @@ -8399,15 +8494,15 @@ packages: dependencies: "@babel/code-frame": 7.18.6 jest-worker: 26.6.2 - rollup: 2.79.0 + rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.15.0 + terser: 5.15.1 dev: true - /rollup-plugin-typescript2/0.32.1_ihkqvyh37tzxtjmovjyy2yrv7m: + /rollup-plugin-typescript2/0.34.1_gypgyaqhine6mwjfvh7icfhviq: resolution: { - integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw== + integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw== } peerDependencies: rollup: ">=1.26.3" @@ -8416,16 +8511,16 @@ packages: "@rollup/pluginutils": 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.1 - rollup: 2.79.0 + rollup: 2.79.1 + semver: 7.3.8 tslib: 2.4.0 - typescript: 4.8.3 + typescript: 4.8.4 dev: true - /rollup/2.79.0: + /rollup/2.79.1: resolution: { - integrity: sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA== + integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== } engines: { node: ">=10.0.0" } hasBin: true @@ -8456,6 +8551,17 @@ packages: } dev: true + /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 + dev: true + /safer-buffer/2.1.2: resolution: { @@ -8463,12 +8569,12 @@ packages: } dev: true - /saxes/5.0.1: + /saxes/6.0.0: resolution: { - integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== } - engines: { node: ">=10" } + engines: { node: ">=v12.22.7" } dependencies: xmlchars: 2.2.0 dev: true @@ -8544,10 +8650,10 @@ packages: hasBin: true dev: true - /semver/7.3.7: + /semver/7.3.8: resolution: { - integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== } engines: { node: ">=10" } hasBin: true @@ -8686,7 +8792,7 @@ packages: } dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 object-inspect: 1.12.2 dev: true @@ -8769,6 +8875,14 @@ packages: source-map: 0.6.1 dev: true + /source-map/0.5.7: + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + } + engines: { node: ">=0.10.0" } + dev: true + /source-map/0.6.1: resolution: { @@ -8873,8 +8987,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 - get-intrinsic: 1.1.2 + es-abstract: 1.20.3 + get-intrinsic: 1.1.3 has-symbols: 1.0.3 internal-slot: 1.0.3 regexp.prototype.flags: 1.4.3 @@ -8889,7 +9003,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /string.prototype.trimstart/1.0.5: @@ -8900,7 +9014,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.20.3 dev: true /string_decoder/1.1.1: @@ -9090,14 +9204,14 @@ packages: jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.15.0 + terser: 5.15.1 webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /terser/5.15.0: + /terser/5.15.1: resolution: { - integrity: sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA== + integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== } engines: { node: ">=10" } hasBin: true @@ -9207,19 +9321,19 @@ packages: escape-string-regexp: 1.0.5 dev: true - /ts-jest/28.0.8_v3rev37ob2crahnvrjq7tmikvy: + /ts-jest/29.0.3_jxje2hcbylcap4trrcwjnopnr4: resolution: { - integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg== + integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ== } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/types": ^28.0.0 - babel-jest: ^28.0.0 + "@jest/types": ^29.0.0 + babel-jest: ^29.0.0 esbuild: "*" - jest: ^28.0.0 + jest: ^29.0.0 typescript: ">=4.3" peerDependenciesMeta: "@babel/core": @@ -9231,23 +9345,23 @@ packages: esbuild: optional: true dependencies: - "@babel/core": 7.19.0 + "@babel/core": 7.19.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3 - jest-util: 28.1.3 + jest: 29.1.2 + jest-util: 29.1.2 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.8.3 + semver: 7.3.8 + typescript: 4.8.4 yargs-parser: 21.1.1 dev: true - /ts-loader/9.3.1_kb3egcnme7w23lfa5xodfjfhge: + /ts-loader/9.4.1_qqxisngxjbp7lstdk7boexbu3e: resolution: { - integrity: sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw== + integrity: sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw== } engines: { node: ">=12.0.0" } peerDependencies: @@ -9257,8 +9371,8 @@ packages: chalk: 4.1.2 enhanced-resolve: 5.10.0 micromatch: 4.0.5 - semver: 7.3.7 - typescript: 4.8.3 + semver: 7.3.8 + typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 dev: true @@ -9276,7 +9390,7 @@ packages: } dev: true - /tsutils/3.21.0_typescript@4.8.3: + /tsutils/3.21.0_typescript@4.8.4: resolution: { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== @@ -9288,7 +9402,7 @@ packages: || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" dependencies: tslib: 1.14.1 - typescript: 4.8.3 + typescript: 4.8.4 dev: true /type-check/0.3.2: @@ -9346,10 +9460,10 @@ packages: mime-types: 2.1.35 dev: true - /typescript/4.8.3: + /typescript/4.8.4: resolution: { - integrity: sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig== + integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== } engines: { node: ">=4.2.0" } hasBin: true @@ -9383,7 +9497,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: @@ -9394,10 +9508,10 @@ packages: engines: { node: ">=4" } dev: true - /unicode-property-aliases-ecmascript/2.0.0: + /unicode-property-aliases-ecmascript/2.1.0: resolution: { - integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== } engines: { node: ">=4" } dev: true @@ -9434,16 +9548,16 @@ packages: engines: { node: ">= 0.8" } dev: true - /update-browserslist-db/1.0.7_browserslist@4.21.3: + /update-browserslist-db/1.0.10_browserslist@4.21.4: resolution: { - integrity: sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg== + integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== } hasBin: true peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.21.3 + browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -9517,15 +9631,6 @@ packages: engines: { node: ">= 0.8" } dev: true - /w3c-hr-time/1.0.2: - resolution: - { - integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - } - dependencies: - browser-process-hrtime: 1.0.0 - dev: true - /w3c-xmlserializer/3.0.0: resolution: { @@ -9580,7 +9685,7 @@ packages: engines: { node: ">=12" } dev: true - /webpack-cli/4.10.0_mldmorf72vas4wjtkspcp7zl7m: + /webpack-cli/4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri: resolution: { integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w== @@ -9606,7 +9711,7 @@ 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_jlfjvoklaykqqbzdxipmerxj5e + "@webpack-cli/serve": 1.7.0_ud4agclah7rahur6ntojouq57y colorette: 2.0.19 commander: 7.2.0 cross-spawn: 7.0.3 @@ -9615,7 +9720,7 @@ packages: interpret: 2.2.0 rechoir: 0.7.1 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-dev-server: 4.11.0_5v66e2inugklgvlh4huuavolfq + webpack-dev-server: 4.11.1_5v66e2inugklgvlh4huuavolfq webpack-merge: 5.8.0 dev: true @@ -9636,10 +9741,10 @@ packages: webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /webpack-dev-server/4.11.0_5v66e2inugklgvlh4huuavolfq: + /webpack-dev-server/4.11.1_5v66e2inugklgvlh4huuavolfq: resolution: { - integrity: sha512-L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw== + integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw== } engines: { node: ">= 12.13.0" } hasBin: true @@ -9652,7 +9757,7 @@ 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.15.0 "@types/sockjs": 0.3.33 @@ -9667,7 +9772,7 @@ packages: express: 4.18.1 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 @@ -9678,9 +9783,9 @@ packages: sockjs: 0.3.24 spdy: 4.0.2 webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri webpack-dev-middleware: 5.3.3_webpack@5.74.0 - ws: 8.8.1 + ws: 8.9.0 transitivePeerDependencies: - bufferutil - debug @@ -9727,7 +9832,7 @@ packages: "@webassemblyjs/wasm-parser": 1.11.1 acorn: 8.8.0 acorn-import-assertions: 1.8.0_acorn@8.8.0 - browserslist: 4.21.3 + browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -9743,7 +9848,7 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.3.6_webpack@5.74.0 watchpack: 2.4.0 - webpack-cli: 4.10.0_mldmorf72vas4wjtkspcp7zl7m + webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri webpack-sources: 3.2.3 transitivePeerDependencies: - "@swc/core" @@ -9789,17 +9894,6 @@ packages: engines: { node: ">=12" } dev: true - /whatwg-url/10.0.0: - resolution: - { - integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w== - } - engines: { node: ">=12" } - dependencies: - tr46: 3.0.0 - webidl-conversions: 7.0.0 - dev: true - /whatwg-url/11.0.0: resolution: { @@ -9899,10 +9993,10 @@ packages: signal-exit: 3.0.7 dev: true - /ws/8.8.1: + /ws/8.9.0: resolution: { - integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== + integrity: sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg== } engines: { node: ">=10.0.0" } peerDependencies: @@ -9953,14 +10047,14 @@ packages: engines: { node: ">=12" } dev: true - /yargs/17.5.1: + /yargs/17.6.0: resolution: { - integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + 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 diff --git a/tests/exports.test.tsx b/tests/exports.test.tsx index 7229fb1..1b10a50 100644 --- a/tests/exports.test.tsx +++ b/tests/exports.test.tsx @@ -1,6 +1,6 @@ import React, { createFactory } from "react"; -import { ReactP5Wrapper, P5WrapperClassName } from "../src"; +import { P5WrapperClassName, ReactP5Wrapper } from "../src"; describe("Exports", () => { it("should export the css class name used on the wrapper", () => { From 60f41ae18d7c94d27091b61b40389f3749fc5a87 Mon Sep 17 00:00:00 2001 From: Eugene Dyko Date: Sun, 23 Oct 2022 13:41:10 +0200 Subject: [PATCH 2/3] Update dependencies --- package.json | 22 +- pnpm-lock.yaml | 2147 ++++++++++++++++++++++++++---------------------- 2 files changed, 1196 insertions(+), 973 deletions(-) diff --git a/package.json b/package.json index 61d789c..eda61d1 100644 --- a/package.json +++ b/package.json @@ -63,35 +63,35 @@ }, "dependencies": { "microdiff": "^1.3.1", - "p5": "^1.4.2" + "p5": "^1.5.0" }, "peerDependencies": { "react": ">= 17.0.2", "react-dom": ">= 17.0.2" }, "devDependencies": { - "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/core": "^7.19.6", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@testing-library/react": "^13.4.0", - "@trivago/prettier-plugin-sort-imports": "^3.3.0", - "@types/jest": "^29.1.1", + "@trivago/prettier-plugin-sort-imports": "^3.4.0", + "@types/jest": "^29.2.0", "@types/p5": "^1.4.3", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "babel-loader": "^8.2.5", "canvas": "^2.10.1", "css-loader": "^6.7.1", - "eslint": "^8.24.0", - "eslint-plugin-react": "^7.31.8", + "eslint": "^8.26.0", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "gh-pages": "^4.0.0", "html-webpack-plugin": "^5.5.0", - "jest": "^29.1.2", - "jest-environment-jsdom": "^29.1.2", + "jest": "^29.2.1", + "jest-environment-jsdom": "^29.2.1", "jest-environment-jsdom-global": "^4.0.0", "prettier": "^2.7.1", "react": "^18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 69bc117..a04246f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,31 +1,31 @@ lockfileVersion: 5.4 specifiers: - "@babel/core": ^7.19.3 - "@babel/preset-env": ^7.19.3 + "@babel/core": ^7.19.6 + "@babel/preset-env": ^7.19.4 "@babel/preset-react": ^7.18.6 "@babel/preset-typescript": ^7.18.6 "@testing-library/react": ^13.4.0 - "@trivago/prettier-plugin-sort-imports": ^3.3.0 - "@types/jest": ^29.1.1 + "@trivago/prettier-plugin-sort-imports": ^3.4.0 + "@types/jest": ^29.2.0 "@types/p5": ^1.4.3 "@types/react": ^18.0.21 "@types/react-dom": ^18.0.6 - "@typescript-eslint/eslint-plugin": ^5.39.0 - "@typescript-eslint/parser": ^5.39.0 + "@typescript-eslint/eslint-plugin": ^5.40.1 + "@typescript-eslint/parser": ^5.40.1 babel-loader: ^8.2.5 canvas: ^2.10.1 css-loader: ^6.7.1 - eslint: ^8.24.0 - eslint-plugin-react: ^7.31.8 + eslint: ^8.26.0 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 gh-pages: ^4.0.0 html-webpack-plugin: ^5.5.0 - jest: ^29.1.2 - jest-environment-jsdom: ^29.1.2 + jest: ^29.2.1 + jest-environment-jsdom: ^29.2.1 jest-environment-jsdom-global: ^4.0.0 microdiff: ^1.3.1 - p5: ^1.4.2 + p5: ^1.5.0 prettier: ^2.7.1 react: ^18.2.0 react-dom: ^18.2.0 @@ -44,32 +44,32 @@ specifiers: dependencies: microdiff: 1.3.1 - p5: 1.4.2 + p5: 1.5.0 devDependencies: - "@babel/core": 7.19.3 - "@babel/preset-env": 7.19.3_@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/core": 7.19.6 + "@babel/preset-env": 7.19.4_@babel+core@7.19.6 + "@babel/preset-react": 7.18.6_@babel+core@7.19.6 + "@babel/preset-typescript": 7.18.6_@babel+core@7.19.6 "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@trivago/prettier-plugin-sort-imports": 3.3.0_prettier@2.7.1 - "@types/jest": 29.1.1 + "@trivago/prettier-plugin-sort-imports": 3.4.0_prettier@2.7.1 + "@types/jest": 29.2.0 "@types/p5": 1.4.3 "@types/react": 18.0.21 "@types/react-dom": 18.0.6 - "@typescript-eslint/eslint-plugin": 5.39.0_xyciw6oqjoiiono4dhv3uhn5my - "@typescript-eslint/parser": 5.39.0_ypn2ylkkyfa5i233caldtndbqa - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + "@typescript-eslint/eslint-plugin": 5.40.1_c4zyna56jjjrggqkyejnaxjxfu + "@typescript-eslint/parser": 5.40.1_wyqvi574yv7oiwfeinomdzmc3m + babel-loader: 8.2.5_6zc4kxld457avlfyhj3lzsljlm canvas: 2.10.1 css-loader: 6.7.1_webpack@5.74.0 - eslint: 8.24.0 - eslint-plugin-react: 7.31.8_eslint@8.24.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.24.0 + eslint: 8.26.0 + eslint-plugin-react: 7.31.10_eslint@8.26.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.26.0 gh-pages: 4.0.0 html-webpack-plugin: 5.5.0_webpack@5.74.0 - jest: 29.1.2 - jest-environment-jsdom: 29.1.2_canvas@2.10.1 - jest-environment-jsdom-global: 4.0.0_eehccwu7remqurin73gq6ugqky + jest: 29.2.1 + jest-environment-jsdom: 29.2.1_canvas@2.10.1 + jest-environment-jsdom-global: 4.0.0_5ima6gnz64d6jcy7ttjhwx5jle prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -78,7 +78,7 @@ devDependencies: rollup-plugin-terser: 7.0.2_rollup@2.79.1 rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq style-loader: 3.3.1_webpack@5.74.0 - ts-jest: 29.0.3_jxje2hcbylcap4trrcwjnopnr4 + ts-jest: 29.0.3_hx3pnmlivexg2zscxcsqm4rf7i ts-loader: 9.4.1_qqxisngxjbp7lstdk7boexbu3e tslib: 2.4.0 typescript: 4.8.4 @@ -95,7 +95,7 @@ packages: engines: { node: ">=6.0.0" } dependencies: "@jridgewell/gen-mapping": 0.1.1 - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 dev: true /@babel/code-frame/7.18.6: @@ -108,10 +108,10 @@ packages: "@babel/highlight": 7.18.6 dev: true - /@babel/compat-data/7.19.3: + /@babel/compat-data/7.19.4: resolution: { - integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw== + integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw== } engines: { node: ">=6.9.0" } dev: true @@ -127,13 +127,13 @@ packages: "@babel/code-frame": 7.18.6 "@babel/generator": 7.17.7 "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.17.8 - "@babel/helper-module-transforms": 7.19.0 - "@babel/helpers": 7.19.0 - "@babel/parser": 7.17.8 + "@babel/helper-module-transforms": 7.19.6 + "@babel/helpers": 7.19.4 + "@babel/parser": 7.18.9 "@babel/template": 7.18.10 "@babel/traverse": 7.17.3 "@babel/types": 7.17.0 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -142,24 +142,24 @@ packages: - supports-color dev: true - /@babel/core/7.19.3: + /@babel/core/7.19.6: resolution: { - integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ== + integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== } engines: { node: ">=6.9.0" } dependencies: "@ampproject/remapping": 2.2.0 "@babel/code-frame": 7.18.6 - "@babel/generator": 7.19.3 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 - "@babel/helper-module-transforms": 7.19.0 - "@babel/helpers": 7.19.0 - "@babel/parser": 7.19.3 + "@babel/generator": 7.19.6 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 + "@babel/helper-module-transforms": 7.19.6 + "@babel/helpers": 7.19.4 + "@babel/parser": 7.19.6 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.3 - "@babel/types": 7.19.3 - convert-source-map: 1.8.0 + "@babel/traverse": 7.19.6 + "@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 @@ -180,14 +180,14 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator/7.19.3: + /@babel/generator/7.19.6: resolution: { - integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ== + integrity: sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 dev: true @@ -199,7 +199,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: @@ -210,7 +210,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/helper-explode-assignable-expression": 7.18.6 - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-compilation-targets/7.19.3_@babel+core@7.17.8: @@ -222,14 +222,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/compat-data": 7.19.3 + "@babel/compat-data": 7.19.4 "@babel/core": 7.17.8 "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.6: resolution: { integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== @@ -238,14 +238,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/compat-data": 7.19.3 - "@babel/core": 7.19.3 + "@babel/compat-data": 7.19.4 + "@babel/core": 7.19.6 "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.6: resolution: { integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== @@ -254,7 +254,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-function-name": 7.19.0 @@ -266,7 +266,7 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.3: + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.6: resolution: { integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== @@ -275,12 +275,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 regexpu-core: 5.2.1 dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.3: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.6: resolution: { integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== @@ -288,8 +288,8 @@ packages: peerDependencies: "@babel/core": ^7.4.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -314,7 +314,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-function-name/7.19.0: @@ -325,7 +325,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.18.10 - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-hoist-variables/7.18.6: @@ -335,7 +335,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-member-expression-to-functions/7.18.9: @@ -345,7 +345,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-module-imports/7.18.6: @@ -355,24 +355,24 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true - /@babel/helper-module-transforms/7.19.0: + /@babel/helper-module-transforms/7.19.6: resolution: { - integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ== + integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== } 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.19.1 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.3 - "@babel/types": 7.19.3 + "@babel/traverse": 7.19.6 + "@babel/types": 7.19.4 transitivePeerDependencies: - supports-color dev: true @@ -384,7 +384,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-plugin-utils/7.19.0: @@ -395,7 +395,7 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.3: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== @@ -404,11 +404,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-wrap-function": 7.19.0 - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 transitivePeerDependencies: - supports-color dev: true @@ -423,20 +423,20 @@ packages: "@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.19.3 - "@babel/types": 7.19.3 + "@babel/traverse": 7.19.6 + "@babel/types": 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.18.6: + /@babel/helper-simple-access/7.19.4: resolution: { - integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== + integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.18.9: @@ -446,7 +446,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@babel/helper-split-export-declaration/7.18.6: @@ -456,13 +456,13 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true - /@babel/helper-string-parser/7.18.10: + /@babel/helper-string-parser/7.19.4: resolution: { - integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== + integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== } engines: { node: ">=6.9.0" } dev: true @@ -492,22 +492,22 @@ packages: dependencies: "@babel/helper-function-name": 7.19.0 "@babel/template": 7.18.10 - "@babel/traverse": 7.19.3 - "@babel/types": 7.19.3 + "@babel/traverse": 7.19.6 + "@babel/types": 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.19.0: + /@babel/helpers/7.19.4: resolution: { - integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg== + integrity: sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw== } engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.18.10 - "@babel/traverse": 7.19.3 - "@babel/types": 7.19.3 + "@babel/traverse": 7.19.6 + "@babel/types": 7.19.4 transitivePeerDependencies: - supports-color dev: true @@ -524,10 +524,10 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.17.8: + /@babel/parser/7.18.9: resolution: { - integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ== + integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg== } engines: { node: ">=6.0.0" } hasBin: true @@ -535,18 +535,18 @@ packages: "@babel/types": 7.17.0 dev: true - /@babel/parser/7.19.3: + /@babel/parser/7.19.6: resolution: { - integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ== + integrity: sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA== } engines: { node: ">=6.0.0" } hasBin: true dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.3: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== @@ -555,11 +555,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.3: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== @@ -568,13 +568,13 @@ packages: peerDependencies: "@babel/core": ^7.13.0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.19.3 + "@babel/plugin-proposal-optional-chaining": 7.18.9_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.3: + /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.6: resolution: { integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== @@ -583,16 +583,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-environment-visitor": 7.18.9 "@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 + "@babel/helper-remap-async-to-generator": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -601,14 +601,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== @@ -617,15 +617,15 @@ packages: peerDependencies: "@babel/core": ^7.12.0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.19.3 + "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== @@ -634,12 +634,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.3 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.3: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== @@ -648,12 +648,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.19.3 + "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== @@ -662,12 +662,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.3 + "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.3: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== @@ -676,12 +676,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.3 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -690,12 +690,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.3 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== @@ -704,29 +704,29 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.3 + "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.3: + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.6: resolution: { - integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== + integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.3 - "@babel/core": 7.19.3 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/compat-data": 7.19.4 + "@babel/core": 7.19.6 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 "@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 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== @@ -735,12 +735,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.3 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.3: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== @@ -749,13 +749,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.19.3 + "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.19.6 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== @@ -764,14 +764,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.6 "@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.19.3: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== @@ -780,16 +780,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.19.3 + "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== @@ -798,12 +798,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.6: resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== @@ -811,11 +811,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== @@ -823,11 +823,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.6: resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== @@ -835,11 +835,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.3: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.6: resolution: { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== @@ -848,11 +848,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== @@ -860,11 +860,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== @@ -872,11 +872,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== @@ -885,11 +885,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.3: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.6: resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -897,11 +897,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== @@ -909,11 +909,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== @@ -922,11 +922,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.6: resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -934,11 +934,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== @@ -946,11 +946,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.6: resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -958,11 +958,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== @@ -970,11 +970,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== @@ -982,11 +982,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.6: resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== @@ -994,11 +994,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.3: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.6: resolution: { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== @@ -1007,11 +1007,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.6: resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== @@ -1020,11 +1020,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== @@ -1033,11 +1033,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== @@ -1046,11 +1046,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== @@ -1059,15 +1059,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-module-imports": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-remap-async-to-generator": 7.18.9_@babel+core@7.19.3 + "@babel/helper-remap-async-to-generator": 7.18.9_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== @@ -1076,24 +1076,24 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.6: resolution: { - integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== + integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.6: resolution: { integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== @@ -1102,9 +1102,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-function-name": 7.19.0 "@babel/helper-optimise-call-expression": 7.18.6 @@ -1116,7 +1116,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== @@ -1125,24 +1125,24 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.3: + /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.6: resolution: { - integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow== + integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== @@ -1151,12 +1151,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== @@ -1165,11 +1165,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== @@ -1178,12 +1178,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-builder-binary-assignment-operator-visitor": 7.18.9 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.6: resolution: { integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== @@ -1192,11 +1192,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== @@ -1205,13 +1205,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 "@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.19.3: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== @@ -1220,11 +1220,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== @@ -1233,65 +1233,62 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.19.6: resolution: { - integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== + integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-module-transforms": 7.19.0 + "@babel/core": 7.19.6 + "@babel/helper-module-transforms": 7.19.6 "@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.19.3: + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.19.6: resolution: { - integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== + integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-module-transforms": 7.19.0 + "@babel/core": 7.19.6 + "@babel/helper-module-transforms": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/helper-simple-access": 7.18.6 - babel-plugin-dynamic-import-node: 2.3.3 + "@babel/helper-simple-access": 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.19.6: resolution: { - integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A== + integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-hoist-variables": 7.18.6 - "@babel/helper-module-transforms": 7.19.0 + "@babel/helper-module-transforms": 7.19.6 "@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.19.3: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== @@ -1300,14 +1297,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-module-transforms": 7.19.0 + "@babel/core": 7.19.6 + "@babel/helper-module-transforms": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.3: + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.6: resolution: { integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== @@ -1316,12 +1313,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== @@ -1330,11 +1327,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== @@ -1343,14 +1340,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 "@babel/helper-replace-supers": 7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.6: resolution: { integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== @@ -1359,11 +1356,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== @@ -1372,11 +1369,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== @@ -1385,11 +1382,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== @@ -1398,11 +1395,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.19.6 dev: true - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.6: resolution: { integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== @@ -1411,15 +1408,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-module-imports": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.19.3 - "@babel/types": 7.19.3 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.19.6 + "@babel/types": 7.19.4 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== @@ -1428,12 +1425,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== @@ -1442,12 +1439,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.19.3: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== @@ -1456,11 +1453,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== @@ -1469,11 +1466,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.6: resolution: { integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== @@ -1482,12 +1479,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.19.3: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== @@ -1496,11 +1493,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== @@ -1509,11 +1506,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.6: resolution: { integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== @@ -1522,11 +1519,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.3: + /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.6: resolution: { integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w== @@ -1535,15 +1532,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-class-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 - "@babel/plugin-syntax-typescript": 7.18.6_@babel+core@7.19.3 + "@babel/plugin-syntax-typescript": 7.18.6_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.3: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.6: resolution: { integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== @@ -1552,11 +1549,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== @@ -1565,101 +1562,101 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-create-regexp-features-plugin": 7.19.0_@babel+core@7.19.6 "@babel/helper-plugin-utils": 7.19.0 dev: true - /@babel/preset-env/7.19.3_@babel+core@7.19.3: + /@babel/preset-env/7.19.4_@babel+core@7.19.6: resolution: { - integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w== + integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.3 - "@babel/core": 7.19.3 - "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.3 + "@babel/compat-data": 7.19.4 + "@babel/core": 7.19.6 + "@babel/helper-compilation-targets": 7.19.3_@babel+core@7.19.6 "@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.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.18.9_@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.18.9_@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.18.13_@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.3 - 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 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-proposal-async-generator-functions": 7.19.1_@babel+core@7.19.6 + "@babel/plugin-proposal-class-properties": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-class-static-block": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-dynamic-import": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-export-namespace-from": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-proposal-json-strings": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-logical-assignment-operators": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-numeric-separator": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-object-rest-spread": 7.19.4_@babel+core@7.19.6 + "@babel/plugin-proposal-optional-catch-binding": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-optional-chaining": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-proposal-private-methods": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-private-property-in-object": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-proposal-unicode-property-regex": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.19.6 + "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.19.6 + "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.19.6 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-import-assertions": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.6 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.6 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.19.6 + "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.19.6 + "@babel/plugin-transform-arrow-functions": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-async-to-generator": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-block-scoped-functions": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-block-scoping": 7.19.4_@babel+core@7.19.6 + "@babel/plugin-transform-classes": 7.19.0_@babel+core@7.19.6 + "@babel/plugin-transform-computed-properties": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-destructuring": 7.19.4_@babel+core@7.19.6 + "@babel/plugin-transform-dotall-regex": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-duplicate-keys": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-exponentiation-operator": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-for-of": 7.18.8_@babel+core@7.19.6 + "@babel/plugin-transform-function-name": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-literals": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-member-expression-literals": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-modules-amd": 7.19.6_@babel+core@7.19.6 + "@babel/plugin-transform-modules-commonjs": 7.19.6_@babel+core@7.19.6 + "@babel/plugin-transform-modules-systemjs": 7.19.6_@babel+core@7.19.6 + "@babel/plugin-transform-modules-umd": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-named-capturing-groups-regex": 7.19.1_@babel+core@7.19.6 + "@babel/plugin-transform-new-target": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-object-super": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-parameters": 7.18.8_@babel+core@7.19.6 + "@babel/plugin-transform-property-literals": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-regenerator": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-reserved-words": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-shorthand-properties": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-spread": 7.19.0_@babel+core@7.19.6 + "@babel/plugin-transform-sticky-regex": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-template-literals": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-typeof-symbol": 7.18.9_@babel+core@7.19.6 + "@babel/plugin-transform-unicode-escapes": 7.18.10_@babel+core@7.19.6 + "@babel/plugin-transform-unicode-regex": 7.18.6_@babel+core@7.19.6 + "@babel/preset-modules": 0.1.5_@babel+core@7.19.6 + "@babel/types": 7.19.4 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.6 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.6 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.6 core-js-compat: 3.25.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.19.3: + /@babel/preset-modules/0.1.5_@babel+core@7.19.6: resolution: { integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== @@ -1667,15 +1664,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.3 + "@babel/plugin-proposal-unicode-property-regex": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-dotall-regex": 7.18.6_@babel+core@7.19.6 + "@babel/types": 7.19.4 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.19.3: + /@babel/preset-react/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== @@ -1684,16 +1681,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@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.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 + "@babel/plugin-transform-react-display-name": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.19.6 + "@babel/plugin-transform-react-jsx-development": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-transform-react-pure-annotations": 7.18.6_@babel+core@7.19.6 dev: true - /@babel/preset-typescript/7.18.6_@babel+core@7.19.3: + /@babel/preset-typescript/7.18.6_@babel+core@7.19.6: resolution: { integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== @@ -1702,22 +1699,22 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 "@babel/helper-plugin-utils": 7.19.0 "@babel/helper-validator-option": 7.18.6 - "@babel/plugin-transform-typescript": 7.19.3_@babel+core@7.19.3 + "@babel/plugin-transform-typescript": 7.19.3_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /@babel/runtime/7.19.0: + /@babel/runtime/7.19.4: resolution: { - integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== + integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== } engines: { node: ">=6.9.0" } dependencies: - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true /@babel/template/7.18.10: @@ -1728,8 +1725,8 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.18.6 - "@babel/parser": 7.19.3 - "@babel/types": 7.19.3 + "@babel/parser": 7.19.6 + "@babel/types": 7.19.4 dev: true /@babel/traverse/7.17.3: @@ -1745,7 +1742,7 @@ packages: "@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.17.8 + "@babel/parser": 7.18.9 "@babel/types": 7.17.0 debug: 4.3.4 globals: 11.12.0 @@ -1753,21 +1750,21 @@ packages: - supports-color dev: true - /@babel/traverse/7.19.3: + /@babel/traverse/7.19.6: resolution: { - integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ== + integrity: sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ== } engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.18.6 - "@babel/generator": 7.19.3 + "@babel/generator": 7.19.6 "@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.19.3 - "@babel/types": 7.19.3 + "@babel/parser": 7.19.6 + "@babel/types": 7.19.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -1785,14 +1782,14 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.19.3: + /@babel/types/7.19.4: resolution: { - integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw== + integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw== } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-string-parser": 7.18.10 + "@babel/helper-string-parser": 7.19.4 "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 dev: true @@ -1812,10 +1809,10 @@ packages: engines: { node: ">=10.0.0" } dev: true - /@eslint/eslintrc/1.3.2: + /@eslint/eslintrc/1.3.3: resolution: { - integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ== + integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: @@ -1832,10 +1829,10 @@ packages: - supports-color dev: true - /@humanwhocodes/config-array/0.10.7: + /@humanwhocodes/config-array/0.11.6: resolution: { - integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w== + integrity: sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg== } engines: { node: ">=10.10.0" } dependencies: @@ -1846,13 +1843,6 @@ packages: - supports-color dev: true - /@humanwhocodes/gitignore-to-minimatch/1.0.2: - resolution: - { - integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA== - } - dev: true - /@humanwhocodes/module-importer/1.0.1: resolution: { @@ -1890,25 +1880,25 @@ packages: engines: { node: ">=8" } dev: true - /@jest/console/29.1.2: + /@jest/console/29.2.1: resolution: { - integrity: sha512-ujEBCcYs82BTmRxqfHMQggSlkUZP63AE5YEaTPj7eFyJOzukkTorstOUC7L6nE3w5SYadGVAnTsQ/ZjTGL0qYQ== + integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 chalk: 4.1.2 - jest-message-util: 29.1.2 - jest-util: 29.1.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 slash: 3.0.0 dev: true - /@jest/core/29.1.2: + /@jest/core/29.2.1: resolution: { - integrity: sha512-sCO2Va1gikvQU2ynDN8V4+6wB7iVrD2CvT0zaRst4rglf56yLly0NQ9nuRRAWFeimRf+tCdFsb1Vk1N9LrrMPA== + integrity: sha512-kuLKYqnqgerXkBUwlHVxeSuhSnd+JMnMCLfU98bpacBSfWEJPegytDh3P2m15/JHzet32hGGld4KR4OzMb6/Tg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: @@ -1917,32 +1907,32 @@ packages: node-notifier: optional: true dependencies: - "@jest/console": 29.1.2 - "@jest/reporters": 29.1.2 - "@jest/test-result": 29.1.2 - "@jest/transform": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/console": 29.2.1 + "@jest/reporters": 29.2.1 + "@jest/test-result": 29.2.1 + "@jest/transform": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.4.0 + ci-info: 3.5.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 29.0.0 - jest-config: 29.1.2_@types+node@18.8.2 - jest-haste-map: 29.1.2 - jest-message-util: 29.1.2 - jest-regex-util: 29.0.0 - jest-resolve: 29.1.2 - jest-resolve-dependencies: 29.1.2 - jest-runner: 29.1.2 - jest-runtime: 29.1.2 - jest-snapshot: 29.1.2 - jest-util: 29.1.2 - jest-validate: 29.1.2 - jest-watcher: 29.1.2 + jest-changed-files: 29.2.0 + jest-config: 29.2.1_@types+node@18.11.3 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.1 + jest-resolve-dependencies: 29.2.1 + jest-runner: 29.2.1 + jest-runtime: 29.2.1 + jest-snapshot: 29.2.1 + jest-util: 29.2.1 + jest-validate: 29.2.1 + jest-watcher: 29.2.1 micromatch: 4.0.5 - pretty-format: 29.1.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -1950,76 +1940,76 @@ packages: - ts-node dev: true - /@jest/environment/29.1.2: + /@jest/environment/29.2.1: resolution: { - integrity: sha512-rG7xZ2UeOfvOVzoLIJ0ZmvPl4tBEQ2n73CZJSlzUjPw4or1oSWC0s0Rk0ZX+pIBJ04aVr6hLWFn1DFtrnf8MhQ== + integrity: sha512-EutqA7T/X6zFjw6mAWRHND+ZkTPklmIEWCNbmwX6uCmOrFrWaLbDZjA+gePHJx6fFMMRvNfjXcvzXEtz54KPlg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/fake-timers": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 - jest-mock: 29.1.2 + "@jest/fake-timers": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 + jest-mock: 29.2.1 dev: true - /@jest/expect-utils/29.1.2: + /@jest/expect-utils/29.2.1: resolution: { - integrity: sha512-4a48bhKfGj/KAH39u0ppzNTABXQ8QPccWAFUFobWBaEMSMp+sB31Z2fK/l47c4a/Mu1po2ffmfAIPxXbVTXdtg== + integrity: sha512-yr4aHNg5Z1CjKby5ozm7sKjgBlCOorlAoFcvrOQ/4rbZRfgZQdnmh7cth192PYIgiPZo2bBXvqdOApnAMWFJZg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-get-type: 29.0.0 + jest-get-type: 29.2.0 dev: true - /@jest/expect/29.1.2: + /@jest/expect/29.2.1: resolution: { - integrity: sha512-FXw/UmaZsyfRyvZw3M6POgSNqwmuOXJuzdNiMWW9LCYo0GRoRDhg+R5iq5higmRTHQY7hx32+j7WHwinRmoILQ== + integrity: sha512-o14R2t2tHHHudwji43UKkzmmH49xfF5T++FQBK2tl88qwuBWQOcx7fNUYl+mA/9TPNAN0FkQ3usnpyS8FUwsvQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - expect: 29.1.2 - jest-snapshot: 29.1.2 + expect: 29.2.1 + jest-snapshot: 29.2.1 transitivePeerDependencies: - supports-color dev: true - /@jest/fake-timers/29.1.2: + /@jest/fake-timers/29.2.1: resolution: { - integrity: sha512-GppaEqS+QQYegedxVMpCe2xCXxxeYwQ7RsNx55zc8f+1q1qevkZGKequfTASI7ejmg9WwI+SJCrHe9X11bLL9Q== + integrity: sha512-KWil+8fef7Uj/P/PTZlPKk1Pw117wAmr71VWFV8ZDtRtkwmTG8oY4IRf0Ss44J2y5CYRy8d/zLOhxyoGRENjvA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 + "@jest/types": 29.2.1 "@sinonjs/fake-timers": 9.1.2 - "@types/node": 18.8.2 - jest-message-util: 29.1.2 - jest-mock: 29.1.2 - jest-util: 29.1.2 + "@types/node": 18.11.3 + jest-message-util: 29.2.1 + jest-mock: 29.2.1 + jest-util: 29.2.1 dev: true - /@jest/globals/29.1.2: + /@jest/globals/29.2.1: resolution: { - integrity: sha512-uMgfERpJYoQmykAd0ffyMq8wignN4SvLUG6orJQRe9WAlTRc9cdpCaE/29qurXixYJVZWUqIBXhSk8v5xN1V9g== + integrity: sha512-Z4EejYPP1OPVq2abk1+9urAwJqkgw5jB2UJGlPjb5ZwzPQF8WLMcigKEfFzZb2OHhEVPP0RZD0/DbVTY1R6iQA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 29.1.2 - "@jest/expect": 29.1.2 - "@jest/types": 29.1.2 - jest-mock: 29.1.2 + "@jest/environment": 29.2.1 + "@jest/expect": 29.2.1 + "@jest/types": 29.2.1 + jest-mock: 29.2.1 transitivePeerDependencies: - supports-color dev: true - /@jest/reporters/29.1.2: + /@jest/reporters/29.2.1: resolution: { - integrity: sha512-X4fiwwyxy9mnfpxL0g9DD0KcTmEIqP0jUdnc2cfa9riHy+I6Gwwp5vOZiwyg0vZxfSDxrOlK9S4+340W4d+DAA== + integrity: sha512-sCsfUKM/yIF4nNed3e/rIgVIS58EiASGMDEPWqItfLZ9UO1ALW2ASDNJzdWkxEt0T8o2Ztj619G0KKrvK+McAw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: @@ -2029,12 +2019,12 @@ packages: optional: true dependencies: "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.1.2 - "@jest/test-result": 29.1.2 - "@jest/transform": 29.1.2 - "@jest/types": 29.1.2 - "@jridgewell/trace-mapping": 0.3.15 - "@types/node": 18.8.2 + "@jest/console": 29.2.1 + "@jest/test-result": 29.2.1 + "@jest/transform": 29.2.1 + "@jest/types": 29.2.1 + "@jridgewell/trace-mapping": 0.3.17 + "@types/node": 18.11.3 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -2045,13 +2035,12 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 - jest-message-util: 29.1.2 - jest-util: 29.1.2 - jest-worker: 29.1.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 + jest-worker: 29.2.1 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - terminal-link: 2.1.1 v8-to-istanbul: 9.0.1 transitivePeerDependencies: - supports-color @@ -2064,65 +2053,65 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@sinclair/typebox": 0.24.44 + "@sinclair/typebox": 0.24.50 dev: true - /@jest/source-map/29.0.0: + /@jest/source-map/29.2.0: resolution: { - integrity: sha512-nOr+0EM8GiHf34mq2GcJyz/gYFyLQ2INDhAylrZJ9mMWoW21mLBfZa0BUVPPMxVYrLjeiRe2Z7kWXOGnS0TFhQ== + integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true - /@jest/test-result/29.1.2: + /@jest/test-result/29.2.1: resolution: { - integrity: sha512-jjYYjjumCJjH9hHCoMhA8PCl1OxNeGgAoZ7yuGYILRJX9NjgzTN0pCT5qAoYR4jfOP8htIByvAlz9vfNSSBoVg== + integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/console": 29.1.2 - "@jest/types": 29.1.2 + "@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/29.1.2: + /@jest/test-sequencer/29.2.1: resolution: { - integrity: sha512-fU6dsUqqm8sA+cd85BmeF7Gu9DsXVWFdGn9taxM6xN1cKdcP/ivSgXh5QucFRFz1oZxKv3/9DYYbq0ULly3P/Q== + integrity: sha512-O/pnk0/xGj3lxPVNwB6HREJ7AYvUdyP2xo/s14/9Dtf091HoOeyIhWLKQE/4HzB8lNQBMo6J5mg0bHz/uCWK7w== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/test-result": 29.1.2 + "@jest/test-result": 29.2.1 graceful-fs: 4.2.10 - jest-haste-map: 29.1.2 + jest-haste-map: 29.2.1 slash: 3.0.0 dev: true - /@jest/transform/29.1.2: + /@jest/transform/29.2.1: resolution: { - integrity: sha512-2uaUuVHTitmkx1tHF+eBjb4p7UuzBG7SXIaA/hNIkaMP6K+gXYGxP38ZcrofzqN0HeZ7A90oqsOa97WU7WZkSw== + integrity: sha512-xup+iEuaIRSQabQaeqxaQyN0vg1Dctrp9oTObQsNf3sZEowTIa5cANYuoyi8Tqhg4GCqEVLTf18KW7ii0UeFVA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@babel/core": 7.19.3 - "@jest/types": 29.1.2 - "@jridgewell/trace-mapping": 0.3.15 + "@babel/core": 7.19.6 + "@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: 29.1.2 - jest-regex-util: 29.0.0 - jest-util: 29.1.2 + 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 @@ -2131,17 +2120,17 @@ packages: - supports-color dev: true - /@jest/types/29.1.2: + /@jest/types/29.2.1: resolution: { - integrity: sha512-DcXGtoTykQB5jiwCmVr8H4vdg2OJhQex3qPkG+ISyDO7xQXbt/4R6dowcRyPemRnkH7JoHvZuxPBdlq+9JxFCg== + 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.8.2 + "@types/node": 18.11.3 "@types/yargs": 17.0.13 chalk: 4.1.2 dev: true @@ -2166,7 +2155,7 @@ packages: dependencies: "@jridgewell/set-array": 1.1.2 "@jridgewell/sourcemap-codec": 1.4.14 - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 dev: true /@jridgewell/resolve-uri/3.1.0: @@ -2192,7 +2181,7 @@ packages: } dependencies: "@jridgewell/gen-mapping": 0.3.2 - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 dev: true /@jridgewell/sourcemap-codec/1.4.14: @@ -2202,10 +2191,10 @@ packages: } dev: true - /@jridgewell/trace-mapping/0.3.15: + /@jridgewell/trace-mapping/0.3.17: resolution: { - integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== + integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== } dependencies: "@jridgewell/resolve-uri": 3.1.0 @@ -2281,10 +2270,10 @@ packages: picomatch: 2.3.1 dev: true - /@sinclair/typebox/0.24.44: + /@sinclair/typebox/0.24.50: resolution: { - integrity: sha512-ka0W0KN5i6LfrSocduwliMMpqVgohtPFidKdMEOUjoOFCHcOOYkKsPRxfs5f15oPNHTm6ERAm0GV/+/LTKeiWg== + integrity: sha512-k8ETQOOQDg5FtK7y9KJWpsGLik+QlPmIi8zzl/dGUgshV2QitprkFlCR/AemjWOTyKn9UwSSGRTzLVotvgCjYQ== } dev: true @@ -2306,17 +2295,17 @@ packages: "@sinonjs/commons": 1.8.3 dev: true - /@testing-library/dom/8.18.1: + /@testing-library/dom/8.19.0: resolution: { - integrity: sha512-oEvsm2B/WtcHKE+IcEeeCqNU/ltFGaVyGbpcm4g/2ytuT49jrlH9x5qRKL/H3A6yfM4YAbSbC0ceT5+9CEXnLg== + integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A== } engines: { node: ">=12" } dependencies: "@babel/code-frame": 7.18.6 - "@babel/runtime": 7.19.0 + "@babel/runtime": 7.19.4 "@types/aria-query": 4.2.2 - aria-query: 5.0.2 + aria-query: 5.1.1 chalk: 4.1.2 dom-accessibility-api: 0.5.14 lz-string: 1.4.4 @@ -2333,8 +2322,8 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - "@babel/runtime": 7.19.0 - "@testing-library/dom": 8.18.1 + "@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 @@ -2348,19 +2337,20 @@ packages: engines: { node: ">= 10" } dev: true - /@trivago/prettier-plugin-sort-imports/3.3.0_prettier@2.7.1: + /@trivago/prettier-plugin-sort-imports/3.4.0_prettier@2.7.1: resolution: { - integrity: sha512-1y44bVZuIN0RsS3oIiGd5k8Vm3IZXYZnp4VsP2Z/S5L9WAOw43HE2clso66M2S/dDeJ+8sKPqnHsEfh39Vjs3w== + integrity: sha512-485Iailw8X5f7KetzRka20RF1kPBEINR5LJMNwlBZWY1gRAlVnv5dZzyNPnLxSP0Qcia8HETa9Cdd8LlX9o+pg== } peerDependencies: prettier: 2.x dependencies: "@babel/core": 7.17.8 "@babel/generator": 7.17.7 - "@babel/parser": 7.17.8 + "@babel/parser": 7.18.9 "@babel/traverse": 7.17.3 "@babel/types": 7.17.0 + "@vue/compiler-sfc": 3.2.41 javascript-natural-sort: 0.7.1 lodash: 4.17.21 prettier: 2.7.1 @@ -2381,8 +2371,8 @@ packages: integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== } dependencies: - "@babel/parser": 7.19.3 - "@babel/types": 7.19.3 + "@babel/parser": 7.19.6 + "@babel/types": 7.19.4 "@types/babel__generator": 7.6.4 "@types/babel__template": 7.4.1 "@types/babel__traverse": 7.18.2 @@ -2394,7 +2384,7 @@ packages: integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@types/babel__template/7.4.1: @@ -2403,8 +2393,8 @@ packages: integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== } dependencies: - "@babel/parser": 7.19.3 - "@babel/types": 7.19.3 + "@babel/parser": 7.19.6 + "@babel/types": 7.19.4 dev: true /@types/babel__traverse/7.18.2: @@ -2413,7 +2403,7 @@ packages: integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== } dependencies: - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 dev: true /@types/body-parser/1.19.2: @@ -2423,7 +2413,7 @@ packages: } dependencies: "@types/connect": 3.4.35 - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/bonjour/3.5.10: @@ -2432,7 +2422,7 @@ packages: integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/connect-history-api-fallback/1.3.5: @@ -2442,7 +2432,7 @@ packages: } dependencies: "@types/express-serve-static-core": 4.17.31 - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/connect/3.4.35: @@ -2451,7 +2441,7 @@ packages: integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/eslint-scope/3.7.4: @@ -2460,14 +2450,14 @@ packages: integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== } dependencies: - "@types/eslint": 8.4.6 + "@types/eslint": 8.4.7 "@types/estree": 0.0.51 dev: true - /@types/eslint/8.4.6: + /@types/eslint/8.4.7: resolution: { - integrity: sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g== + integrity: sha512-ehM7cCt2RSFs42mb+lcmhFT9ouIlV92PuaeRGn8N8c98oMjG4Z5pJHA9b1QiCcuqnbPSHcyfiD3mlhqMaHsQIw== } dependencies: "@types/estree": 0.0.51 @@ -2487,7 +2477,7 @@ packages: integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 "@types/qs": 6.9.7 "@types/range-parser": 1.2.4 dev: true @@ -2510,7 +2500,7 @@ packages: integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/html-minifier-terser/6.1.0: @@ -2526,7 +2516,7 @@ packages: integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/istanbul-lib-coverage/2.0.4: @@ -2554,14 +2544,14 @@ packages: "@types/istanbul-lib-report": 3.0.0 dev: true - /@types/jest/29.1.1: + /@types/jest/29.2.0: resolution: { - integrity: sha512-U9Ey07dGWl6fUFaIaUQUKWG5NoKi/zizeVQCGV8s4nSU0jPgqphVZvS64+8BtWYvrc3ZGw6wo943NSYPxkrp/g== + integrity: sha512-KO7bPV21d65PKwv3LLsD8Jn3E05pjNjRZvkm+YTacWhVmykAb07wW6IkZUmQAltwQafNcDUEUrMO2h3jeBSisg== } dependencies: - expect: 29.1.2 - pretty-format: 29.1.2 + expect: 29.2.1 + pretty-format: 29.2.1 dev: true /@types/jsdom/20.0.0: @@ -2570,7 +2560,7 @@ packages: integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 "@types/tough-cookie": 4.0.2 parse5: 7.1.1 dev: true @@ -2589,10 +2579,10 @@ packages: } dev: true - /@types/node/18.8.2: + /@types/node/18.11.3: resolution: { - integrity: sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA== + integrity: sha512-fNjDQzzOsZeKZu5NATgXUPsaFaTxeRgFXoosrHivTl8RGeV733OLawXsGfEk9a8/tySyZUyiZ6E8LcjPFZ2y1A== } dev: true @@ -2665,6 +2655,13 @@ packages: } dev: true + /@types/semver/7.3.12: + resolution: + { + integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A== + } + dev: true + /@types/serve-index/1.9.1: resolution: { @@ -2681,7 +2678,7 @@ packages: } dependencies: "@types/mime": 3.0.1 - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/sockjs/0.3.33: @@ -2690,7 +2687,7 @@ packages: integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/stack-utils/2.0.1: @@ -2713,7 +2710,7 @@ packages: integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 dev: true /@types/yargs-parser/21.0.0: @@ -2732,10 +2729,10 @@ packages: "@types/yargs-parser": 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.39.0_xyciw6oqjoiiono4dhv3uhn5my: + /@typescript-eslint/eslint-plugin/5.40.1_c4zyna56jjjrggqkyejnaxjxfu: resolution: { - integrity: sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A== + integrity: sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2746,12 +2743,12 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/parser": 5.39.0_ypn2ylkkyfa5i233caldtndbqa - "@typescript-eslint/scope-manager": 5.39.0 - "@typescript-eslint/type-utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa - "@typescript-eslint/utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa + "@typescript-eslint/parser": 5.40.1_wyqvi574yv7oiwfeinomdzmc3m + "@typescript-eslint/scope-manager": 5.40.1 + "@typescript-eslint/type-utils": 5.40.1_wyqvi574yv7oiwfeinomdzmc3m + "@typescript-eslint/utils": 5.40.1_wyqvi574yv7oiwfeinomdzmc3m debug: 4.3.4 - eslint: 8.24.0 + eslint: 8.26.0 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.8 @@ -2761,10 +2758,10 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.39.0_ypn2ylkkyfa5i233caldtndbqa: + /@typescript-eslint/parser/5.40.1_wyqvi574yv7oiwfeinomdzmc3m: resolution: { - integrity: sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA== + integrity: sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2774,31 +2771,31 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.39.0 - "@typescript-eslint/types": 5.39.0 - "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.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.24.0 + eslint: 8.26.0 typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.39.0: + /@typescript-eslint/scope-manager/5.40.1: resolution: { - integrity: sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw== + integrity: sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.39.0 - "@typescript-eslint/visitor-keys": 5.39.0 + "@typescript-eslint/types": 5.40.1 + "@typescript-eslint/visitor-keys": 5.40.1 dev: true - /@typescript-eslint/type-utils/5.39.0_ypn2ylkkyfa5i233caldtndbqa: + /@typescript-eslint/type-utils/5.40.1_wyqvi574yv7oiwfeinomdzmc3m: resolution: { - integrity: sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA== + integrity: sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2808,28 +2805,28 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.4 - "@typescript-eslint/utils": 5.39.0_ypn2ylkkyfa5i233caldtndbqa + "@typescript-eslint/typescript-estree": 5.40.1_typescript@4.8.4 + "@typescript-eslint/utils": 5.40.1_wyqvi574yv7oiwfeinomdzmc3m debug: 4.3.4 - eslint: 8.24.0 + eslint: 8.26.0 tsutils: 3.21.0_typescript@4.8.4 typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.39.0: + /@typescript-eslint/types/5.40.1: resolution: { - integrity: sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw== + integrity: sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@typescript-eslint/typescript-estree/5.39.0_typescript@4.8.4: + /@typescript-eslint/typescript-estree/5.40.1_typescript@4.8.4: resolution: { - integrity: sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA== + integrity: sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2838,8 +2835,8 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.39.0 - "@typescript-eslint/visitor-keys": 5.39.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 @@ -2850,38 +2847,110 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.39.0_ypn2ylkkyfa5i233caldtndbqa: + /@typescript-eslint/utils/5.40.1_wyqvi574yv7oiwfeinomdzmc3m: resolution: { - integrity: sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg== + 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.39.0 - "@typescript-eslint/types": 5.39.0 - "@typescript-eslint/typescript-estree": 5.39.0_typescript@4.8.4 - eslint: 8.24.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.26.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0_eslint@8.26.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.39.0: + /@typescript-eslint/visitor-keys/5.40.1: resolution: { - integrity: sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg== + integrity: sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.39.0 + "@typescript-eslint/types": 5.40.1 eslint-visitor-keys: 3.3.0 dev: true + /@vue/compiler-core/3.2.41: + resolution: + { + integrity: sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw== + } + dependencies: + "@babel/parser": 7.18.9 + "@vue/shared": 3.2.41 + estree-walker: 2.0.2 + source-map: 0.6.1 + dev: true + + /@vue/compiler-dom/3.2.41: + resolution: + { + integrity: sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw== + } + dependencies: + "@vue/compiler-core": 3.2.41 + "@vue/shared": 3.2.41 + dev: true + + /@vue/compiler-sfc/3.2.41: + resolution: + { + integrity: sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w== + } + dependencies: + "@babel/parser": 7.18.9 + "@vue/compiler-core": 3.2.41 + "@vue/compiler-dom": 3.2.41 + "@vue/compiler-ssr": 3.2.41 + "@vue/reactivity-transform": 3.2.41 + "@vue/shared": 3.2.41 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.18 + source-map: 0.6.1 + dev: true + + /@vue/compiler-ssr/3.2.41: + resolution: + { + integrity: sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ== + } + dependencies: + "@vue/compiler-dom": 3.2.41 + "@vue/shared": 3.2.41 + dev: true + + /@vue/reactivity-transform/3.2.41: + resolution: + { + integrity: sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A== + } + dependencies: + "@babel/parser": 7.18.9 + "@vue/compiler-core": 3.2.41 + "@vue/shared": 3.2.41 + estree-walker: 2.0.2 + magic-string: 0.25.9 + dev: true + + /@vue/shared/3.2.41: + resolution: + { + integrity: sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw== + } + dev: true + /@webassemblyjs/ast/1.11.1: resolution: { @@ -3333,12 +3402,13 @@ packages: } dev: true - /aria-query/5.0.2: + /aria-query/5.1.1: resolution: { - integrity: sha512-eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q== + integrity: sha512-4cPQjOYM2mqq7mZG8CSxkUvL2Yv/x29VhGq5LKehTsxRnoVQps1YGt9NyjcNQsznEsD4rr8a6zGxqeNTqJWjpA== } - engines: { node: ">=6.0" } + dependencies: + deep-equal: 2.0.5 dev: true /array-flatten/1.1.1: @@ -3364,7 +3434,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -3404,7 +3474,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 es-shim-unscopables: 1.0.0 dev: true @@ -3424,20 +3494,28 @@ packages: } dev: true - /babel-jest/29.1.2_@babel+core@7.19.3: + /available-typed-arrays/1.0.5: resolution: { - integrity: sha512-IuG+F3HTHryJb7gacC7SQ59A9kO56BctUsT67uJHp1mMCHUOMXpDwOHWGifWqdWVknN2WNkCVQELPjXx0aLJ9Q== + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + } + engines: { node: ">= 0.4" } + dev: true + + /babel-jest/29.2.1_@babel+core@7.19.6: + resolution: + { + integrity: sha512-gQJwArok0mqoREiCYhXKWOgUhElJj9DpnssW6GL8dG7ARYqHEhrM9fmPHTjdqEGRVXZAd6+imo3/Vwa8TjLcsw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: "@babel/core": ^7.8.0 dependencies: - "@babel/core": 7.19.3 - "@jest/transform": 29.1.2 + "@babel/core": 7.19.6 + "@jest/transform": 29.2.1 "@types/babel__core": 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.0.2_@babel+core@7.19.3 + babel-preset-jest: 29.2.0_@babel+core@7.19.6 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -3445,7 +3523,7 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_wfdvla2jorjoj23kkavho2upde: + /babel-loader/8.2.5_6zc4kxld457avlfyhj3lzsljlm: resolution: { integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== @@ -3455,23 +3533,14 @@ packages: "@babel/core": ^7.0.0 webpack: ">=2" dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 find-cache-dir: 3.3.2 - loader-utils: 2.0.2 + loader-utils: 2.0.3 make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.74.0_webpack-cli@4.10.0 dev: true - /babel-plugin-dynamic-import-node/2.3.3: - resolution: - { - integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - } - dependencies: - object.assign: 4.1.4 - dev: true - /babel-plugin-istanbul/6.1.1: resolution: { @@ -3488,20 +3557,20 @@ packages: - supports-color dev: true - /babel-plugin-jest-hoist/29.0.2: + /babel-plugin-jest-hoist/29.2.0: resolution: { - integrity: sha512-eBr2ynAEFjcebVvu8Ktx580BD1QKCrBG1XwEUTXJe285p9HA/4hOhfWCFRQhTKSyBV0VzjhG7H91Eifz9s29hg== + integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@babel/template": 7.18.10 - "@babel/types": 7.19.3 + "@babel/types": 7.19.4 "@types/babel__core": 7.1.19 "@types/babel__traverse": 7.18.2 dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.6: resolution: { integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== @@ -3509,15 +3578,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.19.3 - "@babel/core": 7.19.3 - "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.3 + "@babel/compat-data": 7.19.4 + "@babel/core": 7.19.6 + "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.6 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.3: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.6: resolution: { integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== @@ -3525,14 +3594,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.6 core-js-compat: 3.25.5 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.3: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.6: resolution: { integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== @@ -3540,13 +3609,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.19.3 - "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@babel/helper-define-polyfill-provider": 0.3.3_@babel+core@7.19.6 transitivePeerDependencies: - supports-color dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.3: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.6: resolution: { integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== @@ -3554,33 +3623,33 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@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 + "@babel/core": 7.19.6 + "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.19.6 + "@babel/plugin-syntax-bigint": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.19.6 + "@babel/plugin-syntax-import-meta": 7.10.4_@babel+core@7.19.6 + "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.19.6 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.19.6 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.19.6 + "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.19.6 dev: true - /babel-preset-jest/29.0.2_@babel+core@7.19.3: + /babel-preset-jest/29.2.0_@babel+core@7.19.6: resolution: { - integrity: sha512-BeVXp7rH5TK96ofyEnHjznjLMQ2nAeDJ+QzxKnHAAMs0RgrQsCywjAN8m4mOm5Di0pxU//3AoEeJJrerMH5UeA== + 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.19.3 - babel-plugin-jest-hoist: 29.0.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 + "@babel/core": 7.19.6 + babel-plugin-jest-hoist: 29.2.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.6 dev: true /balanced-match/1.0.2: @@ -3612,10 +3681,10 @@ packages: engines: { node: ">=8" } dev: true - /body-parser/1.20.0: + /body-parser/1.20.1: resolution: { - integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== + integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== } engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } dependencies: @@ -3627,7 +3696,7 @@ 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 @@ -3682,8 +3751,8 @@ packages: engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001416 - electron-to-chromium: 1.4.274 + caniuse-lite: 1.0.30001423 + electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 dev: true @@ -3774,10 +3843,10 @@ packages: engines: { node: ">=10" } dev: true - /caniuse-lite/1.0.30001416: + /caniuse-lite/1.0.30001423: resolution: { - integrity: sha512-06wzzdAkCPZO+Qm4e/eNghZBDfVNDsCgw33T27OwBH9unE9S478OYw//Q2L7Npf/zBzs7rjZOszIFQkwQKAEqA== + integrity: sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ== } dev: true @@ -3790,7 +3859,7 @@ packages: requiresBuild: true dependencies: "@mapbox/node-pre-gyp": 1.0.10 - nan: 2.16.0 + nan: 2.17.0 simple-get: 3.1.1 transitivePeerDependencies: - encoding @@ -3862,10 +3931,10 @@ packages: engines: { node: ">=6.0" } dev: true - /ci-info/3.4.0: + /ci-info/3.5.0: resolution: { - integrity: sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug== + integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw== } dev: true @@ -4081,13 +4150,11 @@ packages: engines: { node: ">= 0.6" } dev: true - /convert-source-map/1.8.0: + /convert-source-map/1.9.0: resolution: { - integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== } - dependencies: - safe-buffer: 5.1.2 dev: true /cookie-signature/1.0.6: @@ -4142,12 +4209,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.17 - postcss: 8.4.17 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.17 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.17 - postcss-modules-scope: 3.0.0_postcss@8.4.17 - postcss-modules-values: 4.0.0_postcss@8.4.17 + 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.8 webpack: 5.74.0_webpack-cli@4.10.0 @@ -4255,10 +4322,10 @@ packages: ms: 2.1.2 dev: true - /decimal.js/10.4.1: + /decimal.js/10.4.2: resolution: { - integrity: sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw== + integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA== } dev: true @@ -4279,6 +4346,29 @@ packages: } dev: true + /deep-equal/2.0.5: + resolution: + { + integrity: sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw== + } + dependencies: + call-bind: 1.0.2 + es-get-iterator: 1.1.2 + get-intrinsic: 1.1.3 + is-arguments: 1.1.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 + isarray: 2.0.5 + object-is: 1.1.5 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + side-channel: 1.0.4 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.8 + dev: true + /deep-is/0.1.4: resolution: { @@ -4385,10 +4475,10 @@ packages: } dev: true - /diff-sequences/29.0.0: + /diff-sequences/29.2.0: resolution: { - integrity: sha512-7Qe/zd1wxSDL4D/X/FPjOMB+ZMDt71W94KYaq05I2l0oQqgXgs7s4ftYYmV38gBSrPz2vcygxfs1xn0FT+rKNA== + integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true @@ -4522,10 +4612,10 @@ packages: } dev: true - /electron-to-chromium/1.4.274: + /electron-to-chromium/1.4.284: resolution: { - integrity: sha512-Fgn7JZQzq85I81FpKUNxVLAzoghy8JZJ4NIue+YfUYBbu1AkpgzFvNwzF/ZNZH9ElkmJD0TSWu1F2gTpw/zZlg== + integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== } dev: true @@ -4611,10 +4701,10 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.20.3: + /es-abstract/1.20.4: resolution: { - integrity: sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw== + integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== } engines: { node: ">= 0.4" } dependencies: @@ -4644,6 +4734,22 @@ packages: unbox-primitive: 1.0.2 dev: true + /es-get-iterator/1.1.2: + resolution: + { + integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ== + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + has-symbols: 1.0.3 + is-arguments: 1.1.1 + is-map: 2.0.2 + is-set: 2.0.2 + is-string: 1.0.7 + isarray: 2.0.5 + dev: true + /es-module-lexer/0.9.3: resolution: { @@ -4727,7 +4833,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.24.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.26.0: resolution: { integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== @@ -4736,13 +4842,13 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.24.0 + eslint: 8.26.0 dev: true - /eslint-plugin-react/7.31.8_eslint@8.24.0: + /eslint-plugin-react/7.31.10_eslint@8.26.0: resolution: { - integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw== + integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== } engines: { node: ">=4" } peerDependencies: @@ -4751,7 +4857,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.24.0 + eslint: 8.26.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -4787,7 +4893,7 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.24.0: + /eslint-utils/3.0.0_eslint@8.26.0: resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== @@ -4796,7 +4902,7 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.24.0 + eslint: 8.26.0 eslint-visitor-keys: 2.1.0 dev: true @@ -4816,18 +4922,18 @@ packages: engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /eslint/8.24.0: + /eslint/8.26.0: resolution: { - integrity: sha512-dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ== + integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: - "@eslint/eslintrc": 1.3.2 - "@humanwhocodes/config-array": 0.10.7 - "@humanwhocodes/gitignore-to-minimatch": 1.0.2 + "@eslint/eslintrc": 1.3.3 + "@humanwhocodes/config-array": 0.11.6 "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -4835,7 +4941,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0_eslint@8.26.0 eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -4845,12 +4951,12 @@ packages: find-up: 5.0.0 glob-parent: 6.0.2 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 + is-path-inside: 3.0.3 js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 @@ -4988,30 +5094,30 @@ packages: engines: { node: ">= 0.8.0" } dev: true - /expect/29.1.2: + /expect/29.2.1: resolution: { - integrity: sha512-AuAGn1uxva5YBbBlXb+2JPxJRuemZsmlGcapPXWNSBNsQtAULfjioREGBWuI0EOvYUKjDnrCy8PW5Zlr1md5mw== + integrity: sha512-BJtA754Fba0YWRWHgjKUMTA3ltWarKgITXHQnbZ2mTxTXC4yMQlR0FI7HkB3fJYkhWBf4qjNiqvg3LDtXCcVRQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/expect-utils": 29.1.2 - jest-get-type: 29.0.0 - jest-matcher-utils: 29.1.2 - jest-message-util: 29.1.2 - jest-util: 29.1.2 + "@jest/expect-utils": 29.2.1 + jest-get-type: 29.2.0 + jest-matcher-utils: 29.2.1 + jest-message-util: 29.2.1 + jest-util: 29.2.1 dev: true - /express/4.18.1: + /express/4.18.2: resolution: { - integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q== + 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 @@ -5030,7 +5136,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 @@ -5238,6 +5344,15 @@ packages: optional: true dev: true + /for-each/0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + } + dependencies: + is-callable: 1.2.7 + dev: true + /form-data/4.0.0: resolution: { @@ -5341,7 +5456,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 functions-have-names: 1.2.3 dev: true @@ -5839,7 +5954,7 @@ packages: safer-buffer: 2.1.2 dev: true - /icss-utils/5.1.0_postcss@8.4.17: + /icss-utils/5.1.0_postcss@8.4.18: resolution: { integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== @@ -5848,7 +5963,7 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 dev: true /ignore/5.2.0: @@ -5950,6 +6065,17 @@ packages: engines: { node: ">= 10" } dev: true + /is-arguments/1.1.1: + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + /is-arrayish/0.2.1: resolution: { @@ -5995,10 +6121,10 @@ packages: engines: { node: ">= 0.4" } dev: true - /is-core-module/2.10.0: + /is-core-module/2.11.0: resolution: { - integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== + integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== } dependencies: has: 1.0.3 @@ -6057,6 +6183,13 @@ packages: is-extglob: 2.1.1 dev: true + /is-map/2.0.2: + resolution: + { + integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + } + dev: true + /is-negative-zero/2.0.2: resolution: { @@ -6083,6 +6216,14 @@ packages: engines: { node: ">=0.12.0" } dev: true + /is-path-inside/3.0.3: + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + } + engines: { node: ">=8" } + dev: true + /is-plain-obj/3.0.0: resolution: { @@ -6119,6 +6260,13 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-set/2.0.2: + resolution: + { + integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + } + dev: true + /is-shared-array-buffer/1.0.2: resolution: { @@ -6156,6 +6304,27 @@ packages: has-symbols: 1.0.3 dev: true + /is-typed-array/1.1.9: + resolution: + { + integrity: sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-abstract: 1.20.4 + for-each: 0.3.3 + has-tostringtag: 1.0.0 + dev: true + + /is-weakmap/2.0.1: + resolution: + { + integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + } + dev: true + /is-weakref/1.0.2: resolution: { @@ -6165,6 +6334,16 @@ packages: call-bind: 1.0.2 dev: true + /is-weakset/2.0.2: + resolution: + { + integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + dev: true + /is-wsl/2.2.0: resolution: { @@ -6182,6 +6361,13 @@ packages: } dev: true + /isarray/2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + } + dev: true + /isexe/2.0.0: resolution: { @@ -6212,8 +6398,8 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/core": 7.19.3 - "@babel/parser": 7.19.3 + "@babel/core": 7.19.6 + "@babel/parser": 7.19.6 "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -6265,10 +6451,10 @@ packages: } dev: true - /jest-changed-files/29.0.0: + /jest-changed-files/29.2.0: resolution: { - integrity: sha512-28/iDMDrUpGoCitTURuDqUzWQoWmOmOKOFST1mi2lwh62X4BFf6khgH3uSuo1e49X/UDjuApAj3w0wLOex4VPQ== + integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: @@ -6276,40 +6462,40 @@ packages: p-limit: 3.1.0 dev: true - /jest-circus/29.1.2: + /jest-circus/29.2.1: resolution: { - integrity: sha512-ajQOdxY6mT9GtnfJRZBRYS7toNIJayiiyjDyoZcnvPRUPwJ58JX0ci0PKAKUo2C1RyzlHw0jabjLGKksO42JGA== + integrity: sha512-W+ZQQ5ln4Db2UZNM4NJIeasnhCdDhSuYW4eLgNAUi0XiSSpF634Kc5wiPvGiHvTgXMFVn1ZgWIijqhi9+kLNLg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 29.1.2 - "@jest/expect": 29.1.2 - "@jest/test-result": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/environment": 29.2.1 + "@jest/expect": 29.2.1 + "@jest/test-result": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 - jest-each: 29.1.2 - jest-matcher-utils: 29.1.2 - jest-message-util: 29.1.2 - jest-runtime: 29.1.2 - jest-snapshot: 29.1.2 - jest-util: 29.1.2 + jest-each: 29.2.1 + jest-matcher-utils: 29.2.1 + jest-message-util: 29.2.1 + jest-runtime: 29.2.1 + jest-snapshot: 29.2.1 + jest-util: 29.2.1 p-limit: 3.1.0 - pretty-format: 29.1.2 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 transitivePeerDependencies: - supports-color dev: true - /jest-cli/29.1.2: + /jest-cli/29.2.1: resolution: { - integrity: sha512-vsvBfQ7oS2o4MJdAH+4u9z76Vw5Q8WBQF5MchDbkylNknZdrPTX1Ix7YRJyTlOWqRaS7ue/cEAn+E4V1MWyMzw== + integrity: sha512-UIMD5aNqvPKpdlJSaeUAoLfxsh9TZvOkaMETx5qXnkboc317bcbb0eLHbIj8sFBHdcJAIAM+IRKnIU7Wi61MBw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true @@ -6319,16 +6505,16 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.1.2 - "@jest/test-result": 29.1.2 - "@jest/types": 29.1.2 + "@jest/core": 29.2.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: 29.1.2 - jest-util: 29.1.2 - jest-validate: 29.1.2 + jest-config: 29.2.1 + jest-util: 29.2.1 + jest-validate: 29.2.1 prompts: 2.4.2 yargs: 17.6.0 transitivePeerDependencies: @@ -6337,10 +6523,10 @@ packages: - ts-node dev: true - /jest-config/29.1.2: + /jest-config/29.2.1: resolution: { - integrity: sha512-EC3Zi86HJUOz+2YWQcJYQXlf0zuBhJoeyxLM6vb6qJsVmpP7KcCP1JnyF0iaqTaXdBP8Rlwsvs7hnKWQWWLwwA== + integrity: sha512-EV5F1tQYW/quZV2br2o88hnYEeRzG53Dfi6rSG3TZBuzGQ6luhQBux/RLlU5QrJjCdq3LXxRRM8F1LP6DN1ycA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: @@ -6352,36 +6538,36 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.19.3 - "@jest/test-sequencer": 29.1.2 - "@jest/types": 29.1.2 - babel-jest: 29.1.2_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@jest/test-sequencer": 29.2.1 + "@jest/types": 29.2.1 + babel-jest: 29.2.1_@babel+core@7.19.6 chalk: 4.1.2 - ci-info: 3.4.0 + ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 29.1.2 - jest-environment-node: 29.1.2 - jest-get-type: 29.0.0 - jest-regex-util: 29.0.0 - jest-resolve: 29.1.2 - jest-runner: 29.1.2 - jest-util: 29.1.2 - jest-validate: 29.1.2 + jest-circus: 29.2.1 + jest-environment-node: 29.2.1 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.1 + jest-runner: 29.2.1 + jest-util: 29.2.1 + jest-validate: 29.2.1 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.1.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-config/29.1.2_@types+node@18.8.2: + /jest-config/29.2.1_@types+node@18.11.3: resolution: { - integrity: sha512-EC3Zi86HJUOz+2YWQcJYQXlf0zuBhJoeyxLM6vb6qJsVmpP7KcCP1JnyF0iaqTaXdBP8Rlwsvs7hnKWQWWLwwA== + integrity: sha512-EV5F1tQYW/quZV2br2o88hnYEeRzG53Dfi6rSG3TZBuzGQ6luhQBux/RLlU5QrJjCdq3LXxRRM8F1LP6DN1ycA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: @@ -6393,71 +6579,71 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.19.3 - "@jest/test-sequencer": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 - babel-jest: 29.1.2_@babel+core@7.19.3 + "@babel/core": 7.19.6 + "@jest/test-sequencer": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 + babel-jest: 29.2.1_@babel+core@7.19.6 chalk: 4.1.2 - ci-info: 3.4.0 + ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 29.1.2 - jest-environment-node: 29.1.2 - jest-get-type: 29.0.0 - jest-regex-util: 29.0.0 - jest-resolve: 29.1.2 - jest-runner: 29.1.2 - jest-util: 29.1.2 - jest-validate: 29.1.2 + jest-circus: 29.2.1 + jest-environment-node: 29.2.1 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.1 + jest-runner: 29.2.1 + jest-util: 29.2.1 + jest-validate: 29.2.1 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.1.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-diff/29.1.2: + /jest-diff/29.2.1: resolution: { - integrity: sha512-4GQts0aUopVvecIT4IwD/7xsBaMhKTYoM4/njE/aVw9wpw+pIUVp8Vab/KnSzSilr84GnLBkaP3JLDnQYCKqVQ== + integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 - diff-sequences: 29.0.0 - jest-get-type: 29.0.0 - pretty-format: 29.1.2 + diff-sequences: 29.2.0 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-docblock/29.0.0: + /jest-docblock/29.2.0: resolution: { - integrity: sha512-s5Kpra/kLzbqu9dEjov30kj1n4tfu3e7Pl8v+f8jOkeWNqM6Ds8jRaJfZow3ducoQUrf2Z4rs2N5S3zXnb83gw== + 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/29.1.2: + /jest-each/29.2.1: resolution: { - integrity: sha512-AmTQp9b2etNeEwMyr4jc0Ql/LIX/dhbgP21gHAizya2X6rUspHn2gysMXaj6iwWuOJ2sYRgP8c1P4cXswgvS1A== + integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 + "@jest/types": 29.2.1 chalk: 4.1.2 - jest-get-type: 29.0.0 - jest-util: 29.1.2 - pretty-format: 29.1.2 + jest-get-type: 29.2.0 + jest-util: 29.2.1 + pretty-format: 29.2.1 dev: true - /jest-environment-jsdom-global/4.0.0_eehccwu7remqurin73gq6ugqky: + /jest-environment-jsdom-global/4.0.0_5ima6gnz64d6jcy7ttjhwx5jle: resolution: { integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA== @@ -6467,131 +6653,136 @@ packages: jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: - jest-environment-jsdom: 29.1.2_canvas@2.10.1 + jest-environment-jsdom: 29.2.1_canvas@2.10.1 dev: true - /jest-environment-jsdom/29.1.2_canvas@2.10.1: + /jest-environment-jsdom/29.2.1_canvas@2.10.1: resolution: { - integrity: sha512-D+XNIKia5+uDjSMwL/G1l6N9MCb7LymKI8FpcLo7kkISjc/Sa9w+dXXEa7u1Wijo3f8sVLqfxdGqYtRhmca+Xw== + integrity: sha512-MipBdmrjgzEdQMkK7b7wBShOfv1VqO6FVwa9S43bZwKYLC4dlWnPiCgNpZX3ypNEpJO8EMpMhg4HrUkWUZXGiw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: - "@jest/environment": 29.1.2 - "@jest/fake-timers": 29.1.2 - "@jest/types": 29.1.2 + "@jest/environment": 29.2.1 + "@jest/fake-timers": 29.2.1 + "@jest/types": 29.2.1 "@types/jsdom": 20.0.0 - "@types/node": 18.8.2 - jest-mock: 29.1.2 - jest-util: 29.1.2 + "@types/node": 18.11.3 + canvas: 2.10.1 + jest-mock: 29.2.1 + jest-util: 29.2.1 jsdom: 20.0.1_canvas@2.10.1 transitivePeerDependencies: - bufferutil - - canvas - supports-color - utf-8-validate dev: true - /jest-environment-node/29.1.2: + /jest-environment-node/29.2.1: resolution: { - integrity: sha512-C59yVbdpY8682u6k/lh8SUMDJPbOyCHOTgLVVi1USWFxtNV+J8fyIwzkg+RJIVI30EKhKiAGNxYaFr3z6eyNhQ== + integrity: sha512-PulFKwEMz6nTAdLUwglFKei3b/LixwlRiqTN6nvPE1JtrLtlnpd6LXnFI1NFHYJGlTmIWilMP2n9jEtPPKX50g== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 29.1.2 - "@jest/fake-timers": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 - jest-mock: 29.1.2 - jest-util: 29.1.2 + "@jest/environment": 29.2.1 + "@jest/fake-timers": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 + jest-mock: 29.2.1 + jest-util: 29.2.1 dev: true - /jest-get-type/29.0.0: + /jest-get-type/29.2.0: resolution: { - integrity: sha512-83X19z/HuLKYXYHskZlBAShO7UfLFXu/vWajw9ZNJASN32li8yHMaVGAQqxFW1RCFOkB7cubaL6FaJVQqqJLSw== + integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true - /jest-haste-map/29.1.2: + /jest-haste-map/29.2.1: resolution: { - integrity: sha512-xSjbY8/BF11Jh3hGSPfYTa/qBFrm3TPM7WU8pU93m2gqzORVLkHFWvuZmFsTEBPRKndfewXhMOuzJNHyJIZGsw== + integrity: sha512-wF460rAFmYc6ARcCFNw4MbGYQjYkvjovb9GBT+W10Um8q5nHq98jD6fHZMDMO3tA56S8XnmNkM8GcA8diSZfnA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 + "@jest/types": 29.2.1 "@types/graceful-fs": 4.1.5 - "@types/node": 18.8.2 + "@types/node": 18.11.3 anymatch: 3.1.2 fb-watchman: 2.0.2 graceful-fs: 4.2.10 - jest-regex-util: 29.0.0 - jest-util: 29.1.2 - jest-worker: 29.1.2 + 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-leak-detector/29.1.2: + /jest-leak-detector/29.2.1: resolution: { - integrity: sha512-TG5gAZJpgmZtjb6oWxBLf2N6CfQ73iwCe6cofu/Uqv9iiAm6g502CAnGtxQaTfpHECBdVEMRBhomSXeLnoKjiQ== + integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-get-type: 29.0.0 - pretty-format: 29.1.2 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-matcher-utils/29.1.2: + /jest-matcher-utils/29.2.1: resolution: { - integrity: sha512-MV5XrD3qYSW2zZSHRRceFzqJ39B2z11Qv0KPyZYxnzDHFeYZGJlgGi0SW+IXSJfOewgJp/Km/7lpcFT+cgZypw== + integrity: sha512-hUTBh7H/Mnb6GTpihbLh8uF5rjAMdekfW/oZNXUMAXi7bbmym2HiRpzgqf/zzkjgejMrVAkPdVSQj+32enlUww== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 - jest-diff: 29.1.2 - jest-get-type: 29.0.0 - pretty-format: 29.1.2 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-message-util/29.1.2: + /jest-message-util/29.2.1: resolution: { - integrity: sha512-9oJ2Os+Qh6IlxLpmvshVbGUiSkZVc2FK+uGOm6tghafnB2RyjKAxMZhtxThRMxfX1J1SOMhTn9oK3/MutRWQJQ== + integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@babel/code-frame": 7.18.6 - "@jest/types": 29.1.2 + "@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: 29.1.2 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 dev: true - /jest-mock/29.1.2: + /jest-mock/29.2.1: resolution: { - integrity: sha512-PFDAdjjWbjPUtQPkQufvniXIS3N9Tv7tbibePEjIIprzjgo0qQlyUiVMrT4vL8FaSJo1QXifQUOuPH3HQC/aMA== + integrity: sha512-NDphaY/GqyQpTfnTZiTqqpMaw4Z0I7XnB7yBgrT6IwYrLGxpOhrejYr4ANY4YvO2sEGdd8Tx/6D0+WLQy7/qDA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 - "@types/node": 18.8.2 - jest-util: 29.1.2 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 + jest-util: 29.2.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@29.1.2: + /jest-pnp-resolver/1.2.2_jest-resolve@29.2.1: resolution: { integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== @@ -6603,192 +6794,192 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 29.1.2 + jest-resolve: 29.2.1 dev: true - /jest-regex-util/29.0.0: + /jest-regex-util/29.2.0: resolution: { - integrity: sha512-BV7VW7Sy0fInHWN93MMPtlClweYv2qrSCwfeFWmpribGZtQPWNvRSq9XOVgOEjU1iBGRKXUZil0o2AH7Iy9Lug== + integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dev: true - /jest-resolve-dependencies/29.1.2: + /jest-resolve-dependencies/29.2.1: resolution: { - integrity: sha512-44yYi+yHqNmH3OoWZvPgmeeiwKxhKV/0CfrzaKLSkZG9gT973PX8i+m8j6pDrTYhhHoiKfF3YUFg/6AeuHw4HQ== + integrity: sha512-o3mUGX2j08usj1jIAIE8KmUVpqVAn54k80kI27ldbZf2oJn6eghhB6DvJxjrcH40va9CQgWTfU5f2Ag/MoUqgQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - jest-regex-util: 29.0.0 - jest-snapshot: 29.1.2 + jest-regex-util: 29.2.0 + jest-snapshot: 29.2.1 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/29.1.2: + /jest-resolve/29.2.1: resolution: { - integrity: sha512-7fcOr+k7UYSVRJYhSmJHIid3AnDBcLQX3VmT9OSbPWsWz1MfT7bcoerMhADKGvKCoMpOHUQaDHtQoNp/P9JMGg== + integrity: sha512-1dJTW76Z9622Viq4yRcwBuEXuzGtE9B2kdl05RC8Om/lAzac9uEgC+M8Q5osVidbuBPmxm8wSrcItYhca2ZAtQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 29.1.2 - jest-pnp-resolver: 1.2.2_jest-resolve@29.1.2 - jest-util: 29.1.2 - jest-validate: 29.1.2 + jest-haste-map: 29.2.1 + jest-pnp-resolver: 1.2.2_jest-resolve@29.2.1 + jest-util: 29.2.1 + jest-validate: 29.2.1 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/29.1.2: + /jest-runner/29.2.1: resolution: { - integrity: sha512-yy3LEWw8KuBCmg7sCGDIqKwJlULBuNIQa2eFSVgVASWdXbMYZ9H/X0tnXt70XFoGf92W2sOQDOIFAA6f2BG04Q== + integrity: sha512-PojFI+uVhQ4u4YZKCN/a3yU0/l/pJJXhq1sW3JpCp8CyvGBYGddRFPKZ1WihApusxqWRTHjBJmGyPWv6Av2lWA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/console": 29.1.2 - "@jest/environment": 29.1.2 - "@jest/test-result": 29.1.2 - "@jest/transform": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/console": 29.2.1 + "@jest/environment": 29.2.1 + "@jest/test-result": 29.2.1 + "@jest/transform": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 - jest-docblock: 29.0.0 - jest-environment-node: 29.1.2 - jest-haste-map: 29.1.2 - jest-leak-detector: 29.1.2 - jest-message-util: 29.1.2 - jest-resolve: 29.1.2 - jest-runtime: 29.1.2 - jest-util: 29.1.2 - jest-watcher: 29.1.2 - jest-worker: 29.1.2 + jest-docblock: 29.2.0 + jest-environment-node: 29.2.1 + jest-haste-map: 29.2.1 + jest-leak-detector: 29.2.1 + jest-message-util: 29.2.1 + jest-resolve: 29.2.1 + jest-runtime: 29.2.1 + jest-util: 29.2.1 + jest-watcher: 29.2.1 + jest-worker: 29.2.1 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color dev: true - /jest-runtime/29.1.2: + /jest-runtime/29.2.1: resolution: { - integrity: sha512-jr8VJLIf+cYc+8hbrpt412n5jX3tiXmpPSYTGnwcvNemY+EOuLNiYnHJ3Kp25rkaAcTWOEI4ZdOIQcwYcXIAZw== + integrity: sha512-PSQ880OoIW9y8E6/jjhGn3eQNgNc6ndMzCZaKqy357bv7FqCfSyYepu3yDC6Sp1Vkt+GhP2M/PVgldS2uZSFZg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/environment": 29.1.2 - "@jest/fake-timers": 29.1.2 - "@jest/globals": 29.1.2 - "@jest/source-map": 29.0.0 - "@jest/test-result": 29.1.2 - "@jest/transform": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/environment": 29.2.1 + "@jest/fake-timers": 29.2.1 + "@jest/globals": 29.2.1 + "@jest/source-map": 29.2.0 + "@jest/test-result": 29.2.1 + "@jest/transform": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 29.1.2 - jest-message-util: 29.1.2 - jest-mock: 29.1.2 - jest-regex-util: 29.0.0 - jest-resolve: 29.1.2 - jest-snapshot: 29.1.2 - jest-util: 29.1.2 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-mock: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.1 + jest-snapshot: 29.2.1 + jest-util: 29.2.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /jest-snapshot/29.1.2: + /jest-snapshot/29.2.1: resolution: { - integrity: sha512-rYFomGpVMdBlfwTYxkUp3sjD6usptvZcONFYNqVlaz4EpHPnDvlWjvmOQ9OCSNKqYZqLM2aS3wq01tWujLg7gg== + integrity: sha512-KZdLD7iEz5M4ZYd+ezZ/kk73z+DtNbk/yJ4Qx7408Vb0CCuclJIZPa/HmIwSsCfIlOBNcYTKufr7x/Yv47oYlg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@babel/core": 7.19.3 - "@babel/generator": 7.19.3 - "@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.3 - "@babel/types": 7.19.3 - "@jest/expect-utils": 29.1.2 - "@jest/transform": 29.1.2 - "@jest/types": 29.1.2 + "@babel/core": 7.19.6 + "@babel/generator": 7.19.6 + "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.19.6 + "@babel/plugin-syntax-typescript": 7.18.6_@babel+core@7.19.6 + "@babel/traverse": 7.19.6 + "@babel/types": 7.19.4 + "@jest/expect-utils": 29.2.1 + "@jest/transform": 29.2.1 + "@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 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.6 chalk: 4.1.2 - expect: 29.1.2 + expect: 29.2.1 graceful-fs: 4.2.10 - jest-diff: 29.1.2 - jest-get-type: 29.0.0 - jest-haste-map: 29.1.2 - jest-matcher-utils: 29.1.2 - jest-message-util: 29.1.2 - jest-util: 29.1.2 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + jest-haste-map: 29.2.1 + jest-matcher-utils: 29.2.1 + jest-message-util: 29.2.1 + jest-util: 29.2.1 natural-compare: 1.4.0 - pretty-format: 29.1.2 + pretty-format: 29.2.1 semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true - /jest-util/29.1.2: + /jest-util/29.2.1: resolution: { - integrity: sha512-vPCk9F353i0Ymx3WQq3+a4lZ07NXu9Ca8wya6o4Fe4/aO1e1awMMprZ3woPFpKwghEOW+UXgd15vVotuNN9ONQ== + integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 chalk: 4.1.2 - ci-info: 3.4.0 + ci-info: 3.5.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/29.1.2: + /jest-validate/29.2.1: resolution: { - integrity: sha512-k71pOslNlV8fVyI+mEySy2pq9KdXdgZtm7NHrBX8LghJayc3wWZH0Yr0mtYNGaCU4F1OLPXRkwZR0dBm/ClshA== + integrity: sha512-DZVX5msG6J6DL5vUUw+++6LEkXUsPwB5R7fsfM7BXdz2Ipr0Ib046ak+8egrwAR++pvSM/5laxLK977ieIGxkQ== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/types": 29.1.2 + "@jest/types": 29.2.1 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 29.0.0 + jest-get-type: 29.2.0 leven: 3.1.0 - pretty-format: 29.1.2 + pretty-format: 29.2.1 dev: true - /jest-watcher/29.1.2: + /jest-watcher/29.2.1: resolution: { - integrity: sha512-6JUIUKVdAvcxC6bM8/dMgqY2N4lbT+jZVsxh0hCJRbwkIEnbr/aPjMQ28fNDI5lB51Klh00MWZZeVf27KBUj5w== + integrity: sha512-7jFaHUaRq50l4w/f6RuY713bvI5XskMmjWCE54NGYcY74fLkShS8LucXJke1QfGnwDSCoIqGnGGGKPwdaBYz2Q== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@jest/test-result": 29.1.2 - "@jest/types": 29.1.2 - "@types/node": 18.8.2 + "@jest/test-result": 29.2.1 + "@jest/types": 29.2.1 + "@types/node": 18.11.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 - jest-util: 29.1.2 + jest-util: 29.2.1 string-length: 4.0.2 dev: true @@ -6799,7 +6990,7 @@ packages: } engines: { node: ">= 10.13.0" } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -6811,28 +7002,28 @@ packages: } engines: { node: ">= 10.13.0" } dependencies: - "@types/node": 18.8.2 + "@types/node": 18.11.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest-worker/29.1.2: + /jest-worker/29.2.1: resolution: { - integrity: sha512-AdTZJxKjTSPHbXT/AIOjQVmoFx0LHFcVabWu0sxI7PAy7rFf8c0upyvgBKgguVXdM4vY74JdwkyD4hSmpTW8jA== + integrity: sha512-ROHTZ+oj7sBrgtv46zZ84uWky71AoYi0vEV9CdEtc1FQunsoAGe5HbQmW76nI5QWdvECVPrSi1MCVUmizSavMg== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@types/node": 18.8.2 - jest-util: 29.1.2 + "@types/node": 18.11.3 + jest-util: 29.2.1 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/29.1.2: + /jest/29.2.1: resolution: { - integrity: sha512-5wEIPpCezgORnqf+rCaYD1SK+mNN7NsstWzIsuvsnrhR/hSxXWd82oI7DkrbJ+XTD28/eG8SmxdGvukrGGK6Tw== + integrity: sha512-K0N+7rx+fv3Us3KhuwRSJt55MMpZPs9Q3WSO/spRZSnsalX8yEYOTQ1PiSN7OvqzoRX4JEUXCbOJRlP4n8m5LA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true @@ -6842,10 +7033,10 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.1.2 - "@jest/types": 29.1.2 + "@jest/core": 29.2.1 + "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 29.1.2 + jest-cli: 29.2.1 transitivePeerDependencies: - "@types/node" - supports-color @@ -6906,7 +7097,7 @@ packages: cssom: 0.5.0 cssstyle: 2.3.0 data-urls: 3.0.2 - decimal.js: 10.4.1 + decimal.js: 10.4.2 domexception: 4.0.0 escodegen: 2.0.0 form-data: 4.0.0 @@ -7078,10 +7269,10 @@ packages: engines: { node: ">=6.11.5" } dev: true - /loader-utils/2.0.2: + /loader-utils/2.0.3: resolution: { - integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== + integrity: sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A== } engines: { node: ">=8.9.0" } dependencies: @@ -7175,6 +7366,15 @@ packages: hasBin: true dev: true + /magic-string/0.25.9: + resolution: + { + integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + } + dependencies: + sourcemap-codec: 1.4.8 + dev: true + /make-dir/3.1.0: resolution: { @@ -7388,10 +7588,10 @@ packages: thunky: 1.1.0 dev: true - /nan/2.16.0: + /nan/2.17.0: resolution: { - integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA== + integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ== } dev: true @@ -7545,6 +7745,17 @@ packages: } dev: true + /object-is/1.1.5: + resolution: + { + integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + dev: true + /object-keys/1.1.1: resolution: { @@ -7575,7 +7786,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /object.fromentries/2.0.5: @@ -7587,7 +7798,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /object.hasown/1.1.1: @@ -7597,7 +7808,7 @@ packages: } dependencies: define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /object.values/1.1.5: @@ -7609,7 +7820,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /obuf/1.1.2: @@ -7757,10 +7968,10 @@ packages: engines: { node: ">=6" } dev: true - /p5/1.4.2: + /p5/1.5.0: resolution: { - integrity: sha512-J5zqZ/l1NIbJSuNr/FH9nDYgBRg7/NubStNPnx1fQCMSAgxI6peKDHs9i5iaG9EuwbJzjuG6/5bX/D0lqqrP9A== + integrity: sha512-zZFMVUmGkXe2G5H6Sw7xsVhgdxMyEN/6SZnZqYdQ51513kTqPslLnukkwTbGf8YtW0RetTU0FTjYQMXnFD7KnQ== } dev: false @@ -7929,7 +8140,7 @@ packages: find-up: 4.1.0 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.17: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.18: resolution: { integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== @@ -7938,10 +8149,10 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.17: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.18: resolution: { integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== @@ -7950,13 +8161,13 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.17 - postcss: 8.4.17 + 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 - /postcss-modules-scope/3.0.0_postcss@8.4.17: + /postcss-modules-scope/3.0.0_postcss@8.4.18: resolution: { integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== @@ -7965,11 +8176,11 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.17: + /postcss-modules-values/4.0.0_postcss@8.4.18: resolution: { integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== @@ -7978,8 +8189,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.17 - postcss: 8.4.17 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 dev: true /postcss-selector-parser/6.0.10: @@ -8000,10 +8211,10 @@ packages: } dev: true - /postcss/8.4.17: + /postcss/8.4.18: resolution: { - integrity: sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q== + integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== } engines: { node: ^10 || ^12 || >=14 } dependencies: @@ -8059,10 +8270,10 @@ packages: react-is: 17.0.2 dev: true - /pretty-format/29.1.2: + /pretty-format/29.2.1: resolution: { - integrity: sha512-CGJ6VVGXVRP2o2Dorl4mAwwvDWT25luIsYhkyVQW32E4nL+TgW939J7LlKT/npq5Cpq6j3s+sy+13yk7xYpBmg== + integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA== } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: @@ -8126,10 +8337,10 @@ packages: engines: { node: ">=6" } dev: true - /qs/6.10.3: + /qs/6.11.0: resolution: { - integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== + integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== } engines: { node: ">=0.6" } dependencies: @@ -8288,10 +8499,10 @@ packages: } dev: true - /regenerator-runtime/0.13.9: + /regenerator-runtime/0.13.10: resolution: { - integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== } dev: true @@ -8301,7 +8512,7 @@ packages: integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== } dependencies: - "@babel/runtime": 7.19.0 + "@babel/runtime": 7.19.4 dev: true /regexp.prototype.flags/1.4.3: @@ -8441,7 +8652,7 @@ packages: } hasBin: true dependencies: - is-core-module: 2.10.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -8453,7 +8664,7 @@ packages: } hasBin: true dependencies: - is-core-module: 2.10.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -8891,6 +9102,13 @@ packages: engines: { node: ">=0.10.0" } dev: true + /sourcemap-codec/1.4.8: + resolution: + { + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + } + dev: true + /spdy-transport/3.0.0: resolution: { @@ -8987,7 +9205,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 get-intrinsic: 1.1.3 has-symbols: 1.0.3 internal-slot: 1.0.3 @@ -9003,7 +9221,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /string.prototype.trimstart/1.0.5: @@ -9014,7 +9232,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.3 + es-abstract: 1.20.4 dev: true /string_decoder/1.1.1: @@ -9121,17 +9339,6 @@ packages: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.3.0: - resolution: - { - integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== - } - engines: { node: ">=8" } - dependencies: - has-flag: 4.0.0 - supports-color: 7.2.0 - dev: true - /supports-preserve-symlinks-flag/1.0.0: resolution: { @@ -9170,17 +9377,6 @@ packages: yallist: 4.0.0 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.3.0 - dev: true - /terser-webpack-plugin/5.3.6_webpack@5.74.0: resolution: { @@ -9200,7 +9396,7 @@ packages: uglify-js: optional: true dependencies: - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 @@ -9321,7 +9517,7 @@ packages: escape-string-regexp: 1.0.5 dev: true - /ts-jest/29.0.3_jxje2hcbylcap4trrcwjnopnr4: + /ts-jest/29.0.3_hx3pnmlivexg2zscxcsqm4rf7i: resolution: { integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ== @@ -9345,11 +9541,11 @@ packages: esbuild: optional: true dependencies: - "@babel/core": 7.19.3 + "@babel/core": 7.19.6 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.1.2 - jest-util: 29.1.2 + jest: 29.2.1 + jest-util: 29.2.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -9618,9 +9814,9 @@ packages: } engines: { node: ">=10.12.0" } dependencies: - "@jridgewell/trace-mapping": 0.3.15 + "@jridgewell/trace-mapping": 0.3.17 "@types/istanbul-lib-coverage": 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 dev: true /vary/1.1.2: @@ -9769,7 +9965,7 @@ packages: 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.14 @@ -9928,6 +10124,33 @@ packages: is-symbol: 1.0.4 dev: true + /which-collection/1.0.1: + resolution: + { + integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + } + dependencies: + is-map: 2.0.2 + is-set: 2.0.2 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 + dev: true + + /which-typed-array/1.1.8: + resolution: + { + integrity: sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-abstract: 1.20.4 + for-each: 0.3.3 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.9 + dev: true + /which/2.0.2: resolution: { From d5f723b8cd2d0b73456b100ffd128dd5791c774d Mon Sep 17 00:00:00 2001 From: Eugene Dyko Date: Sun, 23 Oct 2022 13:58:42 +0200 Subject: [PATCH 3/3] Update version to 3.4.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index eda61d1..de199ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-p5-wrapper", - "version": "3.3.0", + "version": "3.4.0", "description": "A wrapper component that allows you to utilise P5 sketches within React apps.", "homepage": "https://github.com/P5-wrapper/react", "license": "MIT",