From 5437f1acc66b03a5c2e1d3e53d090d07bacbcc15 Mon Sep 17 00:00:00 2001 From: Raj Date: Thu, 9 Nov 2023 16:43:07 -0500 Subject: [PATCH] =?UTF-8?q?chore(docs,=20package=20resolutions,=20and=20sc?= =?UTF-8?q?ript=20aliases.):=20=F0=9F=93=9D=20=20Implement=20new=20CONTRIB?= =?UTF-8?q?UTING.md.=20Add=20aliases=20to=20pnpm=20workspace=20scripts=20f?= =?UTF-8?q?or=20better=20dx.=20Modify=20resolutions=20for=20refractor=20to?= =?UTF-8?q?=20match=20react-syntax-highlighter.=20Implement=20gacp=20for?= =?UTF-8?q?=20better=20conventional=20commits.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added new CONTRIBUTING.MD doc. Added new dependency "gacp" for automating semantic commits. Commits can be formatted from the terminal using the following script: ``` pnpm commit ``` Reinstalled via pnpm to fix lockfile issues. Added `rcb` alias to root package.json scripts for better dx: ``` pnpm rcb run storybook ``` Added `demo` alias to root package.json scripts. Still a WIP! Demo can still be run and installed individually via ``` cd demo pnpm i pnpm run start ``` refractor now resolves to version "^3.6.0". --- CONTRIBUTING.md | 81 +- package.json | 18 +- packages/react-code-blocks/README.md | 7 +- packages/react-code-blocks/package.json | 5 +- pnpm-lock.yaml | 1329 +++++++++++++---------- pnpm-workspace.yaml | 2 +- 6 files changed, 854 insertions(+), 588 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 274bd9d7..32471b10 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,2 +1,81 @@ -# WIP +# Contributing to React Code Blocks +First off, thank you for considering contributing to React Code Blocks. It's people like you that make React Code Blocks such a great tool. + +### Where do I go from here? + +If you've noticed a bug or have a question, [search the issue tracker](https://github.com/rajinwonderland/react-code-blocks/issues) to see if someone else in the community has already created a ticket. If not, go ahead and make one! + +### Fork & create a branch + +If this is something you think you can fix, then [fork React Code Blocks](https://github.com/rajinwonderland/react-code-blocks/fork) and create a branch with a descriptive name. + +A good branch name would be (where issue #325 is the ticket you're working on): + +```bash +git checkout -b 325-add-language-support +``` + +### Working on the code + +We use `pnpm workspaces` to house all of our demos and packages. + +The `react-code-blocks` package is located under [`packages/react-code-blocks`](packages/react-code-blocks). + +You can run the following command from the root of the project to start storybook: + +```bash +pnpm rcb run storybook +``` + +### Implement your fix or feature + +At this point, you're ready to make your changes! Feel free to ask for help; everyone is a beginner at first 😸 + +### Committing Your Changes + +We follow a set of conventions for commit messages to make the history easier to understand and to facilitate the creation of changelogs. To help with this process, we use `gacp` (Git Automated Commit and Push), which is a tool that helps to format commit messages according to the conventional commit format. + +Before committing, make sure to stage your changes. You can do this with: + +```bash +git add . +``` + +Instead of using git commit, we use an automated process via the command: + +```bash +pnpm commit +``` + +This command will prompt you to fill out any required commit fields at commit time. No need to worry about the commit message format as gacp will guide you through the process. + +### Make a Pull Request + +At this point, you should switch back to your master branch and make sure it's up to date with React Code Blocks's master branch: + +```bash +git remote add upstream https://github.com/rajinwonderland/react-code-blocks.git +git checkout master +git pull upstream master +``` + +Then update your feature branch from your local copy of master, and push it! + +```bash +git checkout 325-add-language-support +git rebase master +git push --set-upstream origin 325-add-language-support +``` + +Finally, go to GitHub and [make a Pull Request](https://github.com/rajinwonderland/react-code-blocks/compare) 🎉 + +### Keeping your Pull Request updated + +If a maintainer asks you to "rebase" your Pull Request, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge. + +Here's a great article on rebasing, which basically just means getting the latest version of master and then putting your branch on top of it. + +### Questions? + +Feel free to contact either [@rajinwonderland](https://github.com/rajinwonderland) or [@thomasmost](https://github.com/thomasmost) if you have any questions about contributing. diff --git a/package.json b/package.json index 8c8ac9be..113402a5 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,12 @@ "author": "", "private": true, "scripts": { - "start:demo": "pnpm start demo", + "rcb": "pnpm -r --filter react-code-blocks", + "demo": "pnpm -r --filter demo", + "start:demo": "pnpm demo run start", "test": "pnpm test", - "nuke": "rm -rf node_modules rm -rf pnpm-lock.yaml" + "nuke": "rm -rf node_modules rm -rf pnpm-lock.yaml", + "commit": "gacp" }, "workspaces": [ "packages/*", @@ -20,7 +23,7 @@ "resolutions": { "react": "^16.11.0", "react-dom": "^16.11.0", - "refractor": "^4.8.1", + "refractor": "^3.6.0", "react-syntax-highlighter": "^15.5.0" }, "homepage": "https://react-code-blocks.rajinwonderland.vercel.app", @@ -83,5 +86,14 @@ "postcss@<8.4.31": ">=8.4.31", "@babel/traverse@<7.23.2": ">=7.23.2" } + }, + "gacp": { + "add": false, + "push": true, + "emoji": "emoji", + "editor": true + }, + "devDependencies": { + "gacp": "^3.0.3" } } diff --git a/packages/react-code-blocks/README.md b/packages/react-code-blocks/README.md index d68d0f26..1519f5ca 100644 --- a/packages/react-code-blocks/README.md +++ b/packages/react-code-blocks/README.md @@ -68,7 +68,7 @@ npm i react-code-blocks > Updated usage instructions can be found [here](https://react-code-blocks.rajinwonderland.vercel.app/) ```js -import { CopyBlock } from "react-code-blocks"; +import { CopyBlock } from 'react-code-blocks'; ``` ```js @@ -91,7 +91,7 @@ function MyCodeComponent(props) { A simple code block component ```js -import { CodeBlock, dracula } from "react-code-blocks"; +import { CodeBlock, dracula } from 'react-code-blocks'; function MyCoolCodeBlock({ code, language, showLineNumbers }) { return ( @@ -126,7 +126,7 @@ function MyCoolCodeBlock({ code, language, showLineNumbers }) { A code block component with a little copy button for copying a snippet. ```jsx -import { CopyBlock, dracula } from "react-code-blocks"; +import { CopyBlock, dracula } from 'react-code-blocks'; function MyCoolCodeBlock({ code, language, showLineNumbers }) { -- Website: https://novvum.io - Twitter: [@rajinwonderland](https://twitter.com/rajinwonderland) - Github: [@rajinwonderland](https://github.com/rajinwonderland) diff --git a/packages/react-code-blocks/package.json b/packages/react-code-blocks/package.json index 461378aa..c9f55679 100644 --- a/packages/react-code-blocks/package.json +++ b/packages/react-code-blocks/package.json @@ -1,6 +1,6 @@ { "name": "react-code-blocks", - "description": "Modified Atlaskit's Code Block to support more languages (i.e graphql, reasonml, etc) and theme (i.e railscast, darcula, monokai, etc) code snippets!", + "description": "Modified Atlaskit's Code Block to support more languages (i.e graphql, reasonml, etc) and theme (i.e railscast, dracula, monokai, etc) code snippets!", "keywords": [ "code-snippets", "code-blocks", @@ -81,9 +81,8 @@ }, "dependencies": { "@babel/runtime": "^7.10.4", - "@types/react-syntax-highlighter": "^15.5.7", "react-syntax-highlighter": "^15.5.0", - "styled-components": "^6.1.0", + "styled-components": "^6.1.0", "tslib": "^2.6.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8b9a3e24..02937922 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,10 +1,14 @@ lockfileVersion: '6.0' settings: - autoInstallPeers: false + autoInstallPeers: true excludeLinksFromLockfile: false overrides: + react: ^16.11.0 + react-dom: ^16.11.0 + refractor: ^3.6.0 + react-syntax-highlighter: ^15.5.0 node-notifier@<8.0.1: '>=8.0.1' marked@>=0.3.14 <0.6.2: '>=0.6.2' node-forge@<1.0.0: '>=1.0.0' @@ -63,7 +67,11 @@ overrides: importers: - .: {} + .: + devDependencies: + gacp: + specifier: ^3.0.3 + version: 3.0.3 packages/gatsby-mdx: dependencies: @@ -81,7 +89,7 @@ importers: version: 1.13.3(styled-components@6.1.0) gatsby: specifier: '>=4.25.7' - version: 4.25.7(react-dom@16.14.0)(react@16.14.0) + version: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-image: specifier: ^2.0.39 version: 2.11.0 @@ -90,7 +98,7 @@ importers: version: 0.6.3(@mdx-js/mdx@1.6.22)(@mdx-js/react@1.6.22) gatsby-plugin-manifest: specifier: ^2.0.29 - version: 2.12.1(gatsby@4.25.7) + version: 2.12.1(gatsby@4.25.7)(graphql@15.8.0) gatsby-plugin-offline: specifier: ^2.0.25 version: 2.2.10(gatsby@4.25.7) @@ -99,7 +107,7 @@ importers: version: 3.10.0(gatsby@4.25.7)(react-helmet@5.2.1) gatsby-plugin-sharp: specifier: '>=4.25.1' - version: 4.25.1(gatsby@4.25.7) + version: 4.25.1(gatsby@4.25.7)(graphql@15.8.0) gatsby-plugin-styled-components: specifier: ^3.0.7 version: 3.10.0(babel-plugin-styled-components@1.13.3)(gatsby@4.25.7)(styled-components@6.1.0) @@ -143,9 +151,6 @@ importers: '@babel/runtime': specifier: ^7.10.4 version: 7.22.5 - '@types/react-syntax-highlighter': - specifier: ^15.5.7 - version: 15.5.7 react-syntax-highlighter: specifier: ^15.5.0 version: 15.5.0(react@16.14.0) @@ -176,10 +181,10 @@ importers: version: 7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) '@storybook/addon-info': specifier: ^5.3.21 - version: 5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) + version: 5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0)(regenerator-runtime@0.14.0) '@storybook/addon-knobs': specifier: ^7.0.2 - version: 7.0.2(@storybook/addons@7.5.2)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) + version: 7.0.2(@storybook/addons@7.5.2)(@storybook/api@7.5.3)(@storybook/components@7.5.2)(@storybook/core-events@7.5.3)(@storybook/theming@7.5.3)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) '@storybook/addon-links': specifier: ^7.5.2 version: 7.5.2(react-dom@16.14.0)(react@16.14.0) @@ -197,7 +202,7 @@ importers: version: 7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) '@storybook/react-webpack5': specifier: ^7.5.2 - version: 7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) + version: 7.5.2(@babel/core@7.23.2)(@swc/core@1.3.96)(esbuild@0.18.17)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) '@types/color': specifier: ^3.0.1 version: 3.0.3 @@ -216,17 +221,20 @@ importers: '@types/react-dom': specifier: ^16.9.7 version: 16.9.19 + '@types/react-syntax-highlighter': + specifier: ^15.5.7 + version: 15.5.7 enzyme: specifier: ^3.11.0 version: 3.11.0 react: - specifier: ^16.13.1 + specifier: ^16.11.0 version: 16.14.0 react-docgen-typescript-loader: specifier: ^3.7.2 - version: 3.7.2(typescript@5.1.6) + version: 3.7.2(typescript@5.1.6)(webpack@5.88.2) react-dom: - specifier: ^16.13.1 + specifier: ^16.11.0 version: 16.14.0(react@16.14.0) storybook: specifier: ^7.5.2 @@ -417,7 +425,7 @@ packages: '@babel/helper-replace-supers': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -430,7 +438,7 @@ packages: '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 - semver: 6.3.1 + semver: 7.5.4 /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.2): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} @@ -1407,7 +1415,7 @@ packages: babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.2) babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.2) babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.2) - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -1758,6 +1766,41 @@ packages: dev: true optional: true + /@commitlint/execute-rule@12.1.4: + resolution: {integrity: sha512-h2S1j8SXyNeABb27q2Ok2vD1WfxJiXvOttKuRA9Or7LN6OQoC/KtT3844CIhhWNteNMu/wE0gkTqGxDVAnJiHg==} + engines: {node: '>=v10'} + dev: true + + /@commitlint/load@12.1.4: + resolution: {integrity: sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA==} + engines: {node: '>=v10'} + dependencies: + '@commitlint/execute-rule': 12.1.4 + '@commitlint/resolve-extends': 12.1.4 + '@commitlint/types': 12.1.4 + chalk: 4.1.2 + cosmiconfig: 7.1.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + dev: true + + /@commitlint/resolve-extends@12.1.4: + resolution: {integrity: sha512-R9CoUtsXLd6KSCfsZly04grsH6JVnWFmVtWgWs1KdDpdV+G3TSs37tColMFqglpkx3dsWu8dsPD56+D9YnJfqg==} + engines: {node: '>=v10'} + dependencies: + import-fresh: 3.3.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/types@12.1.4: + resolution: {integrity: sha512-KRIjdnWNUx6ywz+SJvjmNCbQKcKP6KArhjZhY2l+CWKxak0d77SOjggkMwFTiSgLODOwmuLTbarR2ZfWPiPMlw==} + engines: {node: '>=v10'} + dependencies: + chalk: 4.1.2 + dev: true + /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} @@ -1801,7 +1844,7 @@ packages: /@emotion/core@10.3.1(react@16.14.0): resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} peerDependencies: - react: '>=16.3.0' + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 10.0.29 @@ -1851,7 +1894,7 @@ packages: resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} peerDependencies: '@types/react': '*' - react: '>=16.8.0' + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -1900,7 +1943,7 @@ packages: resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} peerDependencies: '@emotion/core': ^10.0.28 - react: '>=16.3.0' + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@16.14.0) @@ -1914,7 +1957,7 @@ packages: resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} peerDependencies: '@emotion/core': ^10.0.27 - react: '>=16.3.0' + react: ^16.11.0 dependencies: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled-base': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) @@ -1936,7 +1979,7 @@ packages: /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@16.14.0): resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: - react: '>=16.8.0' + react: ^16.11.0 dependencies: react: 16.14.0 dev: true @@ -2192,8 +2235,8 @@ packages: /@floating-ui/react-dom@2.0.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@floating-ui/dom': 1.5.3 react: 16.14.0 @@ -2219,8 +2262,8 @@ packages: /@gatsbyjs/reach-router@1.3.9(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-/354IaUSM54xb7K/TxpLBJB94iEAJ3P82JD38T8bLnIDWF+uw8+W/82DKnQ7y24FJcKxtVmG43aiDLG88KSuYQ==} peerDependencies: - react: 15.x || 16.x || 17.x || 18.x - react-dom: 15.x || 16.x || 17.x || 18.x + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: invariant: 2.2.4 prop-types: 15.8.1 @@ -2497,7 +2540,7 @@ packages: resolution: {integrity: sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==} peerDependencies: prop-types: ^15.0.0 - react: '>=0.14.0' + react: ^16.11.0 dependencies: gud: 1.0.0 prop-types: 15.8.1 @@ -3289,7 +3332,7 @@ packages: /@mdx-js/react@1.6.22(react@16.14.0): resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: - react: ^16.13.1 || ^17.0.0 + react: ^16.11.0 dependencies: react: 16.14.0 dev: false @@ -3297,7 +3340,7 @@ packages: /@mdx-js/react@2.3.0(react@16.14.0): resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} peerDependencies: - react: '>=16' + react: ^16.11.0 dependencies: '@types/mdx': 2.0.5 '@types/react': 16.14.43 @@ -3307,7 +3350,7 @@ packages: /@mdx-js/tag@0.20.3(react@16.14.0): resolution: {integrity: sha512-Co3gUFmNDv9z2LjuvLTpTj2NaOSHFxuoZjohcG0YK/KfECO+Ns9idzThMYjfEDe1vAf4c824rqlBYseedJdFNw==} peerDependencies: - react: ^0.14.x || ^15.x || ^16.x + react: ^16.11.0 dependencies: react: 16.14.0 dev: false @@ -3474,7 +3517,7 @@ packages: json5: 2.2.3 msgpackr: 1.9.5 nullthrows: 1.1.1 - semver: 5.7.2 + semver: 7.5.4 dev: false /@parcel/diagnostic@2.6.2: @@ -3560,7 +3603,7 @@ packages: '@parcel/diagnostic': 2.6.2 '@parcel/utils': 2.6.2 nullthrows: 1.1.1 - semver: 5.7.2 + semver: 7.5.4 dev: false /@parcel/optimizer-terser@2.6.2(@parcel/core@2.6.2): @@ -3590,7 +3633,7 @@ packages: '@parcel/types': 2.6.2(@parcel/core@2.6.2) '@parcel/utils': 2.6.2 '@parcel/workers': 2.6.2(@parcel/core@2.6.2) - semver: 5.7.2 + semver: 7.5.4 dev: false /@parcel/packager-js@2.6.2(@parcel/core@2.6.2): @@ -3681,7 +3724,7 @@ packages: detect-libc: 1.0.3 nullthrows: 1.1.1 regenerator-runtime: 0.13.11 - semver: 5.7.2 + semver: 7.5.4 dev: false /@parcel/transformer-json@2.6.2(@parcel/core@2.6.2): @@ -3890,7 +3933,7 @@ packages: react-refresh: 0.11.0 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.88.2 + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack@5.88.2): @@ -3949,8 +3992,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -3970,8 +4013,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -3993,7 +4036,7 @@ packages: resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4007,7 +4050,7 @@ packages: resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4021,7 +4064,7 @@ packages: resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4036,8 +4079,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4060,7 +4103,7 @@ packages: resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4075,8 +4118,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4097,7 +4140,7 @@ packages: resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4113,8 +4156,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4143,8 +4186,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4164,8 +4207,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4185,8 +4228,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4214,8 +4257,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4255,8 +4298,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4275,7 +4318,7 @@ packages: resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4291,8 +4334,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4318,8 +4361,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4341,8 +4384,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4367,7 +4410,7 @@ packages: resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4381,7 +4424,7 @@ packages: resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4396,7 +4439,7 @@ packages: resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4411,7 +4454,7 @@ packages: resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4425,7 +4468,7 @@ packages: resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4439,7 +4482,7 @@ packages: resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4454,7 +4497,7 @@ packages: resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' - react: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4470,8 +4513,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 - react-dom: ^16.8 || ^17.0 || ^18.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -4495,8 +4538,8 @@ packages: /@reach/router@1.3.4(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==} peerDependencies: - react: 15.x || 16.x || 16.4.0-alpha.0911da3 - react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: create-react-context: 0.3.0(prop-types@15.8.1)(react@16.14.0) invariant: 2.2.4 @@ -4588,7 +4631,6 @@ packages: /@sindresorhus/is@4.6.0: resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} - dev: false /@sindresorhus/slugify@1.1.2: resolution: {integrity: sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==} @@ -4613,8 +4655,8 @@ packages: /@storybook/addon-actions@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-jKF3rrMEu42TgZ5AEszADpVdASDu1S4Ozp1Ymf4akHLkaMOv+yzzD7LV6YGjJz8S2IryndZqE47e6stF0T99uA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: react: optional: true @@ -4656,8 +4698,8 @@ packages: /@storybook/addon-docs@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-KxX4XuxK6YcI2mUosFkAlueMon/nby6mp3GRHenuK+nobY0ecfILqSTbsOeO1wqPxALBoq7fLnrgYhdDlandgQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@jest/transform': 29.6.1 '@mdx-js/react': 2.3.0(react@16.14.0) @@ -4687,12 +4729,12 @@ packages: - supports-color dev: true - /@storybook/addon-info@5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): + /@storybook/addon-info@5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-A/K9HzmoXMuOUxH3AozTvjNZwTlYVHob2OaDRfMza0gYMzG0tOrxqcdNTigeAWAjS//Z0G3enue6rHulQZK/+g==} peerDependencies: - react: '*' + react: ^16.11.0 dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0) + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.21 '@storybook/components': 5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) @@ -4714,7 +4756,7 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-knobs@7.0.2(@storybook/addons@7.5.2)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): + /@storybook/addon-knobs@7.0.2(@storybook/addons@7.5.2)(@storybook/api@7.5.3)(@storybook/components@7.5.2)(@storybook/core-events@7.5.3)(@storybook/theming@7.5.3)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-PzKuscxcBPhA2jpDxJ/F+BvBRqHJ8qBki1kS1IOjmJbAfE96WFnweXZ73ImyAJnRtmtReCL6p0ZmFkrNDMDpUw==} peerDependencies: '@storybook/addons': ^7.0.0 @@ -4722,8 +4764,8 @@ packages: '@storybook/components': ^7.0.0 '@storybook/core-events': ^7.0.0 '@storybook/theming': ^7.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: react: optional: true @@ -4731,6 +4773,10 @@ packages: optional: true dependencies: '@storybook/addons': 7.5.2(react-dom@16.14.0)(react@16.14.0) + '@storybook/api': 7.5.3(react-dom@16.14.0)(react@16.14.0) + '@storybook/components': 7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) + '@storybook/core-events': 7.5.3 + '@storybook/theming': 7.5.3(react-dom@16.14.0)(react@16.14.0) copy-to-clipboard: 3.3.3 core-js: 3.31.0 escape-html: 1.0.3 @@ -4751,8 +4797,8 @@ packages: /@storybook/addon-links@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-IhUYNOJQYJd8Cnb93l8egnGCGhHV0VHo6HmZT9YjBVuUtetGQbW8Eoh0pQwuklUrJ3jLPwMoKFhN1irQXJjZwQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: react: optional: true @@ -4776,8 +4822,8 @@ packages: /@storybook/addon-storysource@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-cKw6bNNgguo1V4FZhNIWI1/M0NqxrRWjoWq2MiC+S1YkKrfZcyssHvy0/4XgWcf/vPKWjwD3nGLLt8BJQL+3bg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: react: optional: true @@ -4805,8 +4851,8 @@ packages: /@storybook/addon-viewport@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-qN5X9vgp0v+WGXyFBHQ/CqjdtmnCoHhUjqXmBxEGBziJz/tZwWwtTGWeUUZpuTjCGiZutLrizOFl5MqQAI+ipg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 peerDependenciesMeta: react: optional: true @@ -4829,10 +4875,10 @@ packages: - '@types/react-dom' dev: true - /@storybook/addons@5.3.21(react-dom@16.14.0): + /@storybook/addons@5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==} dependencies: - '@storybook/api': 5.3.21(react-dom@16.14.0) + '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/channels': 5.3.21 '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 @@ -4847,8 +4893,8 @@ packages: /@storybook/addons@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-hRiy56zQbz72Pwa4F40srUWXKGNIriNkZ1R0j5KPd8ZqoMk1hIeW0S8E7s1vuM/MplnUE/jFJZqu6HQCvbqmGg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/manager-api': 7.5.2(react-dom@16.14.0)(react@16.14.0) '@storybook/preview-api': 7.5.2 @@ -4857,7 +4903,7 @@ packages: react-dom: 16.14.0(react@16.14.0) dev: true - /@storybook/api@5.3.21(react-dom@16.14.0): + /@storybook/api@5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==} peerDependencies: regenerator-runtime: '*' @@ -4877,6 +4923,7 @@ packages: memoizerific: 1.11.3 prop-types: 15.8.1 react: 16.14.0 + regenerator-runtime: 0.14.0 semver: 6.3.1 shallow-equal: 1.2.1 store2: 2.14.2 @@ -4886,11 +4933,28 @@ packages: - react-dom dev: true + /@storybook/api@7.5.3(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-NUW7rxATCaOSkMF/wDz8cseYzYy6rP5CgHaBNVpmfjmObMJVGk3lwxzWk43/jDrK5NC/kLoNDeKgwhSUAx3ZGA==} + peerDependencies: + react: ^16.11.0 + react-dom: ^16.11.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/client-logger': 7.5.3 + '@storybook/manager-api': 7.5.3(react-dom@16.14.0)(react@16.14.0) + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + dev: true + /@storybook/blocks@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-Tf6XE/YcnWQVBJRcJWJzhkahjSymv6QZuxMAiKFD8v48QRJ8kTxz1tBN9676Ux+l1WwtVWxwvd/0kRKKxE70wQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/channels': 7.5.2 '@storybook/client-logger': 7.5.2 @@ -4948,7 +5012,7 @@ packages: - supports-color dev: true - /@storybook/builder-webpack5@7.5.2(typescript@5.1.6): + /@storybook/builder-webpack5@7.5.2(esbuild@0.18.17)(typescript@5.1.6): resolution: {integrity: sha512-eGMbwyw65z1Fmsq6U/rXPjywBCDwtI5ZvV9zendxxeAVNLpzTFioxlRNYsYZqcLEfE6GoNYjIOkn4S9UV0N+VA==} peerDependencies: typescript: '*' @@ -4983,13 +5047,13 @@ packages: semver: 7.5.4 style-loader: 3.3.3(webpack@5.88.2) swc-loader: 0.2.3(@swc/core@1.3.96)(webpack@5.88.2) - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.88.2) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.18.17)(webpack@5.88.2) ts-dedent: 2.2.0 typescript: 5.1.6 url: 0.11.1 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) webpack-dev-middleware: 6.1.1(webpack@5.88.2) webpack-hot-middleware: 2.25.4 webpack-virtual-modules: 0.5.0 @@ -5019,6 +5083,17 @@ packages: tiny-invariant: 1.3.1 dev: true + /@storybook/channels@7.5.3: + resolution: {integrity: sha512-dhWuV2o2lmxH0RKuzND8jxYzvSQTSmpE13P0IT/k8+I1up/rSNYOBQJT6SalakcNWXFAMXguo/8E7ApmnKKcEw==} + dependencies: + '@storybook/client-logger': 7.5.3 + '@storybook/core-events': 7.5.3 + '@storybook/global': 5.0.0 + qs: 6.11.2 + telejson: 7.2.0 + tiny-invariant: 1.3.1 + dev: true + /@storybook/cli@7.5.2: resolution: {integrity: sha512-8JPvA/K66zBmRFpRRwsD0JLqZUODRrGmNuAWx+Bj1K8wqbg68MYnOflbkSIxIVxrfhd39OrffV0h8CwKNL9gAg==} hasBin: true @@ -5083,6 +5158,12 @@ packages: '@storybook/global': 5.0.0 dev: true + /@storybook/client-logger@7.5.3: + resolution: {integrity: sha512-vUFYALypjix5FoJ5M/XUP6KmyTnQJNW1poHdW7WXUVSg+lBM6E5eAtjTm0hdxNNDH8KSrdy24nCLra5h0X0BWg==} + dependencies: + '@storybook/global': 5.0.0 + dev: true + /@storybook/codemod@7.5.2: resolution: {integrity: sha512-PxZg0w4OlmFB4dBzB+sCgwmHNke0n1N8vNooxtcuusrLKlbUfmssYRnQn6yRSJw0WfkUYgI10CWxGaamaOFekA==} dependencies: @@ -5107,8 +5188,8 @@ packages: /@storybook/components@5.3.21(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-42QQk6qZl6wrtajP8yNCfmNS2t8Iod5QY+4V/l6iNnnT9O+j6cWOlnO+ZyvjNv0Xm0zIOt+VyVjdkKh8FUjQmA==} peerDependencies: - react: '*' - react-dom: '*' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/client-logger': 5.3.21 '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) @@ -5127,7 +5208,7 @@ packages: react-focus-lock: 2.9.4(@types/react@16.14.43)(react@16.14.0) react-helmet-async: 1.3.0(react-dom@16.14.0)(react@16.14.0) react-popper-tooltip: 2.11.1(react-dom@16.14.0)(react@16.14.0) - react-syntax-highlighter: 11.0.3(react@16.14.0) + react-syntax-highlighter: 15.5.0(react@16.14.0) react-textarea-autosize: 7.1.2(react@16.14.0) simplebar-react: 1.2.3(react-dom@16.14.0)(react@16.14.0) ts-dedent: 1.2.0 @@ -5138,8 +5219,8 @@ packages: /@storybook/components@7.5.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-OP+o6AoxoQDbqjk/jdQ1arlc1T8601eCL+rS1dJY9EtAFq7Z0LEFtafhEW/Lx8FotfVGjfCNptH9ODhHU6e5Jw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@radix-ui/react-select': 1.2.2(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@16.9.19)(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0) @@ -5208,6 +5289,12 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/core-events@7.5.3: + resolution: {integrity: sha512-DFOpyQ22JD5C1oeOFzL8wlqSWZzrqgDfDbUGP8xdO4wJu+FVTxnnWN6ZYLdTPB1u27DOhd7TzjQMfLDHLu7kbQ==} + dependencies: + ts-dedent: 2.2.0 + dev: true + /@storybook/core-server@7.5.2: resolution: {integrity: sha512-4oXpy1L/NyHiz/OXNUFnSeMLA/+lTgQAlVx86pRbEBDj6snt1/NSx2+yZyFtZ/XTnJ22BPpM8IIrgm95ZlQKmA==} dependencies: @@ -5334,8 +5421,8 @@ packages: /@storybook/manager-api@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-WX8GjBkITRQzhQ08WEAVjdDW8QqqIQhWOpFzXUYCxCNzt1eSALI31QQ+M1/MYymw+TOkotC/SMcn/puIAm4rdA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/channels': 7.5.2 '@storybook/client-logger': 7.5.2 @@ -5356,6 +5443,31 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/manager-api@7.5.3(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-d8mVLr/5BEG4bAS2ZeqYTy/aX4jPEpZHdcLaWoB4mAM+PAL9wcWsirUyApKtDVYLITJf/hd8bb2Dm2ok6E45gA==} + peerDependencies: + react: ^16.11.0 + react-dom: ^16.11.0 + dependencies: + '@storybook/channels': 7.5.3 + '@storybook/client-logger': 7.5.3 + '@storybook/core-events': 7.5.3 + '@storybook/csf': 0.1.1 + '@storybook/global': 5.0.0 + '@storybook/router': 7.5.3(react-dom@16.14.0)(react@16.14.0) + '@storybook/theming': 7.5.3(react-dom@16.14.0)(react@16.14.0) + '@storybook/types': 7.5.3 + dequal: 2.0.3 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + semver: 7.5.4 + store2: 2.14.2 + telejson: 7.2.0 + ts-dedent: 2.2.0 + dev: true + /@storybook/manager@7.5.2: resolution: {integrity: sha512-5l1z9SpCFQBcHjC5mbfWQ8mPTYFxD8GQ9mNZ6PPrj47yu9TyCRYSQj7A8ZXJiIY1ZEg4a2BCW7fPUYG+lX6Drw==} dev: true @@ -5372,13 +5484,13 @@ packages: resolution: {integrity: sha512-fKgyV1fAgckDoxQkUGJl5uzjzGC5esC/nITiCjccZFrqxt9mgmz4VAUkMeseD5tfWQ5oFA0Xdgtrrcl39+chnw==} dev: true - /@storybook/preset-react-webpack@7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6): + /@storybook/preset-react-webpack@7.5.2(@babel/core@7.23.2)(@swc/core@1.3.96)(esbuild@0.18.17)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6): resolution: {integrity: sha512-d0RY45ixWDArW4OSoGYrbm0oZbE6Z3kOi6Z64ed4E1ERQfEizq1EAgW/n7QqDMBKfPMNdNncDyGRiiSIdgyuBg==} engines: {node: '>=16.0.0'} peerDependencies: '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 typescript: '*' peerDependenciesMeta: '@babel/core': @@ -5386,6 +5498,7 @@ packages: typescript: optional: true dependencies: + '@babel/core': 7.23.2 '@babel/preset-flow': 7.22.5(@babel/core@7.23.2) '@babel/preset-react': 7.22.5(@babel/core@7.23.2) '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.88.2) @@ -5404,7 +5517,7 @@ packages: react-refresh: 0.11.0 semver: 7.5.4 typescript: 5.1.6 - webpack: 5.88.2 + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -5457,7 +5570,7 @@ packages: react-docgen-typescript: 2.2.2(typescript@5.1.6) tslib: 2.6.2 typescript: 5.1.6 - webpack: 5.88.2 + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) transitivePeerDependencies: - supports-color dev: true @@ -5465,20 +5578,20 @@ packages: /@storybook/react-dom-shim@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-x7h3TTLRLs8mrsCBKXbvjBRFms73XrNlm0Lo5Tu/Tf//+pwOFq+2sGBkqbRkYd54jNHhpqNF7+UUdzA93ESnbQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: react: 16.14.0 react-dom: 16.14.0(react@16.14.0) dev: true - /@storybook/react-webpack5@7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6): + /@storybook/react-webpack5@7.5.2(@babel/core@7.23.2)(@swc/core@1.3.96)(esbuild@0.18.17)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6): resolution: {integrity: sha512-whnuFdY1UtHGLvIEXTRuHZd+m/Ra3bUnLdvTQJRcJpt/Fmn+Bf78WqI6NN7IHFTMTrEEhfaBnkFL20XF4ECyCQ==} engines: {node: '>=16.0.0'} peerDependencies: '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 typescript: '*' peerDependenciesMeta: '@babel/core': @@ -5486,8 +5599,9 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 7.5.2(typescript@5.1.6) - '@storybook/preset-react-webpack': 7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) + '@babel/core': 7.23.2 + '@storybook/builder-webpack5': 7.5.2(esbuild@0.18.17)(typescript@5.1.6) + '@storybook/preset-react-webpack': 7.5.2(@babel/core@7.23.2)(@swc/core@1.3.96)(esbuild@0.18.17)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) '@storybook/react': 7.5.2(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) '@types/node': 18.18.8 react: 16.14.0 @@ -5513,8 +5627,8 @@ packages: resolution: {integrity: sha512-7X8GtqvRjWmVS112ifChJMxfD15rMVg5m3t6apZqi0uui1S/DImAveHwz8M4FhsElW6MIHs5xK0uJhR9rVQgTA==} engines: {node: '>=16.0.0'} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 typescript: '*' peerDependenciesMeta: typescript: @@ -5552,8 +5666,8 @@ packages: /@storybook/router@5.3.21(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-c29m5UikK5Q1lyd6FltOGFhIcpd6PIb855YS3OUNe3F6ZA1tfJ+aNKrCBc65d1c+fvCGG76dYYYv0RvwEmKXXg==} peerDependencies: - react: '*' - react-dom: '*' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@reach/router': 1.3.4(react-dom@16.14.0)(react@16.14.0) '@storybook/csf': 0.0.1 @@ -5571,8 +5685,8 @@ packages: /@storybook/router@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-jlh48TVUlqvGkU8MnkVp9SrCHomWGtQGx1WMK94NMyOPVPTLWzM6LjIybgmHz0MTe4lpzmbiIOfSlU3pPX054w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/client-logger': 7.5.2 memoizerific: 1.11.3 @@ -5581,11 +5695,24 @@ packages: react-dom: 16.14.0(react@16.14.0) dev: true + /@storybook/router@7.5.3(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-/iNYCFore7R5n6eFHbBYoB0P2/sybTVpA+uXTNUd3UEt7Ro6CEslTaFTEiH2RVQwOkceBp/NpyWon74xZuXhMg==} + peerDependencies: + react: ^16.11.0 + react-dom: ^16.11.0 + dependencies: + '@storybook/client-logger': 7.5.3 + memoizerific: 1.11.3 + qs: 6.11.2 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + dev: true + /@storybook/source-loader@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-9j52EWVXwkK5kBf1EryNCdFJVoel4Mf2STFYqyTyWV0EyYQu+RrSQpqqduaF6tbYY1spDXCnyTg0AmduXazMlw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@storybook/csf': 0.1.1 '@storybook/types': 7.5.2 @@ -5615,8 +5742,8 @@ packages: /@storybook/theming@5.3.21(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-FZbxjizqdO9lV5LUixPio/7+6UdPiswCzTJn8Hcot9uwwgfnrViRdN7xyjmSYRqv9nHP3OlYbtdeCAgZ4aPq8g==} peerDependencies: - react: '*' - react-dom: '*' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) @@ -5637,8 +5764,8 @@ packages: /@storybook/theming@7.5.2(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-DZBTcYErSYvmTYsGz7lKtiIcBe8flBw5Ojp52r3O4GcRYG4AbuUwwVvehz+O1cWaS+UW3HavrcgapERH7ZHd1A==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@16.14.0) '@storybook/client-logger': 7.5.2 @@ -5648,6 +5775,20 @@ packages: react-dom: 16.14.0(react@16.14.0) dev: true + /@storybook/theming@7.5.3(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-Cjmthe1MAk0z4RKCZ7m72gAD8YD0zTAH97z5ryM1Qv84QXjiCQ143fGOmYz1xEQdNFpOThPcwW6FEccLHTkVcg==} + peerDependencies: + react: ^16.11.0 + react-dom: ^16.11.0 + dependencies: + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@16.14.0) + '@storybook/client-logger': 7.5.3 + '@storybook/global': 5.0.0 + memoizerific: 1.11.3 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + dev: true + /@storybook/types@7.5.2: resolution: {integrity: sha512-RDKHo6WUES+4nt7uZMfankjxdpYX2EI2GpJ2n2RPcnhzmb/ub1huNTjbzDEYMqY24SppljZeIN57m3Ar6L6f9A==} dependencies: @@ -5657,6 +5798,15 @@ packages: file-system-cache: 2.3.0 dev: true + /@storybook/types@7.5.3: + resolution: {integrity: sha512-iu5W0Kdd6nysN5CPkY4GRl+0BpxRTdSfBIJak7mb6xCIHSB5t1tw4BOuqMQ5EgpikRY3MWJ4gY647QkWBX3MNQ==} + dependencies: + '@storybook/channels': 7.5.3 + '@types/babel__core': 7.20.3 + '@types/express': 4.17.20 + file-system-cache: 2.3.0 + dev: true + /@swc/core-darwin-arm64@1.3.96: resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==} engines: {node: '>=10'} @@ -5791,7 +5941,6 @@ packages: engines: {node: '>=10'} dependencies: defer-to-connect: 2.0.1 - dev: false /@tokenizer/token@0.3.0: resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} @@ -5810,7 +5959,7 @@ packages: /@turist/fetch@7.2.0(node-fetch@2.6.12): resolution: {integrity: sha512-2x7EGw+6OJ29phunsbGvtxlNmSfcuPcyYudkMbi8gARCP9eJ1CtuMvnVUHL//O9Ixi9SJiug8wNt6lj86pN8XQ==} peerDependencies: - node-fetch: '2' + node-fetch: '>=2.6.1' dependencies: '@types/node-fetch': 2.6.4 node-fetch: 2.6.12 @@ -5863,7 +6012,6 @@ packages: '@types/keyv': 3.1.4 '@types/node': 20.8.10 '@types/responselike': 1.0.0 - dev: false /@types/cheerio@0.22.31: resolution: {integrity: sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==} @@ -6043,7 +6191,6 @@ packages: /@types/http-cache-semantics@4.0.1: resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} - dev: false /@types/http-errors@2.0.3: resolution: {integrity: sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==} @@ -6098,7 +6245,6 @@ packages: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: '@types/node': 20.8.10 - dev: false /@types/lodash@4.14.195: resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==} @@ -6211,7 +6357,7 @@ packages: resolution: {integrity: sha512-bo5fEO5toQeyCp0zVHBeggclqf5SQ/Z5blfFmjwO5dkMVGPgmiwZsJh9nu/Bo5L7IHTuGWrja6LxJVE2uB5ZrQ==} dependencies: '@types/react': 16.14.43 - dev: false + dev: true /@types/react-textarea-autosize@4.3.6: resolution: {integrity: sha512-cTf8tCem0c8A7CERYbTuF+bRFaqYu7N7HLCa6ZhUhDx8XnUsTpGx5udMWljt87JpciUKuUkImKPEsy6kcKhrcQ==} @@ -6242,7 +6388,6 @@ packages: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: '@types/node': 20.8.10 - dev: false /@types/rimraf@2.0.5: resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==} @@ -6330,7 +6475,7 @@ packages: resolution: {integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==} dev: false - /@typescript-eslint/eslint-plugin@2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@3.9.10): + /@typescript-eslint/eslint-plugin@2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@5.1.6): resolution: {integrity: sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -6341,18 +6486,18 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 2.34.0(eslint@6.8.0)(typescript@3.9.10) - '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@3.9.10) + '@typescript-eslint/experimental-utils': 2.34.0(eslint@6.8.0)(typescript@5.1.6) + '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@5.1.6) eslint: 6.8.0 functional-red-black-tree: 1.0.1 regexpp: 3.2.0 - tsutils: 3.21.0(typescript@3.9.10) - typescript: 3.9.10 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0): + /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.1.6): resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -6363,8 +6508,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0) - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0) + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 4.33.0 debug: 4.3.4 eslint: 7.32.0 @@ -6372,19 +6517,20 @@ packages: ignore: 5.2.4 regexpp: 3.2.0 semver: 7.5.4 - tsutils: 3.21.0(typescript@3.9.10) + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/experimental-utils@2.34.0(eslint@6.8.0)(typescript@3.9.10): + /@typescript-eslint/experimental-utils@2.34.0(eslint@6.8.0)(typescript@5.1.6): resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: eslint: '*' dependencies: '@types/json-schema': 7.0.12 - '@typescript-eslint/typescript-estree': 2.34.0(typescript@3.9.10) + '@typescript-eslint/typescript-estree': 2.34.0(typescript@5.1.6) eslint: 6.8.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -6393,7 +6539,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0): + /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@5.1.6): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -6402,7 +6548,7 @@ packages: '@types/json-schema': 7.0.12 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0(eslint@7.32.0) @@ -6411,7 +6557,7 @@ packages: - typescript dev: false - /@typescript-eslint/parser@2.34.0(eslint@6.8.0)(typescript@3.9.10): + /@typescript-eslint/parser@2.34.0(eslint@6.8.0)(typescript@5.1.6): resolution: {integrity: sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -6422,16 +6568,16 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 2.34.0(eslint@6.8.0)(typescript@3.9.10) - '@typescript-eslint/typescript-estree': 2.34.0(typescript@3.9.10) + '@typescript-eslint/experimental-utils': 2.34.0(eslint@6.8.0)(typescript@5.1.6) + '@typescript-eslint/typescript-estree': 2.34.0(typescript@5.1.6) eslint: 6.8.0 eslint-visitor-keys: 1.3.0 - typescript: 3.9.10 + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@4.33.0(eslint@7.32.0): + /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6): resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -6443,9 +6589,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) debug: 4.3.4 eslint: 7.32.0 + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: false @@ -6463,7 +6610,7 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: false - /@typescript-eslint/typescript-estree@2.34.0(typescript@3.9.10): + /@typescript-eslint/typescript-estree@2.34.0(typescript@5.1.6): resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -6478,13 +6625,13 @@ packages: is-glob: 4.0.3 lodash: 4.17.21 semver: 7.5.4 - tsutils: 3.21.0(typescript@3.9.10) - typescript: 3.9.10 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@4.33.0: + /@typescript-eslint/typescript-estree@4.33.0(typescript@5.1.6): resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -6499,7 +6646,8 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@3.9.10) + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color dev: false @@ -6518,6 +6666,13 @@ packages: resolve: 1.22.2 dev: false + /@vivaxy/git@4.2.1: + resolution: {integrity: sha512-Gpnne7sk3oTd0fyw1J3clVX2ZBkJjNRduccDbOcgYv31M35nBzUHSzQ56eFiJsOTNfdVadL2bo0ICw5oilGfEA==} + dependencies: + execa: 5.1.1 + fs-extra: 10.1.0 + dev: true + /@webassemblyjs/ast@1.11.6: resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} dependencies: @@ -6609,7 +6764,7 @@ packages: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 - /@webpack-contrib/schema-utils@1.0.0-beta.0: + /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.88.2): resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} engines: {node: '>= 6.9.0 || >= 8.9.0'} peerDependencies: @@ -6620,6 +6775,7 @@ packages: chalk: 2.4.2 strip-ansi: 4.0.0 text-table: 0.2.0 + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) webpack-log: 1.2.0 dev: true @@ -6748,8 +6904,10 @@ packages: indent-string: 4.0.0 dev: true - /ajv-formats@2.1.1: + /ajv-formats@2.1.1(ajv@8.12.0): resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -6797,7 +6955,6 @@ packages: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} dependencies: string-width: 4.2.3 - dev: false /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} @@ -7108,19 +7265,19 @@ packages: engines: {node: '>=8'} dev: false - /autoprefixer@10.4.14(postcss@8.4.24): + /autoprefixer@10.4.14(postcss@8.4.31): resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 caniuse-lite: 1.0.30001561 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false @@ -7183,6 +7340,24 @@ packages: - supports-color dev: true + /babel-eslint@10.1.0(eslint@7.32.0): + resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} + engines: {node: '>=6'} + deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. + peerDependencies: + eslint: '>= 4.12.1' + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.0 + '@babel/traverse': 7.23.2 + '@babel/types': 7.23.0 + eslint: 7.32.0 + eslint-visitor-keys: 1.3.0 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: false + /babel-extract-comments@1.0.0: resolution: {integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==} engines: {node: '>=4'} @@ -7233,7 +7408,7 @@ packages: '@babel/core': 7.23.2 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /babel-messages@6.23.0: @@ -7413,12 +7588,12 @@ packages: engines: {node: '>=14.15.0'} peerDependencies: '@babel/core': ^7.0.0 - gatsby: ^4.0.0-next + gatsby: '>=4.25.7' dependencies: '@babel/core': 7.23.2 '@babel/runtime': 7.23.2 '@babel/types': 7.23.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 3.25.0 dev: false @@ -7719,7 +7894,6 @@ packages: type-fest: 0.20.2 widest-line: 3.1.0 wrap-ansi: 7.0.0 - dev: false /bplist-parser@0.2.0: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} @@ -7884,7 +8058,6 @@ packages: /cacheable-lookup@5.0.4: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} - dev: false /cacheable-request@7.0.4: resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} @@ -7897,7 +8070,6 @@ packages: lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 - dev: false /call-bind@1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} @@ -7934,7 +8106,6 @@ packages: /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - dev: false /camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} @@ -8180,7 +8351,6 @@ packages: /cli-boxes@2.2.1: resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} engines: {node: '>=6'} - dev: false /cli-cursor@2.1.0: resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} @@ -8251,6 +8421,15 @@ packages: wrap-ansi: 7.0.0 dev: true + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + /clone-deep@4.0.1: resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} engines: {node: '>=6'} @@ -8263,7 +8442,6 @@ packages: resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} dependencies: mimic-response: 1.0.1 - dev: false /clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} @@ -8424,7 +8602,6 @@ packages: unique-string: 2.0.0 write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 - dev: false /confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} @@ -8451,6 +8628,10 @@ packages: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} engines: {node: '>= 0.6'} + /conventional-commit-types@3.0.0: + resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} + dev: true + /convert-hrtime@3.0.0: resolution: {integrity: sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==} engines: {node: '>=8'} @@ -8557,7 +8738,7 @@ packages: resolution: {integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==} peerDependencies: prop-types: ^15.0.0 - react: ^0.14.0 || ^15.0.0 || ^16.0.0 + react: ^16.11.0 dependencies: gud: 1.0.0 prop-types: 15.8.1 @@ -8579,7 +8760,7 @@ packages: dependencies: nice-try: 1.0.5 path-key: 2.0.1 - semver: 5.7.2 + semver: 7.5.4 shebang-command: 1.2.0 which: 1.3.1 @@ -8600,13 +8781,13 @@ packages: engines: {node: '>=4'} dev: false - /css-declaration-sorter@6.4.1(postcss@8.4.24): + /css-declaration-sorter@6.4.1(postcss@8.4.31): resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} engines: {node: ^10 || ^12 || >=14} peerDependencies: - postcss: ^8.0.9 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false /css-loader@5.2.7(webpack@5.88.2): @@ -8615,13 +8796,13 @@ packages: peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.24) + icss-utils: 5.1.0(postcss@8.4.31) loader-utils: 2.0.4 - postcss: 8.4.24 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.24) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.24) - postcss-modules-scope: 3.0.0(postcss@8.4.24) - postcss-modules-values: 4.0.0(postcss@8.4.24) + postcss: 8.4.31 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) + postcss-modules-scope: 3.0.0(postcss@8.4.31) + postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.5.4 @@ -8634,15 +8815,15 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.24) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.24) - postcss-modules-scope: 3.0.0(postcss@8.4.24) - postcss-modules-values: 4.0.0(postcss@8.4.24) + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) + postcss-modules-scope: 3.0.0(postcss@8.4.31) + postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /css-minimizer-webpack-plugin@2.0.0(webpack@5.88.2): @@ -8658,10 +8839,10 @@ packages: csso: optional: true dependencies: - cssnano: 5.1.15(postcss@8.4.24) + cssnano: 5.1.15(postcss@8.4.31) jest-worker: 26.6.2 p-limit: 3.1.0 - postcss: 8.4.24 + postcss: 8.4.31 schema-utils: 3.3.0 serialize-javascript: 5.0.1 source-map: 0.6.1 @@ -8732,62 +8913,62 @@ packages: resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} dev: false - /cssnano-preset-default@5.2.14(postcss@8.4.24): + /cssnano-preset-default@5.2.14(postcss@8.4.31): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.24) - cssnano-utils: 3.1.0(postcss@8.4.24) - postcss: 8.4.24 - postcss-calc: 8.2.4(postcss@8.4.24) - postcss-colormin: 5.3.1(postcss@8.4.24) - postcss-convert-values: 5.1.3(postcss@8.4.24) - postcss-discard-comments: 5.1.2(postcss@8.4.24) - postcss-discard-duplicates: 5.1.0(postcss@8.4.24) - postcss-discard-empty: 5.1.1(postcss@8.4.24) - postcss-discard-overridden: 5.1.0(postcss@8.4.24) - postcss-merge-longhand: 5.1.7(postcss@8.4.24) - postcss-merge-rules: 5.1.4(postcss@8.4.24) - postcss-minify-font-values: 5.1.0(postcss@8.4.24) - postcss-minify-gradients: 5.1.1(postcss@8.4.24) - postcss-minify-params: 5.1.4(postcss@8.4.24) - postcss-minify-selectors: 5.2.1(postcss@8.4.24) - postcss-normalize-charset: 5.1.0(postcss@8.4.24) - postcss-normalize-display-values: 5.1.0(postcss@8.4.24) - postcss-normalize-positions: 5.1.1(postcss@8.4.24) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.24) - postcss-normalize-string: 5.1.0(postcss@8.4.24) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.24) - postcss-normalize-unicode: 5.1.1(postcss@8.4.24) - postcss-normalize-url: 5.1.0(postcss@8.4.24) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.24) - postcss-ordered-values: 5.1.3(postcss@8.4.24) - postcss-reduce-initial: 5.1.2(postcss@8.4.24) - postcss-reduce-transforms: 5.1.0(postcss@8.4.24) - postcss-svgo: 5.1.0(postcss@8.4.24) - postcss-unique-selectors: 5.1.1(postcss@8.4.24) - dev: false - - /cssnano-utils@3.1.0(postcss@8.4.24): + postcss: '>=8.4.31' + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.4.31) + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-calc: 8.2.4(postcss@8.4.31) + postcss-colormin: 5.3.1(postcss@8.4.31) + postcss-convert-values: 5.1.3(postcss@8.4.31) + postcss-discard-comments: 5.1.2(postcss@8.4.31) + postcss-discard-duplicates: 5.1.0(postcss@8.4.31) + postcss-discard-empty: 5.1.1(postcss@8.4.31) + postcss-discard-overridden: 5.1.0(postcss@8.4.31) + postcss-merge-longhand: 5.1.7(postcss@8.4.31) + postcss-merge-rules: 5.1.4(postcss@8.4.31) + postcss-minify-font-values: 5.1.0(postcss@8.4.31) + postcss-minify-gradients: 5.1.1(postcss@8.4.31) + postcss-minify-params: 5.1.4(postcss@8.4.31) + postcss-minify-selectors: 5.2.1(postcss@8.4.31) + postcss-normalize-charset: 5.1.0(postcss@8.4.31) + postcss-normalize-display-values: 5.1.0(postcss@8.4.31) + postcss-normalize-positions: 5.1.1(postcss@8.4.31) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.31) + postcss-normalize-string: 5.1.0(postcss@8.4.31) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.31) + postcss-normalize-unicode: 5.1.1(postcss@8.4.31) + postcss-normalize-url: 5.1.0(postcss@8.4.31) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.31) + postcss-ordered-values: 5.1.3(postcss@8.4.31) + postcss-reduce-initial: 5.1.2(postcss@8.4.31) + postcss-reduce-transforms: 5.1.0(postcss@8.4.31) + postcss-svgo: 5.1.0(postcss@8.4.31) + postcss-unique-selectors: 5.1.1(postcss@8.4.31) + dev: false + + /cssnano-utils@3.1.0(postcss@8.4.31): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /cssnano@5.1.15(postcss@8.4.24): + /cssnano@5.1.15(postcss@8.4.31): resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.24) + cssnano-preset-default: 5.2.14(postcss@8.4.31) lilconfig: 2.1.0 - postcss: 8.4.24 + postcss: 8.4.31 yaml: 1.10.2 dev: false @@ -8889,7 +9070,6 @@ packages: engines: {node: '>=10'} dependencies: mimic-response: 3.1.0 - dev: false /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} @@ -8909,7 +9089,6 @@ packages: /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} - dev: false /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -8939,7 +9118,6 @@ packages: /defer-to-connect@2.0.1: resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} engines: {node: '>=10'} - dev: false /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} @@ -9247,7 +9425,6 @@ packages: engines: {node: '>=8'} dependencies: is-obj: 2.0.0 - dev: false /dotenv-expand@10.0.0: resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} @@ -9322,7 +9499,7 @@ packages: resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} peerDependencies: '@emotion/core': ^10.0.27 - react: '>=16.3.0' + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@16.14.0) @@ -9643,7 +9820,6 @@ packages: /escape-goat@2.1.1: resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} engines: {node: '>=8'} - dev: false /escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} @@ -9699,8 +9875,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@3.9.10) - '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@3.9.10) + '@typescript-eslint/eslint-plugin': 2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@5.1.6) + '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@5.1.6) babel-eslint: 10.1.0(eslint@6.8.0) confusing-browser-globals: 1.0.11 eslint: 6.8.0 @@ -9712,7 +9888,7 @@ packages: typescript: 3.9.10 dev: true - /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@4.33.0)(@typescript-eslint/parser@4.33.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0): + /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@4.33.0)(@typescript-eslint/parser@4.33.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0)(typescript@5.1.6): resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -9736,8 +9912,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0) + '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + babel-eslint: 10.1.0(eslint@7.32.0) confusing-browser-globals: 1.0.11 eslint: 7.32.0 eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) @@ -9745,6 +9922,7 @@ packages: eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0) eslint-plugin-react: 7.32.2(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) + typescript: 5.1.6 dev: false /eslint-import-resolver-node@0.3.7: @@ -9777,7 +9955,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@3.9.10) + '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@5.1.6) debug: 3.2.7 eslint: 6.8.0 eslint-import-resolver-node: 0.3.7 @@ -9806,7 +9984,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) debug: 3.2.7 eslint: 7.32.0 eslint-import-resolver-node: 0.3.7 @@ -9845,7 +10023,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@3.9.10) + '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@5.1.6) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -9860,7 +10038,7 @@ packages: minimatch: 3.1.2 object.values: 1.1.6 resolve: 1.22.2 - semver: 6.3.1 + semver: 7.5.4 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -9878,7 +10056,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -9893,7 +10071,7 @@ packages: minimatch: 3.1.2 object.values: 1.1.6 resolve: 1.22.2 - semver: 6.3.1 + semver: 7.5.4 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -9923,7 +10101,7 @@ packages: minimatch: 3.1.2 object.entries: 1.1.6 object.fromentries: 2.0.6 - semver: 6.3.1 + semver: 7.5.4 dev: true /eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0): @@ -9948,7 +10126,7 @@ packages: minimatch: 3.1.2 object.entries: 1.1.6 object.fromentries: 2.0.6 - semver: 6.3.1 + semver: 7.5.4 dev: false /eslint-plugin-prettier@3.4.1(eslint-config-prettier@6.15.0)(eslint@6.8.0)(prettier@1.19.1): @@ -10006,7 +10184,7 @@ packages: object.values: 1.1.6 prop-types: 15.8.1 resolve: 2.0.0-next.4 - semver: 6.3.1 + semver: 7.5.4 string.prototype.matchall: 4.0.8 dev: true @@ -10030,7 +10208,7 @@ packages: object.values: 1.1.6 prop-types: 15.8.1 resolve: 2.0.0-next.4 - semver: 6.3.1 + semver: 7.5.4 string.prototype.matchall: 4.0.8 dev: false @@ -10126,7 +10304,7 @@ packages: optionator: 0.8.3 progress: 2.0.3 regexpp: 2.0.1 - semver: 6.3.1 + semver: 7.5.4 strip-ansi: 5.2.0 strip-json-comments: 3.1.1 table: 5.4.6 @@ -10837,7 +11015,7 @@ packages: signal-exit: 4.0.2 dev: true - /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(webpack@5.88.2): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.1.6)(webpack@5.88.2): resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -10865,6 +11043,7 @@ packages: schema-utils: 2.7.0 semver: 7.5.4 tapable: 1.1.3 + typescript: 5.1.6 webpack: 5.88.2 dev: false @@ -10888,7 +11067,7 @@ packages: semver: 7.5.4 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /form-data@3.0.1: @@ -11040,6 +11219,28 @@ packages: /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + /gacp@3.0.3: + resolution: {integrity: sha512-ncBb1MI/TRWhGVIRHJYl2MkLfVzrKHdy+9YlqzbdpAx0/yOktJQjrNeH0ublga49Jzk7VoSU8QdUfEexDJOd6g==} + hasBin: true + dependencies: + '@commitlint/load': 12.1.4 + '@commitlint/types': 12.1.4 + '@vivaxy/git': 4.2.1 + chalk: 4.1.2 + conventional-commit-types: 3.0.0 + cosmiconfig: 7.1.0 + execa: 5.1.1 + external-editor: 3.1.0 + figures: 3.2.0 + fs-extra: 10.1.0 + log-util: 2.3.0 + prompts: 2.4.2 + right-pad: 1.0.1 + update-notifier: 5.1.0 + word-wrap: 1.2.5 + yargs: 17.7.2 + dev: true + /gatsby-cli@4.25.0: resolution: {integrity: sha512-CJ2PCsfFmn9Xqc/jg9MFMU1BG5oQGiej1TFFx8GhChJ+kGhi9ANnNM+qo1K4vOmoMnsT4SSGiPAFD10AWFqpAQ==} engines: {node: '>=14.15.0'} @@ -11157,8 +11358,8 @@ packages: engines: {node: '>=14.15.0'} peerDependencies: '@gatsbyjs/reach-router': ^1.3.5 - react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 - react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@gatsbyjs/reach-router': 1.3.9(react-dom@16.14.0)(react@16.14.0) '@types/reach__router': 1.3.11 @@ -11240,16 +11441,16 @@ packages: '@parcel/transformer-json': 2.6.2(@parcel/core@2.6.2) dev: false - /gatsby-plugin-manifest@2.12.1(gatsby@4.25.7): + /gatsby-plugin-manifest@2.12.1(gatsby@4.25.7)(graphql@15.8.0): resolution: {integrity: sha512-Kiom3IHQ+hsRA/yt+XcBdOn1q+Rqbso5Iw0mXQQg+F+8U23sU66NaJY67ZXUkW8iwU25SOrwZaSw49C8BV0EGw==} engines: {node: '>=10.13.0'} peerDependencies: - gatsby: ^2.25.0 + gatsby: '>=4.25.7' dependencies: '@babel/runtime': 7.23.2 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 1.10.1 - gatsby-plugin-utils: 0.9.0(gatsby@4.25.7) + gatsby-plugin-utils: 0.9.0(gatsby@4.25.7)(graphql@15.8.0) semver: 7.5.4 sharp: 0.32.4 transitivePeerDependencies: @@ -11260,11 +11461,11 @@ packages: resolution: {integrity: sha512-S+fzmu/7vPDyZyZLMpiQniQllnjgBx87k8Ii00Nea6oij9TlEYpRVTFEtJO+6P8QyF20PxoKvq0ZNmuxK9mAiw==} engines: {node: '>=8.0.0'} peerDependencies: - gatsby: ^2.0.100 + gatsby: '>=4.25.7' dependencies: '@babel/runtime': 7.23.2 cheerio: 1.0.0-rc.12 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) idb-keyval: 3.2.0 lodash: 4.17.21 slash: 3.0.0 @@ -11275,7 +11476,7 @@ packages: resolution: {integrity: sha512-plHek7xHSV9l1bLPa1JAnxzBqP7j2ihCPRwpBk/wIJAR8cG65wjAT+Nu8DKpW0+2/MYill84ns1r2m8g0L/7bg==} engines: {node: '>=14.15.0'} peerDependencies: - gatsby: ^4.0.0-next + gatsby: '>=4.25.7' dependencies: '@babel/runtime': 7.23.2 '@babel/traverse': 7.23.2 @@ -11283,7 +11484,7 @@ packages: chokidar: 3.5.3 fs-exists-cached: 1.0.0 fs-extra: 10.1.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 3.25.0 gatsby-page-utils: 2.25.0 gatsby-plugin-utils: 3.19.0(gatsby@4.25.7)(graphql@15.8.0) @@ -11300,19 +11501,19 @@ packages: resolution: {integrity: sha512-TktmUysb7wDwYOKowNcpXxLJfQiwQ7cSQ8ALH3pJrW63wBaCoBXvAHg3OhgHVR74CrqN2Tb89tr3GXa4JhO4Qw==} engines: {node: '>=10.13.0'} peerDependencies: - gatsby: ^2.0.0 + gatsby: '>=4.25.7' react-helmet: ^5.1.3 || ^6.0.0 dependencies: '@babel/runtime': 7.23.2 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) react-helmet: 5.2.1(react@16.14.0) dev: false - /gatsby-plugin-sharp@4.25.1(gatsby@4.25.7): + /gatsby-plugin-sharp@4.25.1(gatsby@4.25.7)(graphql@15.8.0): resolution: {integrity: sha512-cGRb8lmwJkzwT1Qze0R+VL+55BIb9weM17m+dUf6gs5Z++lQltqge+L8a1qWWsGL6KfLQN7+bIqjhmTTscIPMQ==} engines: {node: '>=14.15.0'} peerDependencies: - gatsby: ^4.0.0-next + gatsby: '>=4.25.7' dependencies: '@babel/runtime': 7.23.2 async: 3.2.4 @@ -11320,7 +11521,7 @@ packages: debug: 4.3.4 filenamify: 4.3.0 fs-extra: 10.1.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 3.25.0 gatsby-plugin-utils: 3.19.0(gatsby@4.25.7)(graphql@15.8.0) lodash: 4.17.21 @@ -11337,12 +11538,12 @@ packages: engines: {node: '>=10.13.0'} peerDependencies: babel-plugin-styled-components: '>1.5.0' - gatsby: ^2.0.32 + gatsby: '>=4.25.7' styled-components: '>=2.0.0' dependencies: '@babel/runtime': 7.23.2 babel-plugin-styled-components: 1.13.3(styled-components@6.1.0) - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) styled-components: 6.1.0(react-dom@16.14.0)(react@16.14.0) dev: false @@ -11350,7 +11551,7 @@ packages: resolution: {integrity: sha512-8BTtiVWuIqIEGx/PBBMWd6FYPgel16hT3js7SMo5oI9K4EPsSxRItgRf41MTJGxRR20EhL4e99g2S8x0v1+odA==} engines: {node: '>=14.15.0'} peerDependencies: - gatsby: ^4.0.0-next + gatsby: '>=4.25.7' dependencies: '@babel/core': 7.23.2 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) @@ -11359,21 +11560,22 @@ packages: '@babel/preset-typescript': 7.22.5(@babel/core@7.23.2) '@babel/runtime': 7.23.2 babel-plugin-remove-graphql-queries: 4.25.0(@babel/core@7.23.2)(gatsby@4.25.7) - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) transitivePeerDependencies: - supports-color dev: false - /gatsby-plugin-utils@0.9.0(gatsby@4.25.7): + /gatsby-plugin-utils@0.9.0(gatsby@4.25.7)(graphql@15.8.0): resolution: {integrity: sha512-InM8PNHtx1kF87qQOlf4pVeNA8lSIsvSjImvN6dvpUjeQqOMRN1avY0W9Trh6LKTF/keWWj975Gk8Vcr+PYyDA==} engines: {node: '>=10.13.0'} peerDependencies: - gatsby: ^2.24.79 + gatsby: '>=4.25.7' graphql: ^15.0.0 dependencies: '@babel/runtime': 7.23.2 fastq: 1.15.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) + graphql: 15.8.0 joi: 17.9.2 dev: false @@ -11381,13 +11583,13 @@ packages: resolution: {integrity: sha512-EZtvgHSU5NPbEn6a4cfSpEGCQ09SfwbhoybHTJKj1clop86HSwOCV2iH8RbCc+X6jbdgHaSZsfsl7zG1h7DBUw==} engines: {node: '>=14.15.0'} peerDependencies: - gatsby: ^4.0.0-next + gatsby: '>=4.25.7' graphql: ^15.0.0 dependencies: '@babel/runtime': 7.23.2 fastq: 1.15.0 fs-extra: 10.1.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 3.25.0 gatsby-sharp: 0.19.0 graphql: 15.8.0 @@ -11402,8 +11604,8 @@ packages: engines: {node: '>=14.15.0'} peerDependencies: '@gatsbyjs/reach-router': ^1.3.5 - react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 - react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@gatsbyjs/reach-router': 1.3.9(react-dom@16.14.0)(react@16.14.0) @@ -11417,8 +11619,8 @@ packages: engines: {node: '>=14.15.0'} peerDependencies: '@gatsbyjs/reach-router': ^1.3.5 - react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 - react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@gatsbyjs/reach-router': 1.3.9(react-dom@16.14.0)(react@16.14.0) react: 16.14.0 @@ -11437,14 +11639,14 @@ packages: resolution: {integrity: sha512-Ao526Mmhm8KkF+0Tvf9Le5kKnqX7kgC1wecp82BW2KLQgdtG7UIgmHvG6PkjuFNiJ2ghXPC3vRK3J/vDPyLtkA==} engines: {node: '>=10.13.0'} peerDependencies: - gatsby: ^2.2.0 + gatsby: '>=4.25.7' dependencies: '@babel/runtime': 7.23.2 better-queue: 3.8.12 chokidar: 3.5.3 file-type: 16.5.4 fs-extra: 8.1.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) gatsby-core-utils: 1.10.1 got: 11.8.6 md5-file: 5.0.0 @@ -11480,14 +11682,14 @@ packages: resolution: {integrity: sha512-J9eZB82EMW3QnkGAJVH2X4ydmcRoDGLMPJBzc/VWDSxexuE7CYO/aQvq5RdCW5xetYu7X7J/gSiDflrNNS+F7w==} engines: {node: '>=10.13.0'} peerDependencies: - gatsby: ^2.12.1 - gatsby-plugin-sharp: ^2.0.0-beta.3 + gatsby: '>=4.25.7' + gatsby-plugin-sharp: '>=4.25.1' dependencies: '@babel/runtime': 7.23.2 bluebird: 3.7.2 fs-extra: 9.1.0 - gatsby: 4.25.7(react-dom@16.14.0)(react@16.14.0) - gatsby-plugin-sharp: 4.25.1(gatsby@4.25.7) + gatsby: 4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6) + gatsby-plugin-sharp: 4.25.1(gatsby@4.25.7)(graphql@15.8.0) potrace: 2.1.8 probe-image-size: 6.0.0 semver: 7.5.4 @@ -11506,14 +11708,14 @@ packages: - supports-color dev: false - /gatsby@4.25.7(react-dom@16.14.0)(react@16.14.0): + /gatsby@4.25.7(babel-eslint@10.1.0)(react-dom@16.14.0)(react@16.14.0)(typescript@5.1.6): resolution: {integrity: sha512-kspM1XokxDw2YqC2hkPKQTfWSNSq/AnY8PNYSrUM+MCsyIKFuGqSVchNonZN1g8/nCoh4jQpBYXH5Uw2Hrs6Sw==} engines: {node: '>=14.15.0'} hasBin: true requiresBuild: true peerDependencies: - react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 - react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/code-frame': 7.22.13 '@babel/core': 7.23.2 @@ -11539,14 +11741,14 @@ packages: '@parcel/core': 2.6.2 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.88.2) '@types/http-proxy': 1.17.11 - '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0) + '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) '@vercel/webpack-asset-relocator-loader': 1.7.3 acorn-loose: 8.3.0 acorn-walk: 8.2.0 address: 1.1.2 anser: 2.1.1 - autoprefixer: 10.4.14(postcss@8.4.24) + autoprefixer: 10.4.14(postcss@8.4.31) axios: 0.21.4(debug@3.2.7) babel-loader: 8.3.0(@babel/core@7.23.2)(webpack@5.88.2) babel-plugin-add-module-exports: 1.0.4 @@ -11577,7 +11779,7 @@ packages: enhanced-resolve: 5.15.0 error-stack-parser: 2.1.4 eslint: 7.32.0 - eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@4.33.0)(@typescript-eslint/parser@4.33.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0) + eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@4.33.0)(@typescript-eslint/parser@4.33.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@7.32.0)(typescript@5.1.6) eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) eslint-plugin-import: 2.27.5(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0) @@ -11643,15 +11845,15 @@ packages: parseurl: 1.3.3 physical-cpu-count: 2.0.0 platform: 1.3.6 - postcss: 8.4.24 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.24) - postcss-loader: 5.3.0(postcss@8.4.24)(webpack@5.88.2) + postcss: 8.4.31 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.31) + postcss-loader: 5.3.0(postcss@8.4.31)(webpack@5.88.2) prompts: 2.4.2 prop-types: 15.8.1 query-string: 6.14.1 raw-loader: 4.0.2(webpack@5.88.2) react: 16.14.0 - react-dev-utils: 12.0.1(eslint@7.32.0)(webpack@5.88.2) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.1.6)(webpack@5.88.2) react-dom: 16.14.0(react@16.14.0) react-refresh: 0.14.0 react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@16.14.0)(webpack@5.88.2) @@ -11855,12 +12057,18 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + dependencies: + ini: 1.3.8 + dev: true + /global-dirs@3.0.1: resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} engines: {node: '>=10'} dependencies: ini: 2.0.0 - dev: false /global-modules@2.0.0: resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} @@ -11952,7 +12160,6 @@ packages: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 - dev: false /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -12125,7 +12332,6 @@ packages: /has-yarn@2.1.0: resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} engines: {node: '>=8'} - dev: false /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} @@ -12192,15 +12398,6 @@ packages: zwitch: 1.0.5 dev: false - /hastscript@5.1.2: - resolution: {integrity: sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==} - dependencies: - comma-separated-tokens: 1.0.8 - hast-util-parse-selector: 2.2.5 - property-information: 5.6.0 - space-separated-tokens: 1.1.5 - dev: true - /hastscript@6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: @@ -12302,7 +12499,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /htmlparser2@3.10.1: @@ -12334,7 +12531,6 @@ packages: /http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: false /http-errors@1.8.0: resolution: {integrity: sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==} @@ -12374,7 +12570,6 @@ packages: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: false /https-proxy-agent@4.0.0: resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} @@ -12422,13 +12617,13 @@ packages: safer-buffer: 2.1.2 dev: true - /icss-utils@5.1.0(postcss@8.4.24): + /icss-utils@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 /idb-keyval@3.2.0: resolution: {integrity: sha512-slx8Q6oywCCSfKgPgL0sEsXtPVnSbTLWpyiDcu6msHOyKOLari1TD1qocXVCft80umnkk3/Qqh3lwoFt8T/BPQ==} @@ -12475,7 +12670,6 @@ packages: /import-lazy@2.1.0: resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} engines: {node: '>=4'} - dev: false /import-local@2.0.0: resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} @@ -12506,12 +12700,10 @@ packages: /ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: false /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} engines: {node: '>=10'} - dev: false /inline-style-parser@0.1.1: resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} @@ -12787,7 +12979,6 @@ packages: dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - dev: false /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} @@ -12826,7 +13017,6 @@ packages: /is-npm@5.0.0: resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} engines: {node: '>=10'} - dev: false /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} @@ -12853,7 +13043,6 @@ packages: /is-obj@2.0.0: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} engines: {node: '>=8'} - dev: false /is-path-cwd@2.2.0: resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} @@ -12977,7 +13166,6 @@ packages: /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - dev: false /is-unc-path@1.0.0: resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} @@ -13035,7 +13223,6 @@ packages: /is-yarn-global@0.3.0: resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} - dev: false /isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} @@ -13099,7 +13286,7 @@ packages: '@babel/traverse': 7.23.2 '@babel/types': 7.23.0 istanbul-lib-coverage: 2.0.5 - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true @@ -13112,7 +13299,7 @@ packages: '@babel/parser': 7.23.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true @@ -13549,7 +13736,7 @@ packages: mkdirp: 0.5.6 natural-compare: 1.4.0 pretty-format: 24.9.0 - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true @@ -13807,7 +13994,6 @@ packages: /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: false /json-loader@0.5.7: resolution: {integrity: sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==} @@ -13865,7 +14051,6 @@ packages: resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} dependencies: json-buffer: 3.0.1 - dev: false /kind-of@3.2.2: resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} @@ -13912,7 +14097,6 @@ packages: engines: {node: '>=8'} dependencies: package-json: 6.5.0 - dev: false /lazy-universal-dotenv@4.0.0: resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} @@ -14185,6 +14369,13 @@ packages: chalk: 2.4.2 dev: true + /log-symbols@3.0.0: + resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} + engines: {node: '>=8'} + dependencies: + chalk: 2.4.2 + dev: true + /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} @@ -14202,6 +14393,14 @@ packages: wrap-ansi: 3.0.1 dev: true + /log-util@2.3.0: + resolution: {integrity: sha512-ZFjjNKfCGicmPGUlcQX32TvOP/72qNpjgKha5MCsYPHj1rdQI4Cn6QSNGUpdzmG1KYAX3v/76oRG0df2M9nOKQ==} + dependencies: + chalk: 2.4.2 + figures: 3.2.0 + log-symbols: 3.0.0 + dev: true + /loglevelnext@1.0.5: resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} engines: {node: '>= 6'} @@ -14238,14 +14437,6 @@ packages: /lowercase-keys@2.0.0: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} engines: {node: '>=8'} - dev: false - - /lowlight@1.11.0: - resolution: {integrity: sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==} - dependencies: - fault: 1.0.4 - highlight.js: 10.7.3 - dev: true /lowlight@1.20.0: resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} @@ -14300,14 +14491,14 @@ packages: engines: {node: '>=6'} dependencies: pify: 4.0.1 - semver: 5.7.2 + semver: 7.5.4 dev: true /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.1 + semver: 7.5.4 /make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} @@ -14360,7 +14551,7 @@ packages: resolution: {integrity: sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==} engines: {node: '>= 4'} peerDependencies: - react: '>= 0.14.0' + react: ^16.11.0 dependencies: prop-types: 15.8.1 react: 16.14.0 @@ -14371,7 +14562,7 @@ packages: resolution: {integrity: sha512-9HrdzBAo0+sFz9ZYAGT5fB8ilzTW+q6lPocRxrIesMO+aB40V9MgFfbfMXxlGjf22OpRy+IXlvVaQenicdpgbg==} engines: {node: '>= 10'} peerDependencies: - react: '>= 0.14.0' + react: ^16.11.0 dependencies: react: 16.14.0 dev: true @@ -14597,12 +14788,10 @@ packages: /mimic-response@1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} - dev: false /mimic-response@3.1.0: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} engines: {node: '>=10'} - dev: false /min-document@2.19.0: resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} @@ -14882,7 +15071,7 @@ packages: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} dependencies: - minimatch: 3.1.2 + minimatch: 9.0.3 dev: true /node-eta@0.9.0: @@ -14950,7 +15139,7 @@ packages: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.2 - semver: 5.7.2 + semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -14972,7 +15161,6 @@ packages: /normalize-url@6.1.0: resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} engines: {node: '>=10'} - dev: false /npm-run-path@2.0.2: resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} @@ -15225,7 +15413,6 @@ packages: /p-cancelable@2.1.1: resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} engines: {node: '>=8'} - dev: false /p-defer@1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} @@ -15320,8 +15507,7 @@ packages: got: 11.8.6 registry-auth-token: 4.2.2 registry-url: 5.1.0 - semver: 6.3.1 - dev: false + semver: 7.5.4 /pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} @@ -15376,6 +15562,7 @@ packages: is-alphanumerical: 1.0.4 is-decimal: 1.0.4 is-hexadecimal: 1.0.4 + dev: false /parse-entities@2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} @@ -15683,323 +15870,323 @@ packages: engines: {node: '>=0.10.0'} dev: true - /postcss-calc@8.2.4(postcss@8.4.24): + /postcss-calc@8.2.4(postcss@8.4.31): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: - postcss: ^8.2.2 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: false - /postcss-colormin@5.3.1(postcss@8.4.24): + /postcss-colormin@5.3.1(postcss@8.4.31): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-convert-values@5.1.3(postcss@8.4.24): + /postcss-convert-values@5.1.3(postcss@8.4.31): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-discard-comments@5.1.2(postcss@8.4.24): + /postcss-discard-comments@5.1.2(postcss@8.4.31): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-discard-duplicates@5.1.0(postcss@8.4.24): + /postcss-discard-duplicates@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-discard-empty@5.1.1(postcss@8.4.24): + /postcss-discard-empty@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-discard-overridden@5.1.0(postcss@8.4.24): + /postcss-discard-overridden@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.24): + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.31): resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: - postcss: ^8.1.4 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-loader@5.3.0(postcss@8.4.24)(webpack@5.88.2): + /postcss-loader@5.3.0(postcss@8.4.31)(webpack@5.88.2): resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==} engines: {node: '>= 10.13.0'} peerDependencies: - postcss: ^7.0.0 || ^8.0.1 + postcss: '>=8.4.31' webpack: ^5.0.0 dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.24 + postcss: 8.4.31 semver: 7.5.4 webpack: 5.88.2 dev: false - /postcss-merge-longhand@5.1.7(postcss@8.4.24): + /postcss-merge-longhand@5.1.7(postcss@8.4.31): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.24) + stylehacks: 5.1.1(postcss@8.4.31) dev: false - /postcss-merge-rules@5.1.4(postcss@8.4.24): + /postcss-merge-rules@5.1.4(postcss@8.4.31): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.24) - postcss: 8.4.24 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: false - /postcss-minify-font-values@5.1.0(postcss@8.4.24): + /postcss-minify-font-values@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-gradients@5.1.1(postcss@8.4.24): + /postcss-minify-gradients@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.24) - postcss: 8.4.24 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-params@5.1.4(postcss@8.4.24): + /postcss-minify-params@5.1.4(postcss@8.4.31): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 - cssnano-utils: 3.1.0(postcss@8.4.24) - postcss: 8.4.24 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-selectors@5.2.1(postcss@8.4.24): + /postcss-minify-selectors@5.2.1(postcss@8.4.31): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: false - /postcss-modules-extract-imports@3.0.0(postcss@8.4.24): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 - /postcss-modules-local-by-default@4.0.3(postcss@8.4.24): + /postcss-modules-local-by-default@4.0.3(postcss@8.4.31): resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 - /postcss-modules-scope@3.0.0(postcss@8.4.24): + /postcss-modules-scope@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 - /postcss-modules-values@4.0.0(postcss@8.4.24): + /postcss-modules-values@4.0.0(postcss@8.4.31): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: '>=8.4.31' dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 - /postcss-normalize-charset@5.1.0(postcss@8.4.24): + /postcss-normalize-charset@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-normalize-display-values@5.1.0(postcss@8.4.24): + /postcss-normalize-display-values@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-positions@5.1.1(postcss@8.4.24): + /postcss-normalize-positions@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.24): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-string@5.1.0(postcss@8.4.24): + /postcss-normalize-string@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.24): + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-unicode@5.1.1(postcss@8.4.24): + /postcss-normalize-unicode@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-url@5.1.0(postcss@8.4.24): + /postcss-normalize-url@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: normalize-url: 6.1.0 - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-whitespace@5.1.1(postcss@8.4.24): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-ordered-values@5.1.3(postcss@8.4.24): + /postcss-ordered-values@5.1.3(postcss@8.4.31): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - cssnano-utils: 3.1.0(postcss@8.4.24) - postcss: 8.4.24 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false - /postcss-reduce-initial@5.1.2(postcss@8.4.24): + /postcss-reduce-initial@5.1.2(postcss@8.4.31): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 caniuse-api: 3.0.0 - postcss: 8.4.24 + postcss: 8.4.31 dev: false - /postcss-reduce-transforms@5.1.0(postcss@8.4.24): + /postcss-reduce-transforms@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: false @@ -16010,38 +16197,30 @@ packages: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.24): + /postcss-svgo@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: false - /postcss-unique-selectors@5.1.1(postcss@8.4.24): + /postcss-unique-selectors@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: - postcss: 8.4.24 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: false /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - /postcss@8.4.24: - resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 - /postcss@8.4.31: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} @@ -16049,7 +16228,6 @@ packages: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 - dev: false /potrace@2.1.8: resolution: {integrity: sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g==} @@ -16284,7 +16462,6 @@ packages: engines: {node: '>=8'} dependencies: escape-goat: 2.1.1 - dev: false /puppeteer-core@2.1.1: resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} @@ -16342,7 +16519,6 @@ packages: /quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} - dev: false /raf@3.4.1: resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} @@ -16413,7 +16589,6 @@ packages: ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 - dev: false /react-addons-create-fragment@15.6.2: resolution: {integrity: sha512-O9+cXwMGcMF7WfpZHw+Lt8+jkRhyQBgihOVz9xfGMRORMdMf40HLeQQbdwPUQB7G73+/Zc+hB77A/UyE58n9Og==} @@ -16428,7 +16603,7 @@ packages: /react-clientside-effect@1.2.6(react@16.14.0): resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: - react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 react: 16.14.0 @@ -16437,14 +16612,14 @@ packages: /react-colorful@5.6.1(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: react: 16.14.0 react-dom: 16.14.0(react@16.14.0) dev: true - /react-dev-utils@12.0.1(eslint@7.32.0)(webpack@5.88.2): + /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.1.6)(webpack@5.88.2): resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: @@ -16463,7 +16638,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.1.6)(webpack@5.88.2) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -16478,6 +16653,7 @@ packages: shell-quote: 1.8.1 strip-ansi: 6.0.1 text-table: 0.2.0 + typescript: 5.1.6 webpack: 5.88.2 transitivePeerDependencies: - eslint @@ -16485,12 +16661,12 @@ packages: - vue-template-compiler dev: false - /react-docgen-typescript-loader@3.7.2(typescript@5.1.6): + /react-docgen-typescript-loader@3.7.2(typescript@5.1.6)(webpack@5.88.2): resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} peerDependencies: typescript: '*' dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0 + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.88.2) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@5.1.6) typescript: 5.1.6 @@ -16536,7 +16712,7 @@ packages: /react-dom@16.14.0(react@16.14.0): resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} peerDependencies: - react: ^16.14.0 + react: ^16.11.0 dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 @@ -16547,8 +16723,8 @@ packages: /react-element-to-jsx-string@14.3.4(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 @@ -16560,8 +16736,8 @@ packages: /react-element-to-jsx-string@15.0.0(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 @@ -16586,7 +16762,7 @@ packages: resolution: {integrity: sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -16604,8 +16780,8 @@ packages: /react-helmet-async@1.3.0(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 invariant: 2.2.4 @@ -16619,7 +16795,7 @@ packages: /react-helmet@5.2.1(react@16.14.0): resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} peerDependencies: - react: '>=15.0.0' + react: ^16.11.0 dependencies: object-assign: 4.1.1 prop-types: 15.8.1 @@ -16631,7 +16807,7 @@ packages: /react-inspector@6.0.2(react@16.14.0): resolution: {integrity: sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==} peerDependencies: - react: ^16.8.4 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 dependencies: react: 16.14.0 dev: true @@ -16653,8 +16829,8 @@ packages: /react-popper-tooltip@2.11.1(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ==} peerDependencies: - react: ^16.6.0 - react-dom: ^16.6.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 react: 16.14.0 @@ -16665,7 +16841,7 @@ packages: /react-popper@1.3.11(react@16.14.0): resolution: {integrity: sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==} peerDependencies: - react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@hypnosphi/create-react-context': 0.3.1(prop-types@15.8.1)(react@16.14.0) @@ -16692,7 +16868,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -16708,7 +16884,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -16725,8 +16901,8 @@ packages: /react-select@5.7.4(@types/react@16.14.43)(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-NhuE56X+p9QDFh4BgeygHFIvJJszO1i1KSkg/JPcIJrbovyRtI+GuOEa4XzFCEpZRAEoEI8u/cAHK+jG/PgUzQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.11.0 @@ -16747,7 +16923,7 @@ packages: resolution: {integrity: sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==} engines: {node: '>=0.10.0'} peerDependencies: - react: 0.0.0-experimental-c8b778b7f-20220825 + react: ^16.11.0 webpack: ^5.59.0 dependencies: acorn: 6.4.2 @@ -16760,7 +16936,7 @@ packages: /react-side-effect@1.2.0(react@16.14.0): resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} peerDependencies: - react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 + react: ^16.11.0 dependencies: react: 16.14.0 shallowequal: 1.1.0 @@ -16771,7 +16947,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -16783,23 +16959,10 @@ packages: tslib: 2.6.2 dev: true - /react-syntax-highlighter@11.0.3(react@16.14.0): - resolution: {integrity: sha512-0v0ET2qn9oAam4K/Te9Q/2jtS4R2d6wUFqgk5VcxrCBm+4MB5BE+oQf2CA0RanUHbYaYFuagt/AugICU87ufxQ==} - peerDependencies: - react: '>= 0.14.0' - dependencies: - '@babel/runtime': 7.23.2 - highlight.js: 10.7.3 - lowlight: 1.11.0 - prismjs: 1.29.0 - react: 16.14.0 - refractor: 2.10.1 - dev: true - /react-syntax-highlighter@15.5.0(react@16.14.0): resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: - react: '>= 0.14.0' + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 highlight.js: 10.7.3 @@ -16811,7 +16974,7 @@ packages: /react-textarea-autosize@7.1.2(react@16.14.0): resolution: {integrity: sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg==} peerDependencies: - react: '>=0.14.0 <17.0.0' + react: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 prop-types: 15.8.1 @@ -16821,8 +16984,8 @@ packages: /react-transition-group@4.4.5(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@babel/runtime': 7.23.2 dom-helpers: 5.2.1 @@ -16972,14 +17135,6 @@ packages: '@babel/runtime': 7.23.2 dev: false - /refractor@2.10.1: - resolution: {integrity: sha512-Xh9o7hQiQlDbxo5/XkOX6H+x/q8rmlmZKr97Ie1Q8ZM32IRRd3B/UxuA/yXDW79DBSXGWxm2yRTbcTVmAciJRw==} - dependencies: - hastscript: 5.1.2 - parse-entities: 1.2.2 - prismjs: 1.29.0 - dev: true - /refractor@3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} dependencies: @@ -17051,14 +17206,12 @@ packages: engines: {node: '>=6.0.0'} dependencies: rc: 1.2.8 - dev: false /registry-url@5.1.0: resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} engines: {node: '>=8'} dependencies: rc: 1.2.8 - dev: false /regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} @@ -17264,7 +17417,6 @@ packages: /resolve-alpn@1.2.1: resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: false /resolve-cwd@2.0.0: resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} @@ -17293,6 +17445,13 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + /resolve-url@0.2.1: resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated @@ -17328,7 +17487,6 @@ packages: resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} dependencies: lowercase-keys: 2.0.0 - dev: false /restore-cursor@2.0.0: resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} @@ -17366,6 +17524,11 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + /right-pad@1.0.1: + resolution: {integrity: sha512-bYBjgxmkvTAfgIYy328fmkwhp39v8lwVgWhhrzxPV3yHtcSqyYKe9/XOhvW48UFjATg3VuJbpsp5822ACNvkmw==} + engines: {node: '>= 0.10'} + dev: true + /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true @@ -17591,7 +17754,7 @@ packages: dependencies: '@types/json-schema': 7.0.12 ajv: 8.12.0 - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) dev: true @@ -17607,12 +17770,12 @@ packages: resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} engines: {node: '>=8'} dependencies: - semver: 6.3.1 - dev: false + semver: 7.5.4 /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true + dev: false /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} @@ -17832,8 +17995,8 @@ packages: /simplebar-react@1.2.3(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-1EOWJzFC7eqHUp1igD1/tb8GBv5aPQA5ZMvpeDnVkpNJ3jAuvmrL2kir3HuijlxhG7njvw9ssxjjBa89E5DrJg==} peerDependencies: - react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 - react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: prop-types: 15.8.1 react: 16.14.0 @@ -18372,7 +18535,6 @@ packages: /strip-json-comments@2.0.1: resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} engines: {node: '>=0.10.0'} - dev: false /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} @@ -18410,7 +18572,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /style-to-object@0.3.0: @@ -18423,8 +18585,8 @@ packages: resolution: {integrity: sha512-VWNfYYBuXzuLS/QYEeoPgMErP26WL+dX9//rEh80B2mmlS1yRxRxuL5eax4m6ybYEUoHWlTy2XOU32767mlMkg==} engines: {node: '>= 16'} peerDependencies: - react: '>= 16.8.0' - react-dom: '>= 16.8.0' + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@emotion/is-prop-valid': 1.2.1 '@emotion/unitless': 0.8.1 @@ -18446,14 +18608,14 @@ packages: prop-types: 15.8.1 dev: false - /stylehacks@5.1.1(postcss@8.4.24): + /stylehacks@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: - postcss: ^8.2.15 + postcss: '>=8.4.31' dependencies: browserslist: 4.22.1 - postcss: 8.4.24 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: false @@ -18530,7 +18692,7 @@ packages: webpack: '>=2' dependencies: '@swc/core': 1.3.96 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /symbol-tree@3.2.4: @@ -18663,7 +18825,7 @@ packages: engines: {node: '>=8'} dev: false - /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(webpack@5.88.2): + /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(esbuild@0.18.17)(webpack@5.88.2): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -18681,11 +18843,12 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.20 '@swc/core': 1.3.96 + esbuild: 0.18.17 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.2 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /terser-webpack-plugin@5.3.9(webpack@5.88.2): @@ -18710,6 +18873,7 @@ packages: serialize-javascript: 6.0.1 terser: 5.19.2 webpack: 5.88.2 + dev: false /terser@4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} @@ -18737,7 +18901,7 @@ packages: engines: {node: '>=6'} dependencies: glob: 7.2.3 - minimatch: 3.1.2 + minimatch: 9.0.3 read-pkg-up: 4.0.0 require-main-filename: 2.0.0 dev: true @@ -18960,7 +19124,7 @@ packages: make-error: 1.3.6 mkdirp: 0.5.6 resolve: 1.22.2 - semver: 5.7.2 + semver: 7.5.4 yargs-parser: 20.2.9 dev: true @@ -19005,8 +19169,8 @@ packages: '@rollup/plugin-node-resolve': 7.1.3(rollup@1.32.1) '@rollup/plugin-replace': 2.4.2(rollup@1.32.1) '@types/jest': 24.9.1 - '@typescript-eslint/eslint-plugin': 2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@3.9.10) - '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@3.9.10) + '@typescript-eslint/eslint-plugin': 2.34.0(@typescript-eslint/parser@2.34.0)(eslint@6.8.0)(typescript@5.1.6) + '@typescript-eslint/parser': 2.34.0(eslint@6.8.0)(typescript@5.1.6) ansi-escapes: 4.3.2 asyncro: 3.0.0 babel-eslint: 10.1.0(eslint@6.8.0) @@ -19078,14 +19242,14 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsutils@3.21.0(typescript@3.9.10): + /tsutils@3.21.0(typescript@5.1.6): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 3.9.10 + typescript: 5.1.6 /tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} @@ -19115,7 +19279,6 @@ packages: /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - dev: false /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} @@ -19167,7 +19330,6 @@ packages: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 - dev: false /typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} @@ -19184,12 +19346,12 @@ packages: resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==} engines: {node: '>=4.2.0'} hasBin: true + dev: true /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} engines: {node: '>=14.17'} hasBin: true - dev: true /ua-parser-js@0.7.35: resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} @@ -19479,7 +19641,6 @@ packages: semver: 7.5.4 semver-diff: 3.1.1 xdg-basedir: 4.0.0 - dev: false /upper-case-first@1.1.2: resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} @@ -19548,7 +19709,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -19562,7 +19723,7 @@ packages: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -19574,8 +19735,8 @@ packages: /use-resize-observer@9.1.0(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} peerDependencies: - react: 16.8.0 - 18 - react-dom: 16.8.0 - 18 + react: ^16.11.0 + react-dom: ^16.11.0 dependencies: '@juggle/resize-observer': 3.4.0 react: 16.14.0 @@ -19587,7 +19748,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.11.0 peerDependenciesMeta: '@types/react': optional: true @@ -19815,7 +19976,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.88.2(@swc/core@1.3.96) + webpack: 5.88.2(@swc/core@1.3.96)(esbuild@0.18.17) dev: true /webpack-hot-middleware@2.25.4: @@ -19916,8 +20077,9 @@ packages: - '@swc/core' - esbuild - uglify-js + dev: false - /webpack@5.88.2(@swc/core@1.3.96): + /webpack@5.88.2(@swc/core@1.3.96)(esbuild@0.18.17): resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -19948,7 +20110,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.88.2) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.18.17)(webpack@5.88.2) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -20028,7 +20190,6 @@ packages: engines: {node: '>=8'} dependencies: string-width: 4.2.3 - dev: false /wildcard@2.0.1: resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} @@ -20209,7 +20370,6 @@ packages: is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - dev: false /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} @@ -20286,7 +20446,6 @@ packages: /xdg-basedir@4.0.0: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} - dev: false /xhr@2.6.0: resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} @@ -20409,6 +20568,11 @@ packages: engines: {node: '>=10'} dev: true + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + /yargs@13.3.2: resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: @@ -20454,6 +20618,19 @@ packages: yargs-parser: 20.2.9 dev: true + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + /yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 600b4bb4..9c9be4ba 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,2 @@ packages: - - 'packages/**' + - "packages/**"