diff --git a/examples/api-routes-graphql/package.json b/examples/api-routes-graphql/package.json index 048932a95a353..347228cf6d163 100644 --- a/examples/api-routes-graphql/package.json +++ b/examples/api-routes-graphql/package.json @@ -11,7 +11,7 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/node": "^18.0.2", diff --git a/examples/api-routes-graphql/pages/index.tsx b/examples/api-routes-graphql/pages/index.tsx index b06279fada828..03e13596ab0d6 100644 --- a/examples/api-routes-graphql/pages/index.tsx +++ b/examples/api-routes-graphql/pages/index.tsx @@ -11,18 +11,25 @@ const fetcher = (query: string) => .then((res) => res.json()) .then((json) => json.data) +type Data = { + users: { + name: string + }[] +} + export default function Index() { - const { data, error } = useSWR('{ users { name } }', fetcher) + const { data, error, isLoading } = useSWR('{ users { name } }', fetcher) if (error) return
Failed to load
- if (!data) return
Loading...
+ if (isLoading) return
Loading...
+ if (!data) return null const { users } = data return (
- {users.map((user: any, i: number) => ( -
{user.name}
+ {users.map((user, index) => ( +
{user.name}
))}
) diff --git a/examples/api-routes-middleware/package.json b/examples/api-routes-middleware/package.json index 537e3660922f3..7577a30e4da43 100644 --- a/examples/api-routes-middleware/package.json +++ b/examples/api-routes-middleware/package.json @@ -10,9 +10,10 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { + "@types/cookie": "^0.5.1", "@types/node": "^18.0.2", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", diff --git a/examples/api-routes-middleware/pages/index.tsx b/examples/api-routes-middleware/pages/index.tsx index 51c784cc104a7..566a92ff73797 100644 --- a/examples/api-routes-middleware/pages/index.tsx +++ b/examples/api-routes-middleware/pages/index.tsx @@ -1,12 +1,13 @@ import useSWR from 'swr' -const fetcher = (url) => fetch(url).then((res) => res.text()) +const fetcher = (url: string) => fetch(url).then((res) => res.text()) export default function Index() { - const { data, error } = useSWR('/api/cookies', fetcher) + const { data, error, isLoading } = useSWR('/api/cookies', fetcher) if (error) return
Failed to load
- if (!data) return
Loading...
+ if (isLoading) return
Loading...
+ if (!data) return null return
{`Cookie from response: "${data}"`}
} diff --git a/examples/api-routes-rest/package.json b/examples/api-routes-rest/package.json index 31ed2512a68c2..4706138c99349 100644 --- a/examples/api-routes-rest/package.json +++ b/examples/api-routes-rest/package.json @@ -9,7 +9,7 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/node": "^18.0.3", diff --git a/examples/api-routes-rest/pages/api/user/[id].ts b/examples/api-routes-rest/pages/api/user/[id].ts index 30942cf4e3919..3d48e81e07b33 100644 --- a/examples/api-routes-rest/pages/api/user/[id].ts +++ b/examples/api-routes-rest/pages/api/user/[id].ts @@ -1,10 +1,13 @@ import type { NextApiRequest, NextApiResponse } from 'next' +import type { User } from '../../../interfaces' -export default function userHandler(req: NextApiRequest, res: NextApiResponse) { - const { - query: { id, name }, - method, - } = req +export default function userHandler( + req: NextApiRequest, + res: NextApiResponse +) { + const { query, method } = req + const id = parseInt(query.id as string, 10) + const name = query.name as string switch (method) { case 'GET': diff --git a/examples/api-routes-rest/pages/api/users.ts b/examples/api-routes-rest/pages/api/users.ts index 238c5c55366c1..afb48839ec91c 100644 --- a/examples/api-routes-rest/pages/api/users.ts +++ b/examples/api-routes-rest/pages/api/users.ts @@ -4,7 +4,10 @@ import type { User } from '../../interfaces' // Fake users data const users: User[] = [{ id: 1 }, { id: 2 }, { id: 3 }] -export default function handler(_req: NextApiRequest, res: NextApiResponse) { +export default function handler( + _req: NextApiRequest, + res: NextApiResponse +) { // Get data from your database res.status(200).json(users) } diff --git a/examples/api-routes-rest/pages/index.tsx b/examples/api-routes-rest/pages/index.tsx index 15b852db3568c..6ab5eb5816c84 100644 --- a/examples/api-routes-rest/pages/index.tsx +++ b/examples/api-routes-rest/pages/index.tsx @@ -5,17 +5,18 @@ import Link from 'next/link' const fetcher = (url: string) => fetch(url).then((res) => res.json()) export default function Index() { - const { data, error } = useSwr('/api/users', fetcher) + const { data, error, isLoading } = useSwr('/api/users', fetcher) if (error) return
Failed to load users
- if (!data) return
Loading...
+ if (isLoading) return
Loading...
+ if (!data) return null return (
    {data.map((user) => (
  • - - {`User ${user.id}`} + + {user.name ?? `User ${user.id}`}
  • ))} diff --git a/examples/api-routes-rest/pages/user/[id].tsx b/examples/api-routes-rest/pages/user/[id].tsx index d348ead17b9a1..e2f52257b1023 100644 --- a/examples/api-routes-rest/pages/user/[id].tsx +++ b/examples/api-routes-rest/pages/user/[id].tsx @@ -5,14 +5,15 @@ import useSwr from 'swr' const fetcher = (url: string) => fetch(url).then((res) => res.json()) export default function UserPage() { - const router = useRouter() - const { data, error } = useSwr( - router.query.id ? `/api/user/${router.query.id}` : null, + const { query } = useRouter() + const { data, error, isLoading } = useSwr( + query.id ? `/api/user/${query.id}` : null, fetcher ) if (error) return
    Failed to load user
    - if (!data) return
    Loading...
    + if (isLoading) return
    Loading...
    + if (!data) return null return
    {data.name}
    } diff --git a/examples/api-routes/interfaces/index.ts b/examples/api-routes/interfaces/index.ts index 4cf2aed4ab4f0..72fee97a5f118 100644 --- a/examples/api-routes/interfaces/index.ts +++ b/examples/api-routes/interfaces/index.ts @@ -8,3 +8,7 @@ export type Person = { eye_color: string gender: string } + +export type ResponseError = { + message: string +} diff --git a/examples/api-routes/package.json b/examples/api-routes/package.json index d8f5f2748124d..906f88e4e2d78 100644 --- a/examples/api-routes/package.json +++ b/examples/api-routes/package.json @@ -9,7 +9,7 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/examples/api-routes/pages/api/people/[id].ts b/examples/api-routes/pages/api/people/[id].ts index 15576b6e41854..64ece80304da2 100644 --- a/examples/api-routes/pages/api/people/[id].ts +++ b/examples/api-routes/pages/api/people/[id].ts @@ -1,10 +1,6 @@ import { NextApiRequest, NextApiResponse } from 'next' import { people } from '../../../data' -import { Person } from '../../../interfaces' - -type ResponseError = { - message: string -} +import type { Person, ResponseError } from '../../../interfaces' export default function personHandler( req: NextApiRequest, @@ -12,10 +8,10 @@ export default function personHandler( ) { const { query } = req const { id } = query - const filtered = people.filter((p) => p.id === id) + const person = people.find((p) => p.id === id) // User with id exists - return filtered.length > 0 - ? res.status(200).json(filtered[0]) + return person + ? res.status(200).json(person) : res.status(404).json({ message: `User with id: ${id} not found.` }) } diff --git a/examples/api-routes/pages/index.tsx b/examples/api-routes/pages/index.tsx index cc84af2e154a6..5d6c334fd680b 100644 --- a/examples/api-routes/pages/index.tsx +++ b/examples/api-routes/pages/index.tsx @@ -1,18 +1,19 @@ import useSWR from 'swr' import PersonComponent from '../components/Person' -import { Person } from '../interfaces' +import type { Person } from '../interfaces' const fetcher = (url: string) => fetch(url).then((res) => res.json()) export default function Index() { - const { data, error } = useSWR('/api/people', fetcher) + const { data, error, isLoading } = useSWR('/api/people', fetcher) if (error) return
    Failed to load
    - if (!data) return
    Loading...
    + if (isLoading) return
    Loading...
    + if (!data) return null return (
      - {data.map((p: Person) => ( + {data.map((p) => ( ))}
    diff --git a/examples/api-routes/pages/person/[id].tsx b/examples/api-routes/pages/person/[id].tsx index 11d5d0cbcbb3d..116e914a996d3 100644 --- a/examples/api-routes/pages/person/[id].tsx +++ b/examples/api-routes/pages/person/[id].tsx @@ -1,5 +1,6 @@ import { useRouter } from 'next/router' import useSWR from 'swr' +import type { Person, ResponseError } from '../../interfaces' const fetcher = async (url: string) => { const res = await fetch(url) @@ -11,15 +12,16 @@ const fetcher = async (url: string) => { return data } -export default function Person() { +export default function PersonPage() { const { query } = useRouter() - const { data, error } = useSWR( - () => query.id && `/api/people/${query.id}`, - fetcher - ) + const { data, error, isLoading, isValidating } = useSWR< + Person, + ResponseError + >(() => (query.id ? `/api/people/${query.id}` : null), fetcher) if (error) return
    {error.message}
    - if (!data) return
    Loading...
    + if (isLoading) return
    Loading...
    + if (!data) return null return ( @@ -36,13 +38,21 @@ export default function Person() { - - - - - - - + {isValidating ? ( + + ) : ( + <> + + + + + + + + + )}
    {data.name}{data.height}{data.mass}{data.hair_color}{data.skin_color}{data.eye_color}{data.gender} + Validating... + {data.name}{data.height}{data.mass}{data.hair_color}{data.skin_color}{data.eye_color}{data.gender}
    diff --git a/examples/blog-with-comment/package.json b/examples/blog-with-comment/package.json index 229ab495b76a2..c3855eb5445a9 100644 --- a/examples/blog-with-comment/package.json +++ b/examples/blog-with-comment/package.json @@ -17,7 +17,7 @@ "react-dom": "^18.2.0", "remark": "^14.0.2", "remark-html": "^15.0.1", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/node": "^18.11.5", diff --git a/examples/with-axiom/package.json b/examples/with-axiom/package.json index 5c1b7401446c6..1ad4c6a0756c9 100644 --- a/examples/with-axiom/package.json +++ b/examples/with-axiom/package.json @@ -10,7 +10,7 @@ "next-axiom": "^0.10.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/react": "^18.0.5", diff --git a/examples/with-cookie-auth-fauna/package.json b/examples/with-cookie-auth-fauna/package.json index 0c186fa6b30f0..5d9648c854d3f 100644 --- a/examples/with-cookie-auth-fauna/package.json +++ b/examples/with-cookie-auth-fauna/package.json @@ -11,6 +11,6 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "0.2.3" + "swr": "^2.0.0" } } diff --git a/examples/with-fauna/package.json b/examples/with-fauna/package.json index fa5e3b8857684..1393ff874557e 100644 --- a/examples/with-fauna/package.json +++ b/examples/with-fauna/package.json @@ -15,7 +15,7 @@ "next": "latest", "react": "18.1.0", "react-dom": "18.1.0", - "swr": "1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "autoprefixer": "^10.4.7", diff --git a/examples/with-iron-session/package.json b/examples/with-iron-session/package.json index 1c24796f700d9..8476dadb55223 100644 --- a/examples/with-iron-session/package.json +++ b/examples/with-iron-session/package.json @@ -11,7 +11,7 @@ "octokit": "^1.7.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.0.1" + "swr": "^2.0.0" }, "devDependencies": { "@octokit/types": "^6.34.0", diff --git a/examples/with-magic/package.json b/examples/with-magic/package.json index 9a6089514a93a..bf8cd28bc25fc 100644 --- a/examples/with-magic/package.json +++ b/examples/with-magic/package.json @@ -13,6 +13,6 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "0.5.5" + "swr": "^2.0.0" } } diff --git a/examples/with-mongodb-mongoose/package.json b/examples/with-mongodb-mongoose/package.json index f88e5628710d9..ae7bd0a841dad 100644 --- a/examples/with-mongodb-mongoose/package.json +++ b/examples/with-mongodb-mongoose/package.json @@ -10,6 +10,6 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.0.1" + "swr": "^2.0.0" } } diff --git a/examples/with-mongodb-mongoose/pages/[id]/edit.js b/examples/with-mongodb-mongoose/pages/[id]/edit.js index 5f82f1834ed94..978f6db36a2ec 100644 --- a/examples/with-mongodb-mongoose/pages/[id]/edit.js +++ b/examples/with-mongodb-mongoose/pages/[id]/edit.js @@ -10,10 +10,15 @@ const fetcher = (url) => const EditPet = () => { const router = useRouter() const { id } = router.query - const { data: pet, error } = useSWR(id ? `/api/pets/${id}` : null, fetcher) + const { + data: pet, + error, + isLoading, + } = useSWR(id ? `/api/pets/${id}` : null, fetcher) if (error) return

    Failed to load

    - if (!pet) return

    Loading...

    + if (isLoading) return

    Loading...

    + if (!pet) return null const petForm = { name: pet.name, diff --git a/examples/with-mux-video/package.json b/examples/with-mux-video/package.json index b37ed8e43989d..039f11a52d17a 100644 --- a/examples/with-mux-video/package.json +++ b/examples/with-mux-video/package.json @@ -12,7 +12,7 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0" + "swr": "^2.0.0" }, "devDependencies": { "@types/node": "^18.11.10", diff --git a/examples/with-neo4j/package.json b/examples/with-neo4j/package.json index 849169dbac081..459c2e4fe5970 100644 --- a/examples/with-neo4j/package.json +++ b/examples/with-neo4j/package.json @@ -10,6 +10,6 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "0.3.9" + "swr": "^2.0.0" } } diff --git a/examples/with-neo4j/pages/actor/[name].js b/examples/with-neo4j/pages/actor/[name].js index be6680f9b9084..230fd915a6b07 100644 --- a/examples/with-neo4j/pages/actor/[name].js +++ b/examples/with-neo4j/pages/actor/[name].js @@ -9,10 +9,11 @@ import Footer from '../../components/footer' export default function Actor() { const router = useRouter() const { name } = router.query - const { data, error } = useSWR(`/api/actors/${name}`, fetcher) + const { data, error, isLoading } = useSWR(`/api/actors/${name}`, fetcher) if (error) return
    failed to load
    - if (!data) return
    loading...
    + if (isLoading) return
    loading...
    + if (!data) return null return (
    diff --git a/examples/with-neo4j/pages/index.js b/examples/with-neo4j/pages/index.js index 3de7141eea0f4..f7c103eccf780 100644 --- a/examples/with-neo4j/pages/index.js +++ b/examples/with-neo4j/pages/index.js @@ -6,10 +6,11 @@ import Header from '../components/header' import Footer from '../components/footer' export default function Home() { - const { data, error } = useSWR('/api/movies', fetcher) + const { data, error, isLoading } = useSWR('/api/movies', fetcher) if (error) return
    failed to load
    - if (!data) return
    loading...
    + if (isLoading) return
    loading...
    + if (!data) return null return (
    diff --git a/examples/with-passport-and-next-connect/lib/hooks.jsx b/examples/with-passport-and-next-connect/lib/hooks.jsx index 2fa25a8d2be2e..ba73b7ceb5838 100644 --- a/examples/with-passport-and-next-connect/lib/hooks.jsx +++ b/examples/with-passport-and-next-connect/lib/hooks.jsx @@ -3,9 +3,9 @@ import useSWR from 'swr' export const fetcher = (url) => fetch(url).then((r) => r.json()) export function useUser() { - const { data, mutate } = useSWR('/api/user', fetcher) + const { data, mutate, isLoading } = useSWR('/api/user', fetcher) // if data is not defined, the query has not completed - const loading = !data + const loading = isLoading || !data const user = data?.user return [user, { mutate, loading }] } diff --git a/examples/with-passport-and-next-connect/package.json b/examples/with-passport-and-next-connect/package.json index 461c5cc0b5130..618bb792e0f6e 100644 --- a/examples/with-passport-and-next-connect/package.json +++ b/examples/with-passport-and-next-connect/package.json @@ -14,7 +14,7 @@ "passport-local": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0", + "swr": "^2.0.0", "uuidv4": "6.2.5" } } diff --git a/examples/with-passport/package.json b/examples/with-passport/package.json index 2d01f8c0bb4af..9dd3447d096f5 100644 --- a/examples/with-passport/package.json +++ b/examples/with-passport/package.json @@ -14,7 +14,7 @@ "passport-local": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^1.3.0", + "swr": "^2.0.0", "uuid": "8.3.1" } } diff --git a/examples/with-realm-web/package.json b/examples/with-realm-web/package.json index 046fa80b17471..4be7c16cd8c70 100644 --- a/examples/with-realm-web/package.json +++ b/examples/with-realm-web/package.json @@ -10,6 +10,6 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "realm-web": "0.4.0", - "swr": "0.2.3" + "swr": "^2.0.0" } } diff --git a/examples/with-redis/package.json b/examples/with-redis/package.json index 87fbc11c9ff2e..25408e5d9eba5 100644 --- a/examples/with-redis/package.json +++ b/examples/with-redis/package.json @@ -14,7 +14,7 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "react-hot-toast": "^1.0.2", - "swr": "^0.5.1", + "swr": "^2.0.0", "tailwindcss": "^2.0.2", "uuid": "^8.3.2" }, diff --git a/examples/with-stripe-typescript/package.json b/examples/with-stripe-typescript/package.json index f1c9d7fd57fc4..7c3fe3c3ed396 100644 --- a/examples/with-stripe-typescript/package.json +++ b/examples/with-stripe-typescript/package.json @@ -14,7 +14,7 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "stripe": "10.14.0", - "swr": "^1.3.0", + "swr": "^2.0.0", "use-shopping-cart": "3.1.2", "redux": "4.2.0" }, diff --git a/examples/with-supabase-auth-realtime-db/package.json b/examples/with-supabase-auth-realtime-db/package.json index 0a120f3cd96b2..cb248b6b3eaf4 100644 --- a/examples/with-supabase-auth-realtime-db/package.json +++ b/examples/with-supabase-auth-realtime-db/package.json @@ -11,6 +11,6 @@ "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "1.1.2" + "swr": "^2.0.0" } } diff --git a/examples/with-unsplash/package.json b/examples/with-unsplash/package.json index c682667e0dfb2..5d064368d9bcc 100644 --- a/examples/with-unsplash/package.json +++ b/examples/with-unsplash/package.json @@ -9,7 +9,7 @@ "next": "^9.5.1", "react": "^18.2.0", "react-dom": "^18.2.0", - "swr": "^0.3.0", + "swr": "^2.0.0", "unsplash-js": "^6.0.0" }, "devDependencies": { diff --git a/package.json b/package.json index d2e537239be4b..1484f2fd16156 100644 --- a/package.json +++ b/package.json @@ -138,9 +138,9 @@ "eslint-plugin-eslint-plugin": "4.3.0", "eslint-plugin-import": "2.22.1", "eslint-plugin-jest": "24.3.5", + "eslint-plugin-jsdoc": "39.6.4", "eslint-plugin-react": "7.23.2", "eslint-plugin-react-hooks": "4.5.0", - "eslint-plugin-jsdoc": "39.6.4", "event-stream": "4.0.1", "execa": "2.0.3", "expect-type": "0.14.2", @@ -212,7 +212,7 @@ "styled-components": "6.0.0-beta.5", "styled-jsx": "5.1.1", "styled-jsx-plugin-postcss": "3.0.2", - "swr": "2.0.0-rc.0", + "swr": "^2.0.0", "tailwindcss": "1.1.3", "taskr": "1.1.0", "tree-kill": "1.2.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ba773c9c6f19e..4f75865856aaa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -174,7 +174,7 @@ importers: styled-components: 6.0.0-beta.5 styled-jsx: 5.1.1 styled-jsx-plugin-postcss: 3.0.2 - swr: 2.0.0-rc.0 + swr: ^2.0.0 tailwindcss: 1.1.3 taskr: 1.1.0 tree-kill: 1.2.2 @@ -350,7 +350,7 @@ importers: styled-components: 6.0.0-beta.5_biqbaboplfbrettd7655fr4n2y styled-jsx: 5.1.1_uuaxwgga6hqycsez5ok7v2wg4i styled-jsx-plugin-postcss: 3.0.2 - swr: 2.0.0-rc.0_react@18.2.0 + swr: 2.0.0_react@18.2.0 tailwindcss: 1.1.3 taskr: 1.1.0 tree-kill: 1.2.2 @@ -1077,7 +1077,7 @@ packages: slash: 2.0.0 optionalDependencies: '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.4.3 + chokidar: 3.5.3 dev: true /@babel/code-frame/7.12.11: @@ -1089,7 +1089,8 @@ packages: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.16.10 + '@babel/highlight': 7.18.6 + dev: true /@babel/code-frame/7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} @@ -1115,7 +1116,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.1.2 - '@babel/code-frame': 7.16.7 + '@babel/code-frame': 7.18.6 '@babel/generator': 7.18.0 '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0 '@babel/helper-module-transforms': 7.18.0 @@ -1291,6 +1292,25 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.18.0: + resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.0 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.20.7 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} engines: {node: '>=6.9.0'} @@ -1331,11 +1351,11 @@ packages: '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/traverse': 7.18.0 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -1349,11 +1369,11 @@ packages: '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/traverse': 7.18.0 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -1366,10 +1386,10 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -1406,14 +1426,14 @@ packages: resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/types': 7.18.0 /@babel/helper-function-name/7.19.0: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/types': 7.18.0 /@babel/helper-hoist-variables/7.16.7: @@ -1447,6 +1467,13 @@ packages: dependencies: '@babel/types': 7.18.0 + /@babel/helper-member-expression-to-functions/7.20.7: + resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.0 + dev: true + /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} @@ -1468,7 +1495,7 @@ packages: '@babel/helper-simple-access': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1483,7 +1510,7 @@ packages: '@babel/helper-simple-access': 7.19.4 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1518,6 +1545,10 @@ packages: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + /@babel/helper-remap-async-to-generator/7.14.5: resolution: {integrity: sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==} engines: {node: '>=6.9.0'} @@ -1590,6 +1621,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-replace-supers/7.20.7: + resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.20.7 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/template': 7.20.7 + '@babel/traverse': 7.18.0 + '@babel/types': 7.18.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-simple-access/7.18.2: resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} engines: {node: '>=6.9.0'} @@ -1647,7 +1692,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1659,7 +1704,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1671,7 +1716,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1681,7 +1726,7 @@ packages: resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.0 '@babel/types': 7.18.0 transitivePeerDependencies: @@ -1727,7 +1772,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} @@ -1736,7 +1781,7 @@ packages: '@babel/core': ^7.13.0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.0 dev: true @@ -1760,7 +1805,7 @@ packages: '@babel/core': ^7.13.0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.0 @@ -1771,7 +1816,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-proposal-async-generator-functions/7.14.9_@babel+core@7.18.0: @@ -1781,7 +1826,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.14.5 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 transitivePeerDependencies: @@ -1810,7 +1855,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.0 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 transitivePeerDependencies: @@ -1823,7 +1868,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -1849,7 +1894,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1874,7 +1919,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1886,7 +1931,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -1914,7 +1959,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -1926,7 +1971,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 dev: true @@ -1937,7 +1982,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 dev: true @@ -1948,7 +1993,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.18.0: @@ -1969,7 +2014,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 dev: true @@ -1991,7 +2036,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.18.0: @@ -2001,7 +2046,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 dev: true @@ -2023,7 +2068,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.18.0: @@ -2033,7 +2078,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 dev: true @@ -2044,7 +2089,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 dev: true @@ -2066,7 +2111,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.18.0: @@ -2076,7 +2121,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.0: @@ -2097,7 +2142,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.18.0: @@ -2118,7 +2163,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 dev: true @@ -2129,7 +2174,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.18.0: @@ -2138,7 +2183,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.0 @@ -2179,7 +2224,7 @@ packages: '@babel/compat-data': 7.20.0 '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.0 @@ -2190,7 +2235,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 dev: true @@ -2212,7 +2257,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.18.0: @@ -2222,7 +2267,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 @@ -2233,7 +2278,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 dev: true @@ -2245,7 +2290,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 @@ -2257,7 +2302,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -2269,8 +2314,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.18.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -2296,7 +2341,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -2309,7 +2354,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -2323,8 +2368,8 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.18.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -2354,7 +2399,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -2367,7 +2412,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.0: @@ -2389,7 +2434,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.0: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -2448,7 +2493,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-assertions/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-DoM/wsaMaDXpM2fa+QkZeqqfYs340WTY+boLRiZ7ckqt3PAFt1CdGmMXVniFCcN8RuStim2Z4Co3bIKdWjTXIQ==} @@ -2477,7 +2522,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.0: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -2485,7 +2530,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.0: @@ -2502,7 +2547,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==} @@ -2521,7 +2566,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.0: @@ -2554,7 +2599,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.0: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -2570,7 +2615,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} @@ -2597,7 +2642,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.18.0: resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} @@ -2606,7 +2651,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.18.0: @@ -2616,7 +2661,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.0: @@ -2636,7 +2681,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} @@ -2646,7 +2691,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.14.5 transitivePeerDependencies: - supports-color @@ -2674,7 +2719,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -2686,7 +2731,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.0: @@ -2706,7 +2751,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-block-scoping/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==} @@ -2715,7 +2760,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.0: @@ -2735,7 +2780,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-classes/7.14.9_@babel+core@7.18.0: resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} @@ -2747,7 +2792,7 @@ packages: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.16.7 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 @@ -2786,7 +2831,7 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 @@ -2800,7 +2845,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.0: @@ -2820,7 +2865,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.18.0: resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} @@ -2829,7 +2874,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.0: @@ -2849,7 +2894,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} @@ -2859,7 +2904,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.0: @@ -2881,7 +2926,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==} @@ -2890,7 +2935,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.0: @@ -2910,7 +2955,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} @@ -2920,7 +2965,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.14.5 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.0: @@ -2942,7 +2987,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} @@ -2951,7 +2996,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.18.0 /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.18.0: @@ -2961,7 +3006,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.0: @@ -2981,7 +3026,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} @@ -2991,7 +3036,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.0: @@ -3015,7 +3060,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} @@ -3024,7 +3069,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.0: @@ -3044,7 +3089,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} @@ -3053,7 +3098,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.0: @@ -3073,7 +3118,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} @@ -3083,7 +3128,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -3111,7 +3156,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -3123,7 +3168,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.19.4 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -3152,7 +3197,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.19.4 transitivePeerDependencies: - supports-color @@ -3166,7 +3211,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-identifier': 7.19.1 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -3183,7 +3228,7 @@ packages: '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-identifier': 7.16.7 + '@babel/helper-validator-identifier': 7.19.1 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -3198,7 +3243,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-identifier': 7.19.1 transitivePeerDependencies: - supports-color @@ -3211,7 +3256,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -3237,7 +3282,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -3270,7 +3315,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} @@ -3279,7 +3324,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.0: @@ -3299,7 +3344,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==} @@ -3308,7 +3353,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.16.7 transitivePeerDependencies: - supports-color @@ -3334,7 +3379,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color @@ -3366,7 +3411,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} @@ -3375,7 +3420,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.0: @@ -3395,7 +3440,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-constant-elements/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==} @@ -3404,7 +3449,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-react-display-name/7.14.5_@babel+core@7.18.0: @@ -3424,7 +3469,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-react-jsx-development/7.14.5_@babel+core@7.18.0: @@ -3470,7 +3515,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.0 '@babel/types': 7.18.0 dev: true @@ -3484,7 +3529,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.0 '@babel/types': 7.18.0 dev: true @@ -3508,7 +3553,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.18.0: @@ -3539,7 +3584,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.0 /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.18.0: @@ -3549,7 +3594,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.0: @@ -3569,7 +3614,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-runtime/7.18.0_@babel+core@7.18.0: resolution: {integrity: sha512-7kM/jJ3DD/y1hDPn0jov12DoUIFsxLiItprhNydUSibxaywaxNqKwq+ODk72J9ePn4LWobIc5ik6TAJhVl8IkQ==} @@ -3595,7 +3640,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.0: @@ -3615,7 +3660,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-spread/7.14.6_@babel+core@7.18.0: resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} @@ -3624,7 +3669,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true @@ -3646,7 +3691,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.18.0: @@ -3656,7 +3701,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.0: @@ -3676,7 +3721,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} @@ -3685,7 +3730,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.0: @@ -3705,7 +3750,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} @@ -3714,7 +3759,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.0: @@ -3734,7 +3779,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.18.0: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} @@ -3744,7 +3789,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -3771,7 +3816,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.18.0 transitivePeerDependencies: - supports-color @@ -3784,7 +3829,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.0: @@ -3804,7 +3849,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} @@ -3814,7 +3859,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.0: @@ -3836,7 +3881,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/preset-env/7.15.0_@babel+core@7.18.0: resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} @@ -3847,7 +3892,7 @@ packages: '@babel/compat-data': 7.20.0 '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.14.5_@babel+core@7.18.0 '@babel/plugin-proposal-async-generator-functions': 7.14.9_@babel+core@7.18.0 @@ -4017,7 +4062,7 @@ packages: '@babel/compat-data': 7.20.0 '@babel/core': 7.18.0 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.0 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.0 @@ -4112,7 +4157,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.18.0 @@ -4122,7 +4167,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.18.0 '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.18.0 '@babel/types': 7.18.0 @@ -4163,7 +4208,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.0 '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.18.0 @@ -4178,7 +4223,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.18.0 transitivePeerDependencies: @@ -4205,7 +4250,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-typescript': 7.20.0_@babel+core@7.18.0 transitivePeerDependencies: @@ -4254,8 +4299,8 @@ packages: '@babel/parser': 7.18.0 '@babel/types': 7.18.0 - /@babel/template/7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + /@babel/template/7.20.7: + resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 @@ -6418,7 +6463,7 @@ packages: glob: 7.2.0 is-reference: 1.2.1 magic-string: 0.25.7 - resolve: 1.22.0 + resolve: 1.22.1 rollup: 2.35.1 dev: true @@ -6442,7 +6487,7 @@ packages: builtin-modules: 3.1.0 deepmerge: 4.2.2 is-module: 1.0.0 - resolve: 1.22.0 + resolve: 1.22.1 rollup: 2.35.1 dev: true @@ -6454,7 +6499,7 @@ packages: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 - picomatch: 2.2.3 + picomatch: 2.3.1 rollup: 2.35.1 dev: true @@ -7647,7 +7692,7 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.7 + semver: 7.3.8 tsutils: 3.21.0_typescript@4.8.2 typescript: 4.8.2 transitivePeerDependencies: @@ -8127,8 +8172,8 @@ packages: dependencies: color-convert: 2.0.1 - /ansi-styles/5.1.0: - resolution: {integrity: sha512-osxifZo3ar56+e8tdYreU6p8FZGciBHo5O0JoDAxMUqZuyNUb+yHEwYtJZ+Z32R459jEgtwVf1u8D7qYwU0l6w==} + /ansi-styles/5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} dev: true @@ -8147,12 +8192,12 @@ packages: rxjs: 6.6.2 dev: true - /anymatch/3.1.1: - resolution: {integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==} + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 - picomatch: 2.2.3 + picomatch: 2.3.1 /append-field/1.0.0: resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==} @@ -8579,7 +8624,7 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@istanbuljs/load-nyc-config': 1.0.0 '@istanbuljs/schema': 0.1.2 istanbul-lib-instrument: 5.2.0 @@ -8592,7 +8637,7 @@ packages: resolution: {integrity: sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/types': 7.18.0 '@types/babel__core': 7.1.14 '@types/babel__traverse': 7.11.1 @@ -8604,7 +8649,7 @@ packages: dependencies: '@babel/runtime': 7.16.7 cosmiconfig: 7.0.0 - resolve: 1.22.0 + resolve: 1.22.1 dev: true /babel-plugin-module-resolver/4.1.0: @@ -8614,8 +8659,8 @@ packages: find-babel-config: 1.2.0 glob: 7.2.0 pkg-up: 3.1.0 - reselect: 4.1.6 - resolve: 1.22.0 + reselect: 4.1.7 + resolve: 1.22.1 dev: true /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.18.0: @@ -9508,20 +9553,20 @@ packages: promise-polyfill: 6.1.0 dev: true - /chokidar/3.4.3: - resolution: {integrity: sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==} + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} requiresBuild: true dependencies: - anymatch: 3.1.1 + anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.3 normalize-path: 3.0.0 - readdirp: 3.5.0 + readdirp: 3.6.0 optionalDependencies: - fsevents: 2.1.3 + fsevents: 2.3.2 /chownr/1.1.3: resolution: {integrity: sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==} @@ -12261,7 +12306,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - ansi-styles: 5.1.0 + ansi-styles: 5.2.0 jest-get-type: 27.5.1 jest-matcher-utils: 27.5.1 jest-message-util: 27.5.1 @@ -12376,7 +12421,7 @@ packages: hasBin: true dependencies: debug: 4.3.4 - get-stream: 5.1.0 + get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: '@types/yauzl': 2.10.0 @@ -12911,6 +12956,7 @@ packages: os: [darwin] deprecated: '"Please update to latest v2.3 or v2.2"' requiresBuild: true + dev: true optional: true /fsevents/2.3.2: @@ -12918,7 +12964,6 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true - dev: true optional: true /function-bind/1.1.1: @@ -13064,6 +13109,13 @@ packages: dependencies: pump: 3.0.0 + /get-stream/5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + /get-stream/6.0.0: resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} engines: {node: '>=10'} @@ -13521,7 +13573,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.0 + uglify-js: 3.17.4 dev: true /har-schema/2.0.0: @@ -14312,8 +14364,8 @@ packages: loose-envify: 1.4.0 dev: true - /ip/1.1.5: - resolution: {integrity: sha512-rBtCAQAJm8A110nbwn6YdveUnuZH3WrC36IwkRXxDnq53JvXA2NVQvB7IHyKomxK1MJ4VDNw3UtFDdXQ+AvLYA==} + /ip/2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} /ipaddr.js/1.9.0: resolution: {integrity: sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==} @@ -15167,7 +15219,7 @@ packages: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.3 '@types/node': 18.11.18 - anymatch: 3.1.1 + anymatch: 3.1.3 fb-watchman: 2.0.1 graceful-fs: 4.2.10 jest-regex-util: 27.5.1 @@ -15187,7 +15239,7 @@ packages: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.3 '@types/node': 18.11.18 - anymatch: 3.1.1 + anymatch: 3.1.3 fb-watchman: 2.0.1 graceful-fs: 4.2.10 jest-regex-util: 27.5.1 @@ -15386,7 +15438,7 @@ packages: jest-pnp-resolver: 1.2.2_jest-resolve@27.0.6 jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.0 + resolve: 1.22.1 slash: 3.0.0 dev: true @@ -15401,7 +15453,7 @@ packages: jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.0 + resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true @@ -15582,7 +15634,7 @@ packages: chalk: 4.1.2 ci-info: 3.3.1 graceful-fs: 4.2.10 - picomatch: 2.2.3 + picomatch: 2.3.1 dev: true /jest-util/28.1.3: @@ -15594,7 +15646,7 @@ packages: chalk: 4.1.2 ci-info: 3.3.1 graceful-fs: 4.2.10 - picomatch: 2.2.3 + picomatch: 2.3.1 dev: true /jest-validate/27.0.6: @@ -15861,7 +15913,7 @@ packages: engines: {node: '>=6'} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /json5/2.2.3: @@ -16157,7 +16209,7 @@ packages: is-plain-object: 5.0.0 object.map: 1.0.1 rechoir: 0.8.0 - resolve: 1.22.0 + resolve: 1.22.1 dev: true /limit-spawn/0.0.3: @@ -17199,6 +17251,10 @@ packages: /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + /minimist/1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} + dev: true + /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} @@ -17611,7 +17667,7 @@ packages: lodash.get: 4.4.2 lower-case: 2.0.2 mkdirp: 1.0.4 - resolve: 1.22.0 + resolve: 1.22.1 title-case: 3.0.3 upper-case: 2.0.2 dev: true @@ -17678,7 +17734,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.5 - resolve: 1.22.0 + resolve: 1.22.1 semver: 5.7.1 validate-npm-package-license: 3.0.4 @@ -17687,7 +17743,7 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 3.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 7.3.8 validate-npm-package-license: 3.0.4 @@ -18660,6 +18716,10 @@ packages: resolution: {integrity: sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==} engines: {node: '>=8.6'} + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + /pidtree/0.3.0: resolution: {integrity: sha512-9CT4NFlDcosssyg8KVFltgokyKZIFjoBxw8CTGy+5F38Y1eQWrt8tRayiUOXE+zVKQnYu5BR8JjCtvK3BcnBhg==} engines: {node: '>=0.10'} @@ -19738,7 +19798,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: ansi-regex: 5.0.1 - ansi-styles: 5.1.0 + ansi-styles: 5.2.0 react-is: 17.0.2 dev: true @@ -19748,7 +19808,7 @@ packages: dependencies: '@jest/schemas': 28.1.3 ansi-regex: 5.0.1 - ansi-styles: 5.1.0 + ansi-styles: 5.2.0 react-is: 18.2.0 dev: true @@ -20410,11 +20470,11 @@ packages: once: 1.4.0 dev: true - /readdirp/3.5.0: - resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: - picomatch: 2.2.3 + picomatch: 2.3.1 /recast/0.20.5: resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} @@ -20429,14 +20489,14 @@ packages: resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: true /rechoir/0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: true /redent/1.0.0: @@ -20828,7 +20888,7 @@ packages: engines: {node: '>=0.10.0'} /require-from-string/1.2.1: - resolution: {integrity: sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=} + resolution: {integrity: sha512-H7AkJWMobeskkttHyhTVtS0fxpFLjxhbfMa6Bk3wimP7sdPRGL3EyCg3sAQenFfAe+xQ+oAc85Nmtvq0ROM83Q==} engines: {node: '>=0.10.0'} dev: true @@ -20849,8 +20909,8 @@ packages: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /reselect/4.1.6: - resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==} + /reselect/4.1.7: + resolution: {integrity: sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==} dev: true /resolve-cwd/3.0.0: @@ -20914,6 +20974,14 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.11.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + /resolve/2.0.0-next.3: resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} dependencies: @@ -21074,7 +21142,7 @@ packages: postcss-load-config: 3.0.0 postcss-modules: 4.0.0_postcss@8.4.5 promise.series: 0.2.0 - resolve: 1.22.0 + resolve: 1.22.1 rollup-pluginutils: 2.8.2 safe-identifier: 0.4.2 style-inject: 0.3.0 @@ -21237,7 +21305,7 @@ packages: engines: {node: '>=12.0.0'} hasBin: true dependencies: - chokidar: 3.4.3 + chokidar: 3.5.3 immutable: 4.1.0 source-map-js: 1.0.2 @@ -21372,6 +21440,7 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 + dev: true /semver/7.3.8: resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} @@ -21637,7 +21706,7 @@ packages: dependencies: agent-base: 6.0.2 debug: 4.3.4 - socks: 2.6.2 + socks: 2.7.1 transitivePeerDependencies: - supports-color dev: true @@ -21648,15 +21717,15 @@ packages: dependencies: agent-base: 6.0.2 debug: 4.3.4 - socks: 2.6.2 + socks: 2.7.1 transitivePeerDependencies: - supports-color - /socks/2.6.2: - resolution: {integrity: sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==} + /socks/2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: - ip: 1.1.5 + ip: 2.0.0 smart-buffer: 4.2.0 /sort-keys/2.0.0: @@ -22329,8 +22398,8 @@ packages: util.promisify: 1.0.0 dev: true - /swr/2.0.0-rc.0_react@18.2.0: - resolution: {integrity: sha512-QOp+4Cqnb/uuLKeuRDh7aT+ws6wSWWKPqfyIpBXK8DM3IugOYeLO5v+390I0p1MIfRd0CQlAIJZBEgmHaTfDuA==} + /swr/2.0.0_react@18.2.0: + resolution: {integrity: sha512-IhUx5yPkX+Fut3h0SqZycnaNLXLXsb2ECFq0Y29cxnK7d8r7auY2JWNbCW3IX+EqXUg3rwNJFlhrw5Ye/b6k7w==} engines: {pnpm: '7'} peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 @@ -23045,8 +23114,8 @@ packages: resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==} dev: true - /uglify-js/3.17.0: - resolution: {integrity: sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg==} + /uglify-js/3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true