diff --git a/.changeset/popular-eagles-shake.md b/.changeset/popular-eagles-shake.md new file mode 100644 index 00000000..9ee4b20d --- /dev/null +++ b/.changeset/popular-eagles-shake.md @@ -0,0 +1,5 @@ +--- +'@kitql/all-in': patch +--- + +remove error when no module diff --git a/.changeset/rotten-dancers-hammer.md b/.changeset/rotten-dancers-hammer.md new file mode 100644 index 00000000..26aaadcf --- /dev/null +++ b/.changeset/rotten-dancers-hammer.md @@ -0,0 +1,5 @@ +--- +'vite-plugin-watch-and-run': patch +--- + +format message update with correct space diff --git a/package.json b/package.json index d61443bd..f2a10d4e 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,7 @@ "type": "module", "scripts": { "prepare": "husky install", - "all:gen": "pnpm --filter @kitql/all-in gen", - "all:dev": "pnpm --filter @kitql/all-in dev", + "dev:all": "pnpm --filter @kitql/all-in dev", "dev:w": "cd website && npm run dev", "test": "vitest --coverage", "lint": "eslint --ignore-path .prettierignore .", diff --git a/packages/all-in/package.json b/packages/all-in/package.json index 254feb78..bcf8fc2a 100644 --- a/packages/all-in/package.json +++ b/packages/all-in/package.json @@ -20,9 +20,9 @@ }, "devDependencies": { "@sveltejs/adapter-auto": "1.0.0-next.86", - "@sveltejs/kit": "1.0.0-next.531", + "@sveltejs/kit": "1.0.0-next.532", "@sveltejs/package": "1.0.0-next.5", - "@types/glob": "^8.0.0", + "@types/glob": "8.0.0", "@typescript-eslint/eslint-plugin": "5.37.0", "@typescript-eslint/parser": "5.37.0", "eslint": "8.23.1", @@ -39,24 +39,24 @@ "vite": "3.2.2" }, "dependencies": { - "@envelop/core": "3.0.3", - "@envelop/graphql-modules": "4.0.3", - "@graphql-codegen/cli": "2.13.8", - "@graphql-codegen/graphql-modules-preset": "2.5.4", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "2.3.5", - "@graphql-codegen/typescript": "2.8.0", - "@graphql-codegen/typescript-resolvers": "2.7.5", - "@graphql-eslint/eslint-plugin": "3.12.0", - "@graphql-typed-document-node/core": "3.1.1", + "@envelop/core": "^3.0.3", + "@envelop/graphql-modules": "^4.0.3", + "@graphql-codegen/cli": "^2.13.11", + "@graphql-codegen/graphql-modules-preset": "^2.5.5", + "@graphql-codegen/introspection": "^2.2.1", + "@graphql-codegen/typed-document-node": "^2.3.6", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-resolvers": "^2.7.6", + "@graphql-eslint/eslint-plugin": "^3.13.0", + "@graphql-typed-document-node/core": "^3.1.1", "@kitql/helper": "0.6.0-next.3", - "@types/node": "^18.11.8", + "@types/node": "^18.11.9", "glob": "^8.0.3", "graphql": "^15.8.0", "graphql-config": "^4.3.6", "graphql-modules": "^2.1.0", "graphql-scalars": "^1.20.0", - "graphql-yoga": "3.0.0-next.8", + "graphql-yoga": "3.0.0-next.10", "safe-stable-stringify": "^2.4.1", "ts-node": "^10.9.1", "vite-plugin-watch-and-run": "1.1.0-next.4" diff --git a/packages/all-in/src/lib/vite/generate.ts b/packages/all-in/src/lib/vite/generate.ts index 561dcad4..73e4b534 100644 --- a/packages/all-in/src/lib/vite/generate.ts +++ b/packages/all-in/src/lib/vite/generate.ts @@ -14,9 +14,7 @@ import { getPrismaEnum } from './prismaHelper.js' import { readLines } from './readWrite.js' import { updateModuleTypes } from './updateModuleTypes.js' -export function generate(config?: KitQLVite) { - const log = new Log('KitQL') - +export function generate(log: Log, config?: KitQLVite) { const providersFolder = 'providers' as const const { outputFolder, moduleOutputFolder, importBaseTypesFrom, modules, localDev } = { diff --git a/packages/all-in/src/lib/vite/plugin.ts b/packages/all-in/src/lib/vite/plugin.ts index fc64389b..4f698722 100644 --- a/packages/all-in/src/lib/vite/plugin.ts +++ b/packages/all-in/src/lib/vite/plugin.ts @@ -1,10 +1,13 @@ import { createContext, generate as codeGen_generate } from '@graphql-codegen/cli' +import { Log } from '@kitql/helper' import { resolve } from 'path' import type { Plugin } from 'vite' import watch_and_run from 'vite-plugin-watch-and-run' import type { KitQLVite } from './KitQLVite.js' -import { generate } from './generate.js' +import { generate as kitql_generate } from './generate.js' + +const log = new Log('KitQL') export function kitql(config?: KitQLVite): Plugin[] { return [ @@ -15,11 +18,13 @@ export function kitql(config?: KitQLVite): Plugin[] { await gooo(config) }, }, + watch_and_run([ { name: 'kitql', watch: resolve('src/**/*.(graphql)'), run: () => gooo(config), + quiet: true, }, ]), ] @@ -42,8 +47,14 @@ async function gooo(config?: KitQLVite) { await codeGen_generate(context) // KitQL (needs to be second as we write in the codegen module files) - generate(config) + kitql_generate(log, config) } catch (e) { - console.error(e) + if (e.name === 'AggregateError') { + // No '*.graphql' found. Maybe schema is coming from mesh only? + // Still, let's run KitQL generate to clean up old files + kitql_generate(log, config) + } else { + console.error(e) + } } } diff --git a/packages/vite-plugin-watch-and-run/src/index.ts b/packages/vite-plugin-watch-and-run/src/index.ts index b48d8596..7d8846ff 100644 --- a/packages/vite-plugin-watch-and-run/src/index.ts +++ b/packages/vite-plugin-watch-and-run/src/index.ts @@ -150,12 +150,12 @@ async function watcher(absolutePath: string | null, watchKind: WatchKind, watchA if (!info.quiet) { let message = `${logGreen('✔')} Watch ${logCyan(watchKind)}` if (info.watch && absolutePath) { - message += logGreen(' ' + absolutePath) + message += logGreen(' ' + absolutePath.replaceAll(process.cwd(), '')) } if (typeof info.run === 'string') { message + ` and run ${logGreen(info.run)} ` } - message += logCyan(info.delay + 'ms') + message += ` ${logCyan(info.delay + 'ms')}` log.info(message) } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9b0b86b5..9c6c3946 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -48,22 +48,22 @@ importers: packages/all-in: specifiers: - '@envelop/core': 3.0.3 - '@envelop/graphql-modules': 4.0.3 - '@graphql-codegen/cli': 2.13.8 - '@graphql-codegen/graphql-modules-preset': 2.5.4 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': 2.3.5 - '@graphql-codegen/typescript': 2.8.0 - '@graphql-codegen/typescript-resolvers': 2.7.5 - '@graphql-eslint/eslint-plugin': 3.12.0 - '@graphql-typed-document-node/core': 3.1.1 + '@envelop/core': ^3.0.3 + '@envelop/graphql-modules': ^4.0.3 + '@graphql-codegen/cli': ^2.13.11 + '@graphql-codegen/graphql-modules-preset': ^2.5.5 + '@graphql-codegen/introspection': ^2.2.1 + '@graphql-codegen/typed-document-node': ^2.3.6 + '@graphql-codegen/typescript': ^2.8.1 + '@graphql-codegen/typescript-resolvers': ^2.7.6 + '@graphql-eslint/eslint-plugin': ^3.13.0 + '@graphql-typed-document-node/core': ^3.1.1 '@kitql/helper': 0.6.0-next.3 '@sveltejs/adapter-auto': 1.0.0-next.86 - '@sveltejs/kit': 1.0.0-next.531 + '@sveltejs/kit': 1.0.0-next.532 '@sveltejs/package': 1.0.0-next.5 - '@types/glob': ^8.0.0 - '@types/node': ^18.11.8 + '@types/glob': 8.0.0 + '@types/node': ^18.11.9 '@typescript-eslint/eslint-plugin': 5.37.0 '@typescript-eslint/parser': 5.37.0 eslint: 8.23.1 @@ -74,7 +74,7 @@ importers: graphql-config: ^4.3.6 graphql-modules: ^2.1.0 graphql-scalars: ^1.20.0 - graphql-yoga: 3.0.0-next.8 + graphql-yoga: 3.0.0-next.10 prettier: 2.7.1 prettier-plugin-svelte: 2.7.0 safe-stable-stringify: ^2.4.1 @@ -90,28 +90,28 @@ importers: dependencies: '@envelop/core': 3.0.3 '@envelop/graphql-modules': 4.0.3_swcgnb6mat2fw2rmrwpn36pmpq - '@graphql-codegen/cli': 2.13.8_nlbch44dn2bygutja6asmrx65q - '@graphql-codegen/graphql-modules-preset': 2.5.4_graphql@15.8.0 + '@graphql-codegen/cli': 2.13.11_7olbn5bsg7e4yewx4wbzcpnvwa + '@graphql-codegen/graphql-modules-preset': 2.5.5_graphql@15.8.0 '@graphql-codegen/introspection': 2.2.1_graphql@15.8.0 - '@graphql-codegen/typed-document-node': 2.3.5_graphql@15.8.0 - '@graphql-codegen/typescript': 2.8.0_graphql@15.8.0 - '@graphql-codegen/typescript-resolvers': 2.7.5_graphql@15.8.0 - '@graphql-eslint/eslint-plugin': 3.12.0_im6qww6itonacd7gxdmjofevyq + '@graphql-codegen/typed-document-node': 2.3.6_graphql@15.8.0 + '@graphql-codegen/typescript': 2.8.1_graphql@15.8.0 + '@graphql-codegen/typescript-resolvers': 2.7.6_graphql@15.8.0 + '@graphql-eslint/eslint-plugin': 3.13.0_r3xgavq7eetcd4yxywff3dqswu '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 '@kitql/helper': link:../helper - '@types/node': 18.11.8 + '@types/node': 18.11.9 glob: 8.0.3 graphql: 15.8.0 - graphql-config: 4.3.6_im6qww6itonacd7gxdmjofevyq + graphql-config: 4.3.6_r3xgavq7eetcd4yxywff3dqswu graphql-modules: 2.1.0_graphql@15.8.0 graphql-scalars: 1.20.0_graphql@15.8.0 - graphql-yoga: 3.0.0-next.8_osjdi4fu7r6hdxzkp7wlqnwsmu + graphql-yoga: 3.0.0-next.10_4mmsdp5dkkwvmk6zzd5moo5kfy safe-stable-stringify: 2.4.1 - ts-node: 10.9.1_fy2m6x4qt6do62mqbbbnteawpm + ts-node: 10.9.1_h6wsvvmh4l7tb54yk3ecr4mgtm vite-plugin-watch-and-run: link:../vite-plugin-watch-and-run devDependencies: '@sveltejs/adapter-auto': 1.0.0-next.86 - '@sveltejs/kit': 1.0.0-next.531_svelte@3.50.1+vite@3.2.2 + '@sveltejs/kit': 1.0.0-next.532_svelte@3.50.1+vite@3.2.2 '@sveltejs/package': 1.0.0-next.5_iprco5tylfmvffqgrvqxc46njy '@types/glob': 8.0.0 '@typescript-eslint/eslint-plugin': 5.37.0_22c5fnooleyfkzrkkgdmel5kmi @@ -174,6 +174,7 @@ importers: next-sitemap: 3.1.30 react: 18.2.0 react-dom: 18.2.0 + tailwindcss: ^3.2.1 dependencies: '@theguild/components': 4.3.0_azq6kxkn3od7qdylwkyksrwopy next: 12.3.1_biqbaboplfbrettd7655fr4n2y @@ -185,6 +186,7 @@ importers: '@theguild/tailwind-config': 0.2.1 '@types/node': 18.8.4 '@types/react': 18.0.21 + tailwindcss: 3.2.1 packages: @@ -345,13 +347,13 @@ packages: peerDependencies: graphql: '*' dependencies: - '@babel/core': 7.19.3 - '@babel/generator': 7.19.5 - '@babel/parser': 7.19.4 - '@babel/runtime': 7.19.4 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 - babel-preset-fbjs: 3.4.0_@babel+core@7.19.3 + '@babel/core': 7.19.6 + '@babel/generator': 7.20.1 + '@babel/parser': 7.20.1 + '@babel/runtime': 7.20.1 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + babel-preset-fbjs: 3.4.0_@babel+core@7.19.6 chalk: 4.1.2 fb-watchman: 2.0.2 fbjs: 3.0.4 @@ -386,19 +388,25 @@ packages: /@babel/compat-data/7.19.4: resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==} engines: {node: '>=6.9.0'} + dev: true + + /@babel/compat-data/7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + engines: {node: '>=6.9.0'} + dev: false /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.5 + '@babel/generator': 7.20.1 '@babel/helper-module-transforms': 7.19.0 '@babel/helpers': 7.19.4 - '@babel/parser': 7.19.4 + '@babel/parser': 7.20.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -435,20 +443,20 @@ packages: - supports-color dev: true - /@babel/core/7.19.3: - resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} + /@babel/core/7.19.6: + resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.5 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 - '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.4 - '@babel/parser': 7.19.4 + '@babel/generator': 7.20.1 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 + '@babel/helper-module-transforms': 7.19.6 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -474,12 +482,21 @@ packages: '@babel/types': 7.19.4 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + dev: true + + /@babel/generator/7.20.1: + resolution: {integrity: sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 dev: false /@babel/helper-compilation-targets/7.19.3_@babel+core@7.17.8: @@ -495,26 +512,26 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: - resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.4 - '@babel/core': 7.19.3 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.19.6 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: false - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.6: resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 @@ -535,26 +552,26 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 /@babel/helper-member-expression-to-functions/7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 dev: false /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 /@babel/helper-module-transforms/7.19.0: resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} @@ -570,12 +587,29 @@ packages: '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color + dev: true + + /@babel/helper-module-transforms/7.19.6: + resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.19.4 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + transitivePeerDependencies: + - supports-color + dev: false /@babel/helper-optimise-call-expression/7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 dev: false /@babel/helper-plugin-utils/7.10.4: @@ -594,8 +628,8 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 transitivePeerDependencies: - supports-color dev: false @@ -604,20 +638,20 @@ packages: resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 - /@babel/helper-skip-transparent-expression-wrappers/7.18.9: - resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} + /@babel/helper-skip-transparent-expression-wrappers/7.20.0: + resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 dev: false /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.0 /@babel/helper-string-parser/7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} @@ -640,6 +674,18 @@ packages: '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color + dev: true + + /@babel/helpers/7.20.1: + resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + transitivePeerDependencies: + - supports-color + dev: false /@babel/highlight/7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} @@ -663,15 +709,23 @@ packages: hasBin: true dependencies: '@babel/types': 7.19.4 + dev: true + + /@babel/parser/7.20.1: + resolution: {integrity: sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.0 - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.3: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3 + '@babel/core': 7.19.6 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color @@ -689,36 +743,36 @@ packages: dev: true optional: true - /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.3: + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.6: resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.4 - '@babel/core': 7.19.3 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.19.6 dev: false - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.6: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -732,13 +786,13 @@ packages: dev: true optional: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -752,54 +806,54 @@ packages: dev: true optional: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.6: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.3: - resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==} + /@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.19.6: + resolution: {integrity: sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.6: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 @@ -811,101 +865,100 @@ packages: - supports-color dev: false - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.6: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.3: - resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==} + /@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.19.6: + resolution: {integrity: sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.6: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.6 dev: false - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.6: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.6: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.6: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.3: - resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.19.6: + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 - '@babel/helper-module-transforms': 7.19.0 + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-simple-access': 7.19.4 - babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: @@ -923,78 +976,78 @@ packages: dev: true optional: true - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3: - resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} + /@babel/plugin-transform-parameters/7.20.1_@babel+core@7.19.6: + resolution: {integrity: sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.6: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 - '@babel/types': 7.19.4 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.6 + '@babel/types': 7.20.0 dev: false - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.6: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.6: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: false - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.6: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.3 + '@babel/core': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 dev: false @@ -1013,13 +1066,20 @@ packages: dependencies: regenerator-runtime: 0.13.10 + /@babel/runtime/7.20.1: + resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.10 + dev: false + /@babel/template/7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.19.4 - '@babel/types': 7.19.4 + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 /@babel/traverse/7.17.3: resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} @@ -1055,6 +1115,24 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true + + /@babel/traverse/7.20.1: + resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.1 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color /@babel/types/7.17.0: resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} @@ -1071,6 +1149,15 @@ packages: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + dev: true + + /@babel/types/7.20.0: + resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 /@bcoe/v8-coverage/0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -1297,13 +1384,6 @@ packages: '@jridgewell/trace-mapping': 0.3.9 dev: false - /@envelop/core/3.0.2: - resolution: {integrity: sha512-0kYBq0gKIARF6vFYw5upUcBgI2oP3wYaDTUfjiX4RhMIkox3DiKPUwRiZHu16ILGr8Qi6p+HTKXRyoSdl9CCqA==} - dependencies: - '@envelop/types': 3.0.0 - tslib: 2.4.0 - dev: false - /@envelop/core/3.0.3: resolution: {integrity: sha512-GXIb7HhsSYerMJR/AhJ6nN9F+w17bYRdUfu7ZXTixJEjS/3SXXK29qvr42iLLEqrnum57nk6cDyA3DBZLnuJ9w==} dependencies: @@ -1321,37 +1401,37 @@ packages: '@envelop/core': 3.0.3 graphql: 15.8.0 graphql-modules: 2.1.0_graphql@15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@envelop/parser-cache/5.0.2_o5vb7pwixfwijqfxopwelffwri: - resolution: {integrity: sha512-ZGgNYNw5yRLXMzAyBXICk6P3ay/ldoz9mZ9LTdzaAQGOl8KEumP+qZztwZSonldHz04xUzAg0tf5+Iqs/sV7kA==} + /@envelop/parser-cache/5.0.3_y4of6s3r3enooimbdeukn72z54: + resolution: {integrity: sha512-3H3PZI//1ConuD0MmkKl3Sm9j7vRQvI/fIgvzXbE0n/OuuVV7D9rmtnSEqTkXufAgxKv674T2DJF4QPQHOy9Ag==} peerDependencies: - '@envelop/core': ^3.0.2 + '@envelop/core': ^3.0.3 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 3.0.2 + '@envelop/core': 3.0.3 graphql: 15.8.0 lru-cache: 6.0.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@envelop/types/3.0.0: resolution: {integrity: sha512-ohcZE+XNvgNqURdCA5RLN0yW3nbvi4Pkq8TA6RpG16PKakl3yDgzXBLit1SR6+9By0/XCBfto/9r48ZH25kmvw==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@envelop/validation-cache/5.0.2_o5vb7pwixfwijqfxopwelffwri: - resolution: {integrity: sha512-1CAm6uobrRIo6bmO28L/o1V83IY+g1x1BZe+C57KbWM8yTg1wePrmQ2iN103H5PaRpJtE5xf2hWHY2/JYQvEVw==} + /@envelop/validation-cache/5.0.3_y4of6s3r3enooimbdeukn72z54: + resolution: {integrity: sha512-zJcP8CFCdeUTkIymbBnuRgp3+G/YCubl7Pi+WoM0W2LAsJl7yxvqoaHS5aPbpNJunqUomsnRwBtkcK966EzjsQ==} peerDependencies: - '@envelop/core': ^3.0.2 + '@envelop/core': ^3.0.3 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 3.0.2 + '@envelop/core': 3.0.3 graphql: 15.8.0 lru-cache: 6.0.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@esbuild/android-arm/0.15.11: @@ -1363,8 +1443,8 @@ packages: dev: true optional: true - /@esbuild/android-arm/0.15.12: - resolution: {integrity: sha512-IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA==} + /@esbuild/android-arm/0.15.13: + resolution: {integrity: sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -1390,8 +1470,8 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.15.12: - resolution: {integrity: sha512-tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw==} + /@esbuild/linux-loong64/0.15.13: + resolution: {integrity: sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -1427,38 +1507,38 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@graphql-codegen/cli/2.13.8_nlbch44dn2bygutja6asmrx65q: - resolution: {integrity: sha512-xX+lT51nMBD3b6lDyA+BDyJoEKnsPMctM/Fx8st0gEy7ZgdWLrsgOBOn4k71yyejOy3CHnRV5LMKWdhiQDaYsA==} + /@graphql-codegen/cli/2.13.11_7olbn5bsg7e4yewx4wbzcpnvwa: + resolution: {integrity: sha512-PJF36a1i6M7Btj1kB4PWWzBUO3u2BJzsd/6KXxRmEugcxrbaCnbTDDktopy0CZYKdqaFbXaowwbRY8Tk8DV99Q==} hasBin: true peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@babel/generator': 7.19.5 + '@babel/generator': 7.20.1 '@babel/template': 7.18.10 - '@babel/types': 7.19.4 - '@graphql-codegen/core': 2.6.2_graphql@15.8.0 - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-tools/apollo-engine-loader': 7.3.13_graphql@15.8.0 - '@graphql-tools/code-file-loader': 7.3.6_graphql@15.8.0 - '@graphql-tools/git-loader': 7.2.6_graphql@15.8.0 - '@graphql-tools/github-loader': 7.3.13_graphql@15.8.0 - '@graphql-tools/graphql-file-loader': 7.5.5_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.6_graphql@15.8.0 + '@babel/types': 7.20.0 + '@graphql-codegen/core': 2.6.5_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-tools/apollo-engine-loader': 7.3.17_graphql@15.8.0 + '@graphql-tools/code-file-loader': 7.3.10_graphql@15.8.0 + '@graphql-tools/git-loader': 7.2.10_graphql@15.8.0 + '@graphql-tools/github-loader': 7.3.17_graphql@15.8.0 + '@graphql-tools/graphql-file-loader': 7.5.9_graphql@15.8.0 + '@graphql-tools/json-file-loader': 7.4.10_graphql@15.8.0 '@graphql-tools/load': 7.8.0_graphql@15.8.0 - '@graphql-tools/prisma-loader': 7.2.24_osjdi4fu7r6hdxzkp7wlqnwsmu - '@graphql-tools/url-loader': 7.16.4_osjdi4fu7r6hdxzkp7wlqnwsmu - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/prisma-loader': 7.2.30_4mmsdp5dkkwvmk6zzd5moo5kfy + '@graphql-tools/url-loader': 7.16.10_4mmsdp5dkkwvmk6zzd5moo5kfy + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 '@whatwg-node/fetch': 0.3.2 ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 4.1.1_vpvfnim2gqt3tmsyv3wi5dwdwa + cosmiconfig-typescript-loader: 4.1.1_wj74ebk5myntns6gd57amojzny debounce: 1.2.1 detect-indent: 6.1.0 graphql: 15.8.0 - graphql-config: 4.3.6_im6qww6itonacd7gxdmjofevyq - inquirer: 8.2.4 + graphql-config: 4.3.6_r3xgavq7eetcd4yxywff3dqswu + inquirer: 8.2.5 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 listr2: 4.0.5 @@ -1467,9 +1547,9 @@ packages: shell-quote: 1.7.4 string-env-interpolation: 1.0.1 ts-log: 2.2.5 - tslib: 2.4.0 + tslib: 2.4.1 yaml: 1.10.2 - yargs: 17.6.0 + yargs: 17.6.1 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -1483,30 +1563,30 @@ packages: - utf-8-validate dev: false - /@graphql-codegen/core/2.6.2_graphql@15.8.0: - resolution: {integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==} + /@graphql-codegen/core/2.6.5_graphql@15.8.0: + resolution: {integrity: sha512-oSbM8vINFxcV1GUasJTDIemMpEG1t6NkBG8odQCt/3ZExCYmoviHhG9vJB89QqJeU5W06qQB6SJn/dg/gv5Aqg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-tools/schema': 9.0.4_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-tools/schema': 9.0.8_graphql@15.8.0 + '@graphql-tools/utils': 9.0.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@graphql-codegen/graphql-modules-preset/2.5.4_graphql@15.8.0: - resolution: {integrity: sha512-1fN02Sx8DQMTtStJ3wao3fARoxTKSxM/19KWkpk4mNKOfFDoFcTotrZwI+Y7vmxEmTJFYHAd4iJeCZ+MYUJNog==} + /@graphql-codegen/graphql-modules-preset/2.5.5_graphql@15.8.0: + resolution: {integrity: sha512-iNur2pqYPRcAmVF1IQJXv8QqGr+bk4HgGOkNHK8LEuaLbTtS/dxUt0a++u6r5ONKq0OEwYqqFmU0vlpHmO/Qbg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.13.0_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 change-case-all: 1.0.14 graphql: 15.8.0 parse-filepath: 1.0.2 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color @@ -1517,27 +1597,27 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-codegen/plugin-helpers/2.7.1_graphql@15.8.0: - resolution: {integrity: sha512-wpEShhwbQp8pqXolnSCNaj0pU91LbuBvYHpYqm96TUqyeKQYAYRVmw3JIt0g8UQpKYhg8lYIDwWdcINOYqkGLg==} + /@graphql-codegen/plugin-helpers/2.7.2_graphql@15.8.0: + resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 15.8.0 import-from: 4.0.0 lodash: 4.17.21 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@graphql-codegen/schema-ast/2.5.1_graphql@15.8.0: @@ -1545,96 +1625,96 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@graphql-codegen/typed-document-node/2.3.5_graphql@15.8.0: - resolution: {integrity: sha512-d+CDFQhbqYhgQGPxcchKRVVbMgYX6/xN+nUB53R53v0NxtgmtMGzbcE49ozLzjAoKuu4LVn8Mvi2bfJZ7/YOGQ==} + /@graphql-codegen/typed-document-node/2.3.6_graphql@15.8.0: + resolution: {integrity: sha512-uJqBNj9z/5iIUgLwXsyWmnBaCzRtK+OiZsknTQmjzx/BzKTXK5lrbn06n4KK690wqkelpdZplTtww34ExmHG9Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@15.8.0 auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-codegen/typescript-resolvers/2.7.5_graphql@15.8.0: - resolution: {integrity: sha512-19tG40B6sghd0msSvRa5Wx/QpworUPojHfCL0606rL8tgfhMFIrfwCQGuXs8Sbq+zxwSex+0rCAWBfPk2lt7OQ==} + /@graphql-codegen/typescript-resolvers/2.7.6_graphql@15.8.0: + resolution: {integrity: sha512-z3wX3CV3MK7o52RAqbm0qXzAY9fPg0QLPArpdRYZ4AZ4sGAZQfGaQjyFcBJnY7pVB8KIEbBY7M4HNAqSmWH6+g==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 - '@graphql-codegen/typescript': 2.8.0_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.13.0_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 + '@graphql-codegen/typescript': 2.8.1_graphql@15.8.0 + '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 auto-bind: 4.0.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-codegen/typescript/2.8.0_graphql@15.8.0: - resolution: {integrity: sha512-atQ6NFfMmoknJi0QdVSozPugKcgeJB6t1/cVskbhVtX8tAEFFLjl6H23mpz3t35AH6aGWtvx2LCjUSxHI6P6xA==} + /@graphql-codegen/typescript/2.8.1_graphql@15.8.0: + resolution: {integrity: sha512-kweV1DOOH2blvMheVL55TT0s9bxkmF/zijN9mdk9pRD20i/rI/46qbh8fNKqy/PV12vZOmZGNL6tigdghG2bqg==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 '@graphql-codegen/schema-ast': 2.5.1_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.13.0_graphql@15.8.0 + '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@15.8.0 auto-bind: 4.0.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-codegen/visitor-plugin-common/2.13.0_graphql@15.8.0: - resolution: {integrity: sha512-8lKw4l8W6yKaqrxx025eB6+lRMWaBKedbKjC9UyLhXAnqTi3tgaRKOBo4zvl1+KzE6R41Ruov9UcGD7OjgmBrw==} + /@graphql-codegen/visitor-plugin-common/2.13.1_graphql@15.8.0: + resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@15.8.0 '@graphql-tools/optimize': 1.3.1_graphql@15.8.0 - '@graphql-tools/relay-operation-optimizer': 6.5.6_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/relay-operation-optimizer': 6.5.10_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 graphql: 15.8.0 graphql-tag: 2.12.6_graphql@15.8.0 parse-filepath: 1.0.2 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-eslint/eslint-plugin/3.12.0_im6qww6itonacd7gxdmjofevyq: - resolution: {integrity: sha512-DHa6hhCYxGjUtGK6VWcaWHs1RNSIpuZaQOzI7F2ZoVdtd3+amxv6S7h0KwUe+CX+oV3Oxa7x5bFonc/Td6wjaw==} + /@graphql-eslint/eslint-plugin/3.13.0_r3xgavq7eetcd4yxywff3dqswu: + resolution: {integrity: sha512-ZFWqGrSU7GnKuNRQ0omlmLikHarQ3kUf4bd3OgFte/JnyHTDeHm5M1o5L32bnHQzuuMpSXEItLy8wqqKAlrGGg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@babel/code-frame': 7.18.6 - '@graphql-tools/code-file-loader': 7.3.6_graphql@15.8.0 - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@15.8.0 - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/code-file-loader': 7.3.10_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@15.8.0 + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 chalk: 4.1.2 debug: 4.3.4 fast-glob: 3.2.12 graphql: 15.8.0 - graphql-config: 4.3.6_im6qww6itonacd7gxdmjofevyq + graphql-config: 4.3.6_r3xgavq7eetcd4yxywff3dqswu graphql-depth-limit: 1.1.0_graphql@15.8.0 lodash.lowercase: 4.3.0 transitivePeerDependencies: @@ -1648,54 +1728,54 @@ packages: - utf-8-validate dev: false - /@graphql-tools/apollo-engine-loader/7.3.13_graphql@15.8.0: - resolution: {integrity: sha512-fr2TcA9fM+H81ymdtyDaocZ/Ua4Vhhf1IvpQoPpuEUwLorREd86N8VORUEIBvEdJ1b7Bz7NqwL3RnM5m9KXftA==} + /@graphql-tools/apollo-engine-loader/7.3.17_graphql@15.8.0: + resolution: {integrity: sha512-h8rSDQDjtSElYc1vWZPIx6ZWMozSFyIN9hfGSY8kHIESU9O0ShEzs1lzRhmMmaAO75e7GxNwAjrBv/OCrxpETg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 - '@whatwg-node/fetch': 0.4.7 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + '@whatwg-node/fetch': 0.5.1 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding dev: false - /@graphql-tools/batch-execute/8.5.1_graphql@15.8.0: - resolution: {integrity: sha512-hRVDduX0UDEneVyEWtc2nu5H2PxpfSfM/riUlgZvo/a/nG475uyehxR5cFGvTEPEQUKY3vGIlqvtRigzqTfCew==} + /@graphql-tools/batch-execute/8.5.10_graphql@15.8.0: + resolution: {integrity: sha512-f3b/UPvscQ4NaSmSQIeZPNFhpZ9xb3AftKKSn9NzsUp3vxz0d8tymBVn28f51oqiqN9BMDpCH9P8TZrKpH1//Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.9.0_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 dataloader: 2.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/batch-execute/8.5.6_graphql@15.8.0: - resolution: {integrity: sha512-33vMvVDLBKsNJVNhcySVXF+zkcRL/GRs1Lt+MxygrYCypcAPpFm+amE2y9vOCFufuaKExIX7Lonnmxu19vPzaQ==} + /@graphql-tools/batch-execute/8.5.1_graphql@15.8.0: + resolution: {integrity: sha512-hRVDduX0UDEneVyEWtc2nu5H2PxpfSfM/riUlgZvo/a/nG475uyehxR5cFGvTEPEQUKY3vGIlqvtRigzqTfCew==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/utils': 8.9.0_graphql@15.8.0 dataloader: 2.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/code-file-loader/7.3.6_graphql@15.8.0: - resolution: {integrity: sha512-PNWWSwSuQAqANerDwS0zdQ5FPipirv75TjjzBHnY+6AF/WvKq5sQiUQheA2P7B+MZc/KdQ7h/JAGMQOhKNVA+Q==} + /@graphql-tools/code-file-loader/7.3.10_graphql@15.8.0: + resolution: {integrity: sha512-UbEbuzhL01CvNhlesWMAo2ffRoyPRffTDlnUnkyvb6RuJkZhgY5A0k1RJYjt1uJQOkzPQLkkVKdSYqhHRkoH7g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 globby: 11.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color @@ -1711,114 +1791,118 @@ packages: '@graphql-tools/utils': 8.9.0_graphql@15.8.0 dataloader: 2.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/delegate/9.0.8_graphql@15.8.0: - resolution: {integrity: sha512-h+Uce0Np0eKj7wILOvlffRQ9jEQ4KelNXfqG8A2w+2sO2P6CbKsR7bJ4ch9lcUdCBbZ4Wg6L/K+1C4NRFfzbNw==} + /@graphql-tools/delegate/9.0.14_graphql@15.8.0: + resolution: {integrity: sha512-yKwNQl10fOdKxSk5yBoKnSjq1oumf4QYVinV9niD9KVow6j0dONtaiAYvhzaQwN/Xwwi7oADFACmKRtphlhFTw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 8.5.6_graphql@15.8.0 - '@graphql-tools/schema': 9.0.4_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/batch-execute': 8.5.10_graphql@15.8.0 + '@graphql-tools/executor': 0.0.6_graphql@15.8.0 + '@graphql-tools/schema': 9.0.8_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 dataloader: 2.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/executor/0.0.1_graphql@15.8.0: - resolution: {integrity: sha512-+li0brhr6NdViS/pyaDCRTUKf9/lCgaNcfrE4p1yjubwKFoqc5dhwiB3kQ0lOIso2ipAKk08kJ4sBLqJz3osWg==} + /@graphql-tools/executor/0.0.6_graphql@15.8.0: + resolution: {integrity: sha512-2KIj1grRb1Lni97xgX1ryekcjU/WTMC1ZdPpnd0nYrBWs/C4Nv4UMNP7E/Tr8za8zlrsESvEUbpLHsBRiQsGxA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 + '@repeaterjs/repeater': 3.0.4 graphql: 15.8.0 + tslib: 2.4.1 + value-or-promise: 1.0.11 dev: false - /@graphql-tools/git-loader/7.2.6_graphql@15.8.0: - resolution: {integrity: sha512-QA94Gjp70xcdIYUbZDIm8fnuDN0IvoIIVVU+lXQemoV+vDeJKIjrP9tfOTjVDPIDXQnCYswvu9HLe8BlEApQYw==} + /@graphql-tools/git-loader/7.2.10_graphql@15.8.0: + resolution: {integrity: sha512-y27w+7I5LmOXzz4EI3XHR+ZM2rZJquHnPAiEXLIt5Nh+9Z0frqtb4AJma3gAeRKROcKg5VN/Bx/ehp68S48lHw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 graphql: 15.8.0 is-glob: 4.0.3 micromatch: 4.0.5 - tslib: 2.4.0 + tslib: 2.4.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color dev: false - /@graphql-tools/github-loader/7.3.13_graphql@15.8.0: - resolution: {integrity: sha512-4RTjdtdtQC+n9LJMKpBThQGD3LnpeLVjU2A7BoVuKR+NQPJtcUzzuD6dXeYm5RiOMOQUsPGxQWKhJenW20aLUg==} + /@graphql-tools/github-loader/7.3.17_graphql@15.8.0: + resolution: {integrity: sha512-JstgZUnifz2lQAk/mw7gq1uPSr5bG+7nw3IXZmUKOU+8zBjmFugRVWxLtJ1/bxZzqnhmYlC7nBqt1Ej1Tn5qKA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/graphql-tag-pluck': 7.3.6_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 - '@whatwg-node/fetch': 0.4.7 + '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + '@whatwg-node/fetch': 0.5.1 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: false - /@graphql-tools/graphql-file-loader/7.5.5_graphql@15.8.0: - resolution: {integrity: sha512-OL+7qO1S66TpMK7OGz8Ag2WL08HlxKxrObVSDlxzWbSubWuXM5v959XscYAKRf6daYcVpkfNvO37QjflL9mjhg==} + /@graphql-tools/graphql-file-loader/7.5.9_graphql@15.8.0: + resolution: {integrity: sha512-hEvWFLOG8JGsguWWdHqaFvj0xqwQu4KhqAKEjmIBq4vipVKLcmcjvOM56S0fv/dtn5pcKp9ZOZAxgncYVJ1hzw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 6.7.6_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/import': 6.7.10_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 globby: 11.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 unixify: 1.0.0 dev: false - /@graphql-tools/graphql-tag-pluck/7.3.6_graphql@15.8.0: - resolution: {integrity: sha512-qULgqsOGKY1/PBqmP7fJZqbCg/TzPHKB9Wl51HGA9QjGymrzmrH5EjvsC8RtgdubF8yuTTVVFTz1lmSQ7RPssQ==} + /@graphql-tools/graphql-tag-pluck/7.3.10_graphql@15.8.0: + resolution: {integrity: sha512-A3FHMbi90NHWTIzrwnbI0kHwCWfSL8j7zXuuIZKL009V+M8K0DPg/+ZCy/4SQB14yl/NTz5ZQ/0GXffD3qvMDg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.19.4 - '@babel/traverse': 7.19.4 - '@babel/types': 7.19.4 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@babel/parser': 7.20.1 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - supports-color dev: false - /@graphql-tools/import/6.7.6_graphql@15.8.0: - resolution: {integrity: sha512-WtUyiO2qCaK/H4u81zAw/NbBvCOzwKl4N+Vl+FqrFCzYobscwL6x6roePyoXM1O3+JJIIn3CETv4kg4kwxaBVw==} + /@graphql-tools/import/6.7.10_graphql@15.8.0: + resolution: {integrity: sha512-6L19Ep0pP5wWywq9/jwCt2FdCJnEnyrxkmRkSRdYoTEmOFz5xrsfhyUfWl8ibx34gWzVYhCDOX1bN43zsLCbDA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 graphql: 15.8.0 resolve-from: 5.0.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@graphql-tools/json-file-loader/7.4.6_graphql@15.8.0: - resolution: {integrity: sha512-34AfjCitO4NtJ5AcXYLcFF3GDsMVTycrljSaBA2t1d7B4bMPtREDphKXLMc/Uf2zW6IW1i1sZZyrcmArPy1Z8A==} + /@graphql-tools/json-file-loader/7.4.10_graphql@15.8.0: + resolution: {integrity: sha512-/njUvIW/zdSr70eWDfDQNDXp2UQLe+YKFRLMZkpuISrw5cdvGaMepwpr0Yz6kFnHGwB6wSYLH25LkRAzpiKz+g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 globby: 11.1.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 unixify: 1.0.0 dev: false @@ -1831,7 +1915,29 @@ packages: '@graphql-tools/utils': 8.12.0_graphql@15.8.0 graphql: 15.8.0 p-limit: 3.1.0 - tslib: 2.4.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/load/7.8.4_graphql@15.8.0: + resolution: {integrity: sha512-swS3sJx/gVpSw1CfI18zSwLlTFbN6PVlkfaLZJ8VN3d/3C+ESff553LLleXGgzOY9X0H1x3VHZeAR2+HUCrbbw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/schema': 9.0.8_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + graphql: 15.8.0 + p-limit: 3.1.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/merge/8.3.10_graphql@15.8.0: + resolution: {integrity: sha512-/hSg69JwqEA+t01wQmMGKPuaJ9VJBSz6uAXhbNNrTBJu8bmXljw305NVXM49pCwDKFVUGtbTqYrBeLcfT3RoYw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + graphql: 15.8.0 + tslib: 2.4.1 dev: false /@graphql-tools/merge/8.3.1_graphql@15.8.0: @@ -1841,7 +1947,7 @@ packages: dependencies: '@graphql-tools/utils': 8.9.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@graphql-tools/merge/8.3.6_graphql@15.8.0: @@ -1851,7 +1957,7 @@ packages: dependencies: '@graphql-tools/utils': 8.12.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@graphql-tools/optimize/1.3.1_graphql@15.8.0: @@ -1860,16 +1966,16 @@ packages: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@graphql-tools/prisma-loader/7.2.24_osjdi4fu7r6hdxzkp7wlqnwsmu: - resolution: {integrity: sha512-CRQvoraCIcQa44RMSF3EpzLedouR9SSLC6ylFEHCFf2b8r1EfbK5NOdLL1V9znOjjapI6/oJURlFWdldcAaMgg==} + /@graphql-tools/prisma-loader/7.2.30_4mmsdp5dkkwvmk6zzd5moo5kfy: + resolution: {integrity: sha512-EmYC6ltX2TxOKPgiqdVZctm3uyXdwo53GBwWNyOTIx+8hczrF9LO59LGwNtuy+GsT5A1ZK93og7F+8zztkCFIw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.16.4_osjdi4fu7r6hdxzkp7wlqnwsmu - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/url-loader': 7.16.10_4mmsdp5dkkwvmk6zzd5moo5kfy + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 '@types/jsonwebtoken': 8.5.9 @@ -1886,7 +1992,7 @@ packages: jsonwebtoken: 8.5.1 lodash: 4.17.21 scuid: 1.1.0 - tslib: 2.4.0 + tslib: 2.4.1 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - '@types/node' @@ -1896,15 +2002,15 @@ packages: - utf-8-validate dev: false - /@graphql-tools/relay-operation-optimizer/6.5.6_graphql@15.8.0: - resolution: {integrity: sha512-2KjaWYxD/NC6KtckbDEAbN46QO+74d1SBaZQ26qQjWhyoAjon12xlMW4HWxHEN0d0xuz0cnOVUVc+t4wVXePUg==} + /@graphql-tools/relay-operation-optimizer/6.5.10_graphql@15.8.0: + resolution: {integrity: sha512-daNJRkJa/NgpXVxUApCMIGqHoyHExaG7XN2gk48r+DbKmoahpflF+lnhBKmS44HtSGciFUv8bPbp0NWvXafZ2w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/relay-compiler': 12.0.0_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color @@ -1918,7 +2024,7 @@ packages: '@graphql-tools/merge': 8.3.1_graphql@15.8.0 '@graphql-tools/utils': 8.9.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false @@ -1930,30 +2036,42 @@ packages: '@graphql-tools/merge': 8.3.6_graphql@15.8.0 '@graphql-tools/utils': 8.12.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 + value-or-promise: 1.0.11 + dev: false + + /@graphql-tools/schema/9.0.8_graphql@15.8.0: + resolution: {integrity: sha512-PnES7sNkhQ/FdPQhP7cup0OIzwzQh+nfjklilU7YJzE209ACIyEQtxoNCfvPW5eV6hc9bWsBQeI3Jm4mMtwxNA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/merge': 8.3.10_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + graphql: 15.8.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/url-loader/7.16.4_osjdi4fu7r6hdxzkp7wlqnwsmu: - resolution: {integrity: sha512-7yGrJJNcqVQIplCyVLk7tW2mAgYyZ06FRmCBnzw3B61+aIjFavrm6YlnKkhdqYSYyFmIbVcigdP3vkoYIu23TA==} + /@graphql-tools/url-loader/7.16.10_4mmsdp5dkkwvmk6zzd5moo5kfy: + resolution: {integrity: sha512-VFf0lKZpPSFtUl3cNycBEWlB8NzJhXFfas0PYsFmzzOmtGcHeY3rY2KMUfBr4wq7chPfBbGpcuAwjiI3x9MZzg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.8_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 - '@graphql-tools/wrap': 9.2.3_graphql@15.8.0 + '@graphql-tools/delegate': 9.0.14_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 + '@graphql-tools/wrap': 9.2.9_graphql@15.8.0 '@types/ws': 8.5.3 - '@whatwg-node/fetch': 0.4.7 + '@whatwg-node/fetch': 0.5.1 dset: 3.1.2 extract-files: 11.0.0 graphql: 15.8.0 graphql-ws: 5.11.2_graphql@15.8.0 - isomorphic-ws: 5.0.0_ws@8.9.0 - meros: 1.2.1_@types+node@18.11.8 - tslib: 2.4.0 + isomorphic-ws: 5.0.0_ws@8.10.0 + meros: 1.2.1_@types+node@18.11.9 + tslib: 2.4.1 value-or-promise: 1.0.11 - ws: 8.9.0 + ws: 8.10.0 transitivePeerDependencies: - '@types/node' - bufferutil @@ -1967,16 +2085,16 @@ packages: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@graphql-tools/utils/8.13.0_graphql@15.8.0: - resolution: {integrity: sha512-cI4LdXElgVK2jFoq0DpANlvk4Di6kIapHsJI63RCepQ6xZe+mLI1mDrGdesG37s2BaABqV3RdTzeO/sPnTtyxQ==} + /@graphql-tools/utils/8.13.1_graphql@15.8.0: + resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@graphql-tools/utils/8.9.0_graphql@15.8.0: @@ -1985,7 +2103,25 @@ packages: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/utils/9.0.0_graphql@15.8.0: + resolution: {integrity: sha512-kaCwyWnURxMsYbxzkfylLqFFelu83jKk3BJOOy0GIuxEtgXVS9v7Y/tojljo69Q+jaZ2YxAi3+d8IpM+hx768A==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 15.8.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/utils/9.0.1_graphql@15.8.0: + resolution: {integrity: sha512-z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 15.8.0 + tslib: 2.4.1 dev: false /@graphql-tools/wrap/8.5.1_graphql@15.8.0: @@ -1997,20 +2133,20 @@ packages: '@graphql-tools/schema': 8.5.1_graphql@15.8.0 '@graphql-tools/utils': 8.9.0_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/wrap/9.2.3_graphql@15.8.0: - resolution: {integrity: sha512-aiLjcAuUwcvA1mF25c7KFDPXEdQDpo6bTDyAMCSlFXpF4T01hoxLERmfmbRmsmy/dP80ZB31a+t70aspVdqZSA==} + /@graphql-tools/wrap/9.2.9_graphql@15.8.0: + resolution: {integrity: sha512-GiEMy7VJIKxdgb9E8ZkaAPhePsDbBP5rOj07tr6jzcDY+ZhLcjmD9UuiPGVFgBSu6AzRyoviEJgI0hjksqfl1A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.8_graphql@15.8.0 - '@graphql-tools/schema': 9.0.4_graphql@15.8.0 - '@graphql-tools/utils': 8.12.0_graphql@15.8.0 + '@graphql-tools/delegate': 9.0.14_graphql@15.8.0 + '@graphql-tools/schema': 9.0.8_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false @@ -2028,14 +2164,14 @@ packages: '@graphql-yoga/typed-event-target': 1.0.0-next.0 '@repeaterjs/repeater': 3.0.4 '@whatwg-node/events': 0.0.2 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@graphql-yoga/typed-event-target/1.0.0-next.0: resolution: {integrity: sha512-OP+6WpeP2eJBdQ4aVdP6m+dhVXPQX1xJ0T2GVmBMiRD3NQeaIMbAP0FPrB3gvh2VGVH0UaAPspQSKsxwEe8YtQ==} dependencies: '@repeaterjs/repeater': 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@headlessui/react/1.7.3_biqbaboplfbrettd7655fr4n2y: @@ -2156,7 +2292,7 @@ packages: npmlog: 5.0.1 rimraf: 3.0.2 semver: 7.3.8 - tar: 6.1.11 + tar: 6.1.12 transitivePeerDependencies: - encoding - supports-color @@ -2470,24 +2606,24 @@ packages: dependencies: asn1js: 3.0.5 pvtsutils: 1.3.2 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@peculiar/json-schema/1.1.12: resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} engines: {node: '>=8.0.0'} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false - /@peculiar/webcrypto/1.4.0: - resolution: {integrity: sha512-U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg==} + /@peculiar/webcrypto/1.4.1: + resolution: {integrity: sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==} engines: {node: '>=10.12.0'} dependencies: '@peculiar/asn1-schema': 2.3.0 '@peculiar/json-schema': 1.1.12 pvtsutils: 1.3.2 - tslib: 2.4.0 + tslib: 2.4.1 webcrypto-core: 1.7.5 dev: false @@ -2500,7 +2636,7 @@ packages: open: 8.4.0 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.4.0 + tslib: 2.4.1 dev: true /@polka/url/1.0.0-next.21: @@ -2712,7 +2848,7 @@ packages: '@reach/utils': 0.17.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@reach/utils/0.17.0_biqbaboplfbrettd7655fr4n2y: @@ -2724,7 +2860,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 tiny-warning: 1.0.3 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@repeaterjs/repeater/3.0.4: @@ -2799,7 +2935,7 @@ packages: resolution: {integrity: sha512-KT4TK40T9pl24nPFWHgw1QwAv9AjOkUymjFpS07Ro2zeBHJVgga1Jl0OA1bsiyEiLNRivNRwaWHFySlZ2JJpxQ==} dependencies: '@cloudflare/workers-types': 3.18.0 - esbuild: 0.15.12 + esbuild: 0.15.13 worktop: 0.8.0-next.14 dev: true @@ -2807,7 +2943,7 @@ packages: resolution: {integrity: sha512-4hPKs7T1v81KatpMm8AgPEe4LSvoRNWiooxbSlLL8su/nnVe2FHPlpGgRcdSsE9VUmlkyd+4YIbVFG0ZcYO4LQ==} dependencies: '@iarna/toml': 2.2.5 - esbuild: 0.15.12 + esbuild: 0.15.13 set-cookie-parser: 2.5.1 dev: true @@ -2815,14 +2951,14 @@ packages: resolution: {integrity: sha512-cuNolQSqabSs97J2hn9bnRDOscihIO+VEYltsc+POLU/ecv7pbUm1qdRakeG3+ehK1mfZ9dub6vEVuLKhm+Qng==} dependencies: '@vercel/nft': 0.22.1 - esbuild: 0.15.12 + esbuild: 0.15.13 transitivePeerDependencies: - encoding - supports-color dev: true - /@sveltejs/kit/1.0.0-next.531_svelte@3.50.1+vite@3.2.2: - resolution: {integrity: sha512-8uBJF5BweIFoyw+Kqv0jsDSfndNw2mTF222qi8rDuptOy7gjoWXYFy2F0kd8orNeZUnjFrHE+g/qDNHq7zzEJg==} + /@sveltejs/kit/1.0.0-next.532_svelte@3.50.1+vite@3.2.2: + resolution: {integrity: sha512-g+t+dncoz/DBc1mfwSfBaIBqE5pl0caMUy7yZzjsnyw0WG3AevC04d2KfTOgtOMgXVDnSVqZxlTR+MM5tnKeyw==} engines: {node: '>=16.14'} hasBin: true requiresBuild: true @@ -2833,7 +2969,7 @@ packages: '@sveltejs/vite-plugin-svelte': 1.1.0_svelte@3.50.1+vite@3.2.2 '@types/cookie': 0.5.1 cookie: 0.5.0 - devalue: 4.0.1 + devalue: 4.2.0 kleur: 4.1.5 magic-string: 0.26.7 mime: 3.0.0 @@ -2890,7 +3026,7 @@ packages: /@swc/helpers/0.4.11: resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@szmarczak/http-timer/4.0.6: @@ -2995,7 +3131,7 @@ packages: cssnano: 5.1.13_postcss@8.4.18 postcss: 8.4.18 postcss-import: 15.0.0_postcss@8.4.18 - tailwindcss: 3.1.8 + tailwindcss: 3.2.1 transitivePeerDependencies: - ts-node dev: true @@ -3057,7 +3193,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 18.11.8 + '@types/node': 18.11.9 '@types/responselike': 1.0.0 dev: true @@ -3099,7 +3235,7 @@ packages: resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: true /@types/hast/2.3.4: @@ -3140,13 +3276,13 @@ packages: /@types/jsonwebtoken/8.5.9: resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: false /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: true /@types/mdast/3.0.10: @@ -3182,6 +3318,10 @@ packages: /@types/node/18.11.8: resolution: {integrity: sha512-uGwPWlE0Hj972KkHtCDVwZ8O39GmyjfMane1Z3GUBGGnkZ2USDq7SxLpVIiIHpweY9DS0QTDH0Nw7RNBsAAZ5A==} + dev: true + + /@types/node/18.11.9: + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} /@types/node/18.8.4: resolution: {integrity: sha512-WdlVphvfR/GJCLEMbNA8lJ0lhFNBj4SW3O+O5/cEGw9oYrv0al9zTwuQsq+myDUXgNx2jgBynoVgZ2MMJ6pbow==} @@ -3211,19 +3351,19 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: true /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: true /@types/scheduler/0.16.2: @@ -3247,7 +3387,7 @@ packages: /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: false /@typescript-eslint/eslint-plugin/5.37.0_22c5fnooleyfkzrkkgdmel5kmi: @@ -3515,7 +3655,7 @@ packages: hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.10 - acorn: 8.8.0 + acorn: 8.8.1 async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 @@ -3562,7 +3702,7 @@ packages: /@whatwg-node/fetch/0.3.2: resolution: {integrity: sha512-Bs5zAWQs0tXsLa4mRmLw7Psps1EN78vPtgcLpw3qPY8s6UYPUM67zFZ9cy+7tZ64PXhfwzxJn+m7RH2Lq48RNQ==} dependencies: - '@peculiar/webcrypto': 1.4.0 + '@peculiar/webcrypto': 1.4.1 abort-controller: 3.0.0 busboy: 1.6.0 event-target-polyfill: 0.0.3 @@ -3575,10 +3715,10 @@ packages: - encoding dev: false - /@whatwg-node/fetch/0.4.7: - resolution: {integrity: sha512-+oKDMGtmUJ7H37VDL5U2Vdk+ZxsIypZxO2q6y42ytu6W3PL6OIIUYZGliNqQgWtCdtxOZ9WPQvbIAuiLpnLlUw==} + /@whatwg-node/fetch/0.5.1: + resolution: {integrity: sha512-RBZS60EU6CbRJ370BVVKW4F9csZuGh0OQNrUDhJ0IaIFLsXsJorFCM2iwaDWZTAPMqxW1TmuVcVKJ3d/H1dV1g==} dependencies: - '@peculiar/webcrypto': 1.4.0 + '@peculiar/webcrypto': 1.4.1 abort-controller: 3.0.0 busboy: 1.6.0 form-data-encoder: 1.7.2 @@ -3590,29 +3730,14 @@ packages: - encoding dev: false - /@whatwg-node/fetch/0.5.0: - resolution: {integrity: sha512-nTHF6qVIWFHU/F8JfXc6u5GwTg1F1UWLc1F3eaGAGjUACvMJ/iy9256xu80KgylwbOzUZgKnRtdWdPDPf16OmQ==} - dependencies: - '@peculiar/webcrypto': 1.4.0 - abort-controller: 3.0.0 - busboy: 1.6.0 - form-data-encoder: 1.7.2 - formdata-node: 4.4.1 - node-fetch: 2.6.7 - undici: 5.12.0 - web-streams-polyfill: 3.2.1 - transitivePeerDependencies: - - encoding - dev: false - - /@whatwg-node/server/0.4.13_@types+node@18.11.8: - resolution: {integrity: sha512-XuzOyyryZqdJWYzfjFwMKoeNdsUl8Pp8A08kD1nYOfDm8zPq/7wNGPoAj5J4zDQi2dUtWA4Z6hrxprimJi9mIA==} + /@whatwg-node/server/0.4.14_@types+node@18.11.9: + resolution: {integrity: sha512-wRPkrqpHHqEFV+AVnAS2c5NlQ6zdiduT4k9f0tTh+Qy6l5ZY2p0a3PxUcBL8V1hzT6dXlP7PRNFdd//L/UyN7g==} peerDependencies: '@types/node': ^18.0.6 dependencies: - '@types/node': 18.11.8 - '@whatwg-node/fetch': 0.5.0 - tslib: 2.4.0 + '@types/node': 18.11.9 + '@whatwg-node/fetch': 0.5.1 + tslib: 2.4.1 transitivePeerDependencies: - encoding dev: false @@ -3639,12 +3764,12 @@ packages: acorn-walk: 7.2.0 dev: true - /acorn-jsx/5.3.2_acorn@8.8.0: + /acorn-jsx/5.3.2_acorn@8.8.1: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.0 + acorn: 8.8.1 /acorn-node/1.8.2: resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} @@ -3674,6 +3799,12 @@ packages: resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} engines: {node: '>=0.4.0'} hasBin: true + dev: true + + /acorn/8.8.1: + resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} + engines: {node: '>=0.4.0'} + hasBin: true /agent-base/6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} @@ -3867,7 +3998,7 @@ packages: dependencies: pvtsutils: 1.3.2 pvutils: 1.1.3 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /assertion-error/1.1.0: @@ -3928,48 +4059,42 @@ packages: dev: true optional: true - /babel-plugin-dynamic-import-node/2.3.3: - resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} - dependencies: - object.assign: 4.1.4 - dev: false - /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: false - /babel-preset-fbjs/3.4.0_@babel+core@7.19.3: + /babel-preset-fbjs/3.4.0_@babel+core@7.19.6: resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.3 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.3 - '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.3 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.3 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.3 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3 + '@babel/core': 7.19.6 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.6 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.6 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.19.6 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.6 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.6 + '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.19.6 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.6 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.6 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.6 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.6 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.19.6 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.19.6 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.6 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.6 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.6 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -4092,8 +4217,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001420 - electron-to-chromium: 1.4.283 + caniuse-lite: 1.0.30001429 + electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 @@ -4192,6 +4317,7 @@ packages: dependencies: function-bind: 1.1.1 get-intrinsic: 1.1.3 + dev: true /callsites/3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} @@ -4201,7 +4327,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /camelcase-css/2.0.1: @@ -4234,11 +4360,14 @@ packages: /caniuse-lite/1.0.30001420: resolution: {integrity: sha512-OnyeJ9ascFA9roEj72ok2Ikp7PHJTKubtEJIQ/VK3fdsS50q4KWy+Z5X0A1/GswEItKX0ctAp8n4SYDE7wTu6A==} + /caniuse-lite/1.0.30001429: + resolution: {integrity: sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg==} + /capital-case/1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: no-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 upper-case-first: 2.0.2 dev: false @@ -4317,7 +4446,7 @@ packages: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /character-entities-html4/1.1.4: @@ -4581,7 +4710,7 @@ packages: resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: no-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 upper-case: 2.0.2 dev: false @@ -4605,7 +4734,7 @@ packages: '@iarna/toml': 2.2.5 dev: false - /cosmiconfig-typescript-loader/4.1.1_vpvfnim2gqt3tmsyv3wi5dwdwa: + /cosmiconfig-typescript-loader/4.1.1_wj74ebk5myntns6gd57amojzny: resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -4614,9 +4743,24 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 + cosmiconfig: 7.0.1 + ts-node: 10.9.1_h6wsvvmh4l7tb54yk3ecr4mgtm + typescript: 4.8.3 + dev: false + + /cosmiconfig-typescript-loader/4.2.0_wj74ebk5myntns6gd57amojzny: + resolution: {integrity: sha512-NkANeMnaHrlaSSlpKGyvn2R4rqUDeE/9E5YHx+b4nwo0R8dZyAqcih8/gxpCZvqWP9Vf6xuLpMSzSgdVEIM78g==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' + typescript: '>=3' + dependencies: + '@types/node': 18.11.9 cosmiconfig: 7.0.1 - ts-node: 10.9.1_fy2m6x4qt6do62mqbbbnteawpm + ts-node: 10.9.1_h6wsvvmh4l7tb54yk3ecr4mgtm typescript: 4.8.3 dev: false @@ -5423,6 +5567,7 @@ packages: dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 + dev: true /defined/1.0.1: resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} @@ -5475,8 +5620,8 @@ packages: minimist: 1.2.7 dev: true - /devalue/4.0.1: - resolution: {integrity: sha512-Oksbel8g2rv5ivcCyImF1RXEU2FcS1OtCwVs4tJCCeVws/Dp9EE15fUbEsNr/xLD3ZxsQURBCDf56Lk1CgwCpg==} + /devalue/4.2.0: + resolution: {integrity: sha512-mbjoAaCL2qogBKgeFxFPOXAUsZchircF+B/79LD4sHH0+NHfYm8gZpQrskKDn5gENGt35+5OI1GUF7hLVnkPDw==} dev: true /didyoumean/1.2.2: @@ -5559,7 +5704,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 /dotenv/16.0.3: resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} @@ -5586,8 +5731,8 @@ packages: safe-buffer: 5.2.1 dev: false - /electron-to-chromium/1.4.283: - resolution: {integrity: sha512-g6RQ9zCOV+U5QVHW9OpFR7rdk/V7xfopNXnyAamdpFgCHgZ1sjI8VuR1+zG2YG/TZk+tQ8mpNkug4P8FU0fuOA==} + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} /emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -5696,8 +5841,8 @@ packages: dev: true optional: true - /esbuild-android-64/0.15.12: - resolution: {integrity: sha512-MJKXwvPY9g0rGps0+U65HlTsM1wUs9lbjt5CU19RESqycGFDRijMDQsh68MtbzkqWSRdEtiKS1mtPzKneaAI0Q==} + /esbuild-android-64/0.15.13: + resolution: {integrity: sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -5723,8 +5868,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.12: - resolution: {integrity: sha512-Hc9SEcZbIMhhLcvhr1DH+lrrec9SFTiRzfJ7EGSBZiiw994gfkVV6vG0sLWqQQ6DD7V4+OggB+Hn0IRUdDUqvA==} + /esbuild-android-arm64/0.15.13: + resolution: {integrity: sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -5750,8 +5895,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.12: - resolution: {integrity: sha512-qkmqrTVYPFiePt5qFjP8w/S+GIUMbt6k8qmiPraECUWfPptaPJUGkCKrWEfYFRWB7bY23FV95rhvPyh/KARP8Q==} + /esbuild-darwin-64/0.15.13: + resolution: {integrity: sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -5777,8 +5922,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.12: - resolution: {integrity: sha512-z4zPX02tQ41kcXMyN3c/GfZpIjKoI/BzHrdKUwhC/Ki5BAhWv59A9M8H+iqaRbwpzYrYidTybBwiZAIWCLJAkw==} + /esbuild-darwin-arm64/0.15.13: + resolution: {integrity: sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -5804,8 +5949,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.12: - resolution: {integrity: sha512-XFL7gKMCKXLDiAiBjhLG0XECliXaRLTZh6hsyzqUqPUf/PY4C6EJDTKIeqqPKXaVJ8+fzNek88285krSz1QECw==} + /esbuild-freebsd-64/0.15.13: + resolution: {integrity: sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -5831,8 +5976,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.12: - resolution: {integrity: sha512-jwEIu5UCUk6TjiG1X+KQnCGISI+ILnXzIzt9yDVrhjug2fkYzlLbl0K43q96Q3KB66v6N1UFF0r5Ks4Xo7i72g==} + /esbuild-freebsd-arm64/0.15.13: + resolution: {integrity: sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -5858,8 +6003,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.12: - resolution: {integrity: sha512-uSQuSEyF1kVzGzuIr4XM+v7TPKxHjBnLcwv2yPyCz8riV8VUCnO/C4BF3w5dHiVpCd5Z1cebBtZJNlC4anWpwA==} + /esbuild-linux-32/0.15.13: + resolution: {integrity: sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -5885,8 +6030,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.12: - resolution: {integrity: sha512-QcgCKb7zfJxqT9o5z9ZUeGH1k8N6iX1Y7VNsEi5F9+HzN1OIx7ESxtQXDN9jbeUSPiRH1n9cw6gFT3H4qbdvcA==} + /esbuild-linux-64/0.15.13: + resolution: {integrity: sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -5912,8 +6057,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.15.12: - resolution: {integrity: sha512-Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A==} + /esbuild-linux-arm/0.15.13: + resolution: {integrity: sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -5939,8 +6084,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.15.12: - resolution: {integrity: sha512-HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ==} + /esbuild-linux-arm64/0.15.13: + resolution: {integrity: sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -5966,8 +6111,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.15.12: - resolution: {integrity: sha512-Qol3+AvivngUZkTVFgLpb0H6DT+N5/zM3V1YgTkryPYFeUvuT5JFNDR3ZiS6LxhyF8EE+fiNtzwlPqMDqVcc6A==} + /esbuild-linux-mips64le/0.15.13: + resolution: {integrity: sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -5993,8 +6138,8 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.12: - resolution: {integrity: sha512-4D8qUCo+CFKaR0cGXtGyVsOI7w7k93Qxb3KFXWr75An0DHamYzq8lt7TNZKoOq/Gh8c40/aKaxvcZnTgQ0TJNg==} + /esbuild-linux-ppc64le/0.15.13: + resolution: {integrity: sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -6020,8 +6165,8 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.12: - resolution: {integrity: sha512-G9w6NcuuCI6TUUxe6ka0enjZHDnSVK8bO+1qDhMOCtl7Tr78CcZilJj8SGLN00zO5iIlwNRZKHjdMpfFgNn1VA==} + /esbuild-linux-riscv64/0.15.13: + resolution: {integrity: sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -6047,8 +6192,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.12: - resolution: {integrity: sha512-Lt6BDnuXbXeqSlVuuUM5z18GkJAZf3ERskGZbAWjrQoi9xbEIsj/hEzVnSAFLtkfLuy2DE4RwTcX02tZFunXww==} + /esbuild-linux-s390x/0.15.13: + resolution: {integrity: sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -6074,8 +6219,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.12: - resolution: {integrity: sha512-jlUxCiHO1dsqoURZDQts+HK100o0hXfi4t54MNRMCAqKGAV33JCVvMplLAa2FwviSojT/5ZG5HUfG3gstwAG8w==} + /esbuild-netbsd-64/0.15.13: + resolution: {integrity: sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -6101,8 +6246,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.12: - resolution: {integrity: sha512-1o1uAfRTMIWNOmpf8v7iudND0L6zRBYSH45sofCZywrcf7NcZA+c7aFsS1YryU+yN7aRppTqdUK1PgbZVaB1Dw==} + /esbuild-openbsd-64/0.15.13: + resolution: {integrity: sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -6128,8 +6273,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.12: - resolution: {integrity: sha512-nkl251DpoWoBO9Eq9aFdoIt2yYmp4I3kvQjba3jFKlMXuqQ9A4q+JaqdkCouG3DHgAGnzshzaGu6xofGcXyPXg==} + /esbuild-sunos-64/0.15.13: + resolution: {integrity: sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -6155,8 +6300,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.12: - resolution: {integrity: sha512-WlGeBZHgPC00O08luIp5B2SP4cNCp/PcS+3Pcg31kdcJPopHxLkdCXtadLU9J82LCfw4TVls21A6lilQ9mzHrw==} + /esbuild-windows-32/0.15.13: + resolution: {integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -6182,8 +6327,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.12: - resolution: {integrity: sha512-VActO3WnWZSN//xjSfbiGOSyC+wkZtI8I4KlgrTo5oHJM6z3MZZBCuFaZHd8hzf/W9KPhF0lY8OqlmWC9HO5AA==} + /esbuild-windows-64/0.15.13: + resolution: {integrity: sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -6209,8 +6354,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.12: - resolution: {integrity: sha512-Of3MIacva1OK/m4zCNIvBfz8VVROBmQT+gRX6pFTLPngFYcj6TFH/12VveAqq1k9VB2l28EoVMNMUCcmsfwyuA==} + /esbuild-windows-arm64/0.15.13: + resolution: {integrity: sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -6277,34 +6422,34 @@ packages: esbuild-windows-arm64: 0.15.11 dev: true - /esbuild/0.15.12: - resolution: {integrity: sha512-PcT+/wyDqJQsRVhaE9uX/Oq4XLrFh0ce/bs2TJh4CSaw9xuvI+xFrH2nAYOADbhQjUgAhNWC5LKoUsakm4dxng==} + /esbuild/0.15.13: + resolution: {integrity: sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.15.12 - '@esbuild/linux-loong64': 0.15.12 - esbuild-android-64: 0.15.12 - esbuild-android-arm64: 0.15.12 - esbuild-darwin-64: 0.15.12 - esbuild-darwin-arm64: 0.15.12 - esbuild-freebsd-64: 0.15.12 - esbuild-freebsd-arm64: 0.15.12 - esbuild-linux-32: 0.15.12 - esbuild-linux-64: 0.15.12 - esbuild-linux-arm: 0.15.12 - esbuild-linux-arm64: 0.15.12 - esbuild-linux-mips64le: 0.15.12 - esbuild-linux-ppc64le: 0.15.12 - esbuild-linux-riscv64: 0.15.12 - esbuild-linux-s390x: 0.15.12 - esbuild-netbsd-64: 0.15.12 - esbuild-openbsd-64: 0.15.12 - esbuild-sunos-64: 0.15.12 - esbuild-windows-32: 0.15.12 - esbuild-windows-64: 0.15.12 - esbuild-windows-arm64: 0.15.12 + '@esbuild/android-arm': 0.15.13 + '@esbuild/linux-loong64': 0.15.13 + esbuild-android-64: 0.15.13 + esbuild-android-arm64: 0.15.13 + esbuild-darwin-64: 0.15.13 + esbuild-darwin-arm64: 0.15.13 + esbuild-freebsd-64: 0.15.13 + esbuild-freebsd-arm64: 0.15.13 + esbuild-linux-32: 0.15.13 + esbuild-linux-64: 0.15.13 + esbuild-linux-arm: 0.15.13 + esbuild-linux-arm64: 0.15.13 + esbuild-linux-mips64le: 0.15.13 + esbuild-linux-ppc64le: 0.15.13 + esbuild-linux-riscv64: 0.15.13 + esbuild-linux-s390x: 0.15.13 + esbuild-netbsd-64: 0.15.13 + esbuild-openbsd-64: 0.15.13 + esbuild-sunos-64: 0.15.13 + esbuild-windows-32: 0.15.13 + esbuild-windows-64: 0.15.13 + esbuild-windows-arm64: 0.15.13 dev: true /escalade/3.1.1: @@ -6367,7 +6512,7 @@ packages: remark-mdx: 1.6.22 remark-parse: 8.0.3 remark-stringify: 8.1.1 - tslib: 2.4.0 + tslib: 2.4.1 unified: 9.2.2 transitivePeerDependencies: - supports-color @@ -6482,7 +6627,7 @@ packages: eslint-mdx: 1.17.1_eslint@8.23.1 eslint-plugin-markdown: 2.2.1_eslint@8.23.1 synckit: 0.4.1 - tslib: 2.4.0 + tslib: 2.4.1 vfile: 4.2.1 transitivePeerDependencies: - supports-color @@ -6664,8 +6809,8 @@ packages: resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn: 8.8.1 + acorn-jsx: 5.3.2_acorn@8.8.1 eslint-visitor-keys: 3.3.0 dev: true @@ -7072,6 +7217,7 @@ packages: /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true /function.prototype.name/1.1.5: resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} @@ -7124,6 +7270,7 @@ packages: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 + dev: true /get-stream/3.0.0: resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} @@ -7277,26 +7424,26 @@ packages: lodash: 4.17.21 dev: false - /graphql-config/4.3.6_im6qww6itonacd7gxdmjofevyq: + /graphql-config/4.3.6_r3xgavq7eetcd4yxywff3dqswu: resolution: {integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/graphql-file-loader': 7.5.5_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.6_graphql@15.8.0 - '@graphql-tools/load': 7.8.0_graphql@15.8.0 - '@graphql-tools/merge': 8.3.6_graphql@15.8.0 - '@graphql-tools/url-loader': 7.16.4_osjdi4fu7r6hdxzkp7wlqnwsmu - '@graphql-tools/utils': 8.13.0_graphql@15.8.0 + '@graphql-tools/graphql-file-loader': 7.5.9_graphql@15.8.0 + '@graphql-tools/json-file-loader': 7.4.10_graphql@15.8.0 + '@graphql-tools/load': 7.8.4_graphql@15.8.0 + '@graphql-tools/merge': 8.3.10_graphql@15.8.0 + '@graphql-tools/url-loader': 7.16.10_4mmsdp5dkkwvmk6zzd5moo5kfy + '@graphql-tools/utils': 8.13.1_graphql@15.8.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 - cosmiconfig-typescript-loader: 4.1.1_vpvfnim2gqt3tmsyv3wi5dwdwa + cosmiconfig-typescript-loader: 4.2.0_wj74ebk5myntns6gd57amojzny graphql: 15.8.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 - ts-node: 10.9.1_fy2m6x4qt6do62mqbbbnteawpm - tslib: 2.4.0 + ts-node: 10.9.1_h6wsvvmh4l7tb54yk3ecr4mgtm + tslib: 2.4.1 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -7350,7 +7497,7 @@ packages: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /graphql-tag/2.12.6_graphql@15.8.0: @@ -7360,7 +7507,7 @@ packages: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /graphql-ws/5.11.2_graphql@15.8.0: @@ -7372,23 +7519,24 @@ packages: graphql: 15.8.0 dev: false - /graphql-yoga/3.0.0-next.8_osjdi4fu7r6hdxzkp7wlqnwsmu: - resolution: {integrity: sha512-8lDf9h80dbtjBKx4n/zua0FzbyYCYCRwAYtaAW/RmxcoJ96g9nNzTGt9gDpsBQjgJcFWAp35lKF+e3oU5ue6OQ==} + /graphql-yoga/3.0.0-next.10_4mmsdp5dkkwvmk6zzd5moo5kfy: + resolution: {integrity: sha512-czCtyko8ODUAeFKd65sqQgfTKelU3Foyg8H6Oc9L35VlA3n+gCigsucKE3zOKyJ3E+ObJ648LQEsBVlA1zPoYA==} peerDependencies: graphql: ^15.2.0 || ^16.0.0 dependencies: - '@envelop/core': 3.0.2 - '@envelop/parser-cache': 5.0.2_o5vb7pwixfwijqfxopwelffwri - '@envelop/validation-cache': 5.0.2_o5vb7pwixfwijqfxopwelffwri - '@graphql-tools/executor': 0.0.1_graphql@15.8.0 - '@graphql-tools/schema': 9.0.4_graphql@15.8.0 + '@envelop/core': 3.0.3 + '@envelop/parser-cache': 5.0.3_y4of6s3r3enooimbdeukn72z54 + '@envelop/validation-cache': 5.0.3_y4of6s3r3enooimbdeukn72z54 + '@graphql-tools/executor': 0.0.6_graphql@15.8.0 + '@graphql-tools/schema': 9.0.8_graphql@15.8.0 + '@graphql-tools/utils': 9.0.1_graphql@15.8.0 '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 '@graphql-yoga/subscription': 3.0.0-next.0 - '@whatwg-node/fetch': 0.5.0 - '@whatwg-node/server': 0.4.13_@types+node@18.11.8 + '@whatwg-node/fetch': 0.5.1 + '@whatwg-node/server': 0.4.14_@types+node@18.11.9 dset: 3.1.2 graphql: 15.8.0 - tslib: 2.4.0 + tslib: 2.4.1 transitivePeerDependencies: - '@types/node' - encoding @@ -7441,10 +7589,12 @@ packages: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.1.3 + dev: true /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} + dev: true /has-tostringtag/1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} @@ -7462,6 +7612,7 @@ packages: engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 + dev: true /hast-util-to-estree/2.1.0: resolution: {integrity: sha512-Vwch1etMRmm89xGgz+voWXvVHba2iiMdGMKmaMfYt35rbVtFDq8JNwwAIvi8zHMkO6Gvqo9oTMwJTmzVRfXh4g==} @@ -7497,7 +7648,7 @@ packages: resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} dependencies: capital-case: 1.0.4 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /hosted-git-info/2.8.9: @@ -7624,8 +7775,8 @@ packages: resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} dev: false - /inquirer/8.2.4: - resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} + /inquirer/8.2.5: + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 @@ -7759,6 +7910,12 @@ packages: has: 1.0.3 dev: true + /is-core-module/2.11.0: + resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + dependencies: + has: 1.0.3 + dev: true + /is-date-object/1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -7816,7 +7973,7 @@ packages: /is-lower-case/2.0.2: resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /is-module/1.0.0: @@ -7943,7 +8100,7 @@ packages: /is-upper-case/2.0.2: resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /is-weakref/1.0.2: @@ -7985,12 +8142,12 @@ packages: - encoding dev: false - /isomorphic-ws/5.0.0_ws@8.9.0: + /isomorphic-ws/5.0.0_ws@8.10.0: resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} peerDependencies: ws: '*' dependencies: - ws: 8.9.0 + ws: 8.10.0 dev: false /istanbul-lib-coverage/3.2.0: @@ -8437,13 +8594,13 @@ packages: /lower-case-first/2.0.2: resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /lower-case/2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 /lowercase-keys/2.0.0: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} @@ -8779,7 +8936,7 @@ packages: stylis: 4.1.2 dev: false - /meros/1.2.1_@types+node@18.11.8: + /meros/1.2.1_@types+node@18.11.9: resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} engines: {node: '>=13'} peerDependencies: @@ -8788,7 +8945,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 18.11.8 + '@types/node': 18.11.9 dev: false /micromark-core-commonmark/1.0.6: @@ -8933,8 +9090,8 @@ packages: /micromark-extension-mdxjs/1.0.0: resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==} dependencies: - acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn: 8.8.1 + acorn-jsx: 5.3.2_acorn@8.8.1 micromark-extension-mdx-expression: 1.0.3 micromark-extension-mdx-jsx: 1.0.3 micromark-extension-mdx-md: 1.0.0 @@ -9431,7 +9588,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.4.0 + tslib: 2.4.1 /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} @@ -9552,6 +9709,7 @@ packages: /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} + dev: true /object.assign/4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} @@ -9561,6 +9719,7 @@ packages: define-properties: 1.1.4 has-symbols: 1.0.3 object-keys: 1.1.1 + dev: true /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} @@ -9733,7 +9892,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 /parent-module/1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -9810,13 +9969,13 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 /path-case/3.0.4: resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} dependencies: dot-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /path-exists/4.0.0: @@ -10107,8 +10266,8 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-nested/5.0.6_postcss@8.4.18: - resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} + /postcss-nested/6.0.0_postcss@8.4.18: + resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 @@ -10385,7 +10544,7 @@ packages: /pvtsutils/1.3.2: resolution: {integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /pvutils/1.1.3: @@ -10602,7 +10761,7 @@ packages: /relay-runtime/12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.19.4 + '@babel/runtime': 7.20.1 fbjs: 3.0.4 invariant: 2.2.4 transitivePeerDependencies: @@ -10781,7 +10940,7 @@ packages: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: - is-core-module: 2.10.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -10858,7 +11017,7 @@ packages: fs-extra: 10.1.0 resolve: 1.22.1 rollup: 2.79.1 - tslib: 2.4.0 + tslib: 2.4.1 typescript: 4.8.3 dev: true @@ -10901,7 +11060,7 @@ packages: /rxjs/7.5.7: resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /sade/1.8.1: @@ -11013,7 +11172,7 @@ packages: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} dependencies: no-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 upper-case-first: 2.0.2 dev: false @@ -11032,7 +11191,7 @@ packages: resolution: {integrity: sha512-xIB/uRniZ9urxAuXp1Ouh/BKSI1VK8RSqfwGj7cV57HvGrFo3vHdJfv8Tdp/cVcxJgXQTkmHr5mG5rqJW8r4wQ==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: true /shebang-command/1.2.0: @@ -11141,7 +11300,7 @@ packages: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /sorcery/0.10.0: @@ -11228,7 +11387,7 @@ packages: /sponge-case/1.0.1: resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /sprintf-js/1.0.3: @@ -11568,7 +11727,7 @@ packages: /swap-case/2.0.2: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /symbol-tree/3.2.4: @@ -11579,7 +11738,7 @@ packages: resolution: {integrity: sha512-ngUh0+s+DOqEc0sGnrLaeNjbXp0CWHjSGFBqPlQmQ+oN/OfoDoYDBXPh+b4qs1M5QTk5nuQ3AmVz9+2xiY/ldw==} engines: {node: '>=12'} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 uuid: 8.3.2 dev: true optional: true @@ -11589,15 +11748,15 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.4.0 + tslib: 2.4.1 dev: true /tabbable/6.0.0: resolution: {integrity: sha512-SxhZErfHc3Yozz/HLAl/iPOxuIj8AtUw13NRewVOjFW7vbsqT1f3PuiHrPQbUkRcLNEgAedAv2DnjLtzynJXiw==} dev: false - /tailwindcss/3.1.8: - resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==} + /tailwindcss/3.2.1: + resolution: {integrity: sha512-Uw+GVSxp5CM48krnjHObqoOwlCt5Qo6nw1jlCRwfGy68dSYb/LwS9ZFidYGRiM+w6rMawkZiu1mEMAsHYAfoLg==} engines: {node: '>=12.13.0'} hasBin: true dependencies: @@ -11611,6 +11770,7 @@ packages: glob-parent: 6.0.2 is-glob: 4.0.3 lilconfig: 2.0.6 + micromatch: 4.0.5 normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 @@ -11618,7 +11778,7 @@ packages: postcss-import: 14.1.0_postcss@8.4.18 postcss-js: 4.0.0_postcss@8.4.18 postcss-load-config: 3.1.4_postcss@8.4.18 - postcss-nested: 5.0.6_postcss@8.4.18 + postcss-nested: 6.0.0_postcss@8.4.18 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -11627,9 +11787,9 @@ packages: - ts-node dev: true - /tar/6.1.11: - resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} - engines: {node: '>= 10'} + /tar/6.1.12: + resolution: {integrity: sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -11702,7 +11862,7 @@ packages: /title-case/3.0.3: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /title/3.5.3: @@ -11813,7 +11973,7 @@ packages: resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} dev: false - /ts-node/10.9.1_fy2m6x4qt6do62mqbbbnteawpm: + /ts-node/10.9.1_h6wsvvmh4l7tb54yk3ecr4mgtm: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -11832,8 +11992,8 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.11.8 - acorn: 8.8.0 + '@types/node': 18.11.9 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -11860,6 +12020,9 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + /tslib/2.4.1: + resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + /tsup/5.12.9_typescript@4.8.3: resolution: {integrity: sha512-dUpuouWZYe40lLufo64qEhDpIDsWhRbr2expv5dHEMjwqeKJS2aXA/FPqs1dxO4T6mBojo7rvo3jP9NNzaKyDg==} hasBin: true @@ -12177,13 +12340,13 @@ packages: /upper-case-first/2.0.2: resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /upper-case/2.0.2: resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: - tslib: 2.4.0 + tslib: 2.4.1 dev: false /uri-js/4.4.1: @@ -12355,7 +12518,7 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.11 + esbuild: 0.15.13 postcss: 8.4.18 resolve: 1.22.1 rollup: 2.79.1 @@ -12431,7 +12594,7 @@ packages: dependencies: '@types/chai': 4.3.3 '@types/chai-subset': 1.3.3 - '@types/node': 18.11.8 + '@types/node': 18.11.9 '@vitest/ui': 0.23.2 chai: 4.3.6 debug: 4.3.4 @@ -12495,7 +12658,7 @@ packages: '@peculiar/json-schema': 1.1.12 asn1js: 3.0.5 pvtsutils: 1.3.2 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /webidl-conversions/3.0.1: @@ -12515,7 +12678,7 @@ packages: engines: {node: '>= 10.13.0'} hasBin: true dependencies: - acorn: 8.8.0 + acorn: 8.8.1 acorn-walk: 8.2.0 chalk: 4.1.2 commander: 6.2.1 @@ -12682,6 +12845,19 @@ packages: optional: true dev: false + /ws/8.10.0: + resolution: {integrity: sha512-+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: false + /ws/8.9.0: resolution: {integrity: sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==} engines: {node: '>=10.0.0'} @@ -12693,6 +12869,7 @@ packages: optional: true utf-8-validate: optional: true + dev: true /xml-name-validator/4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} @@ -12790,6 +12967,20 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 + dev: true + + /yargs/17.6.1: + resolution: {integrity: sha512-leBuCGrL4dAd6ispNOGsJlhd0uZ6Qehkbu/B9KCR+Pxa/NVdNwi+i31lo0buCm6XxhJQFshXCD0/evfV4xfoUg==} + 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: false /yn/3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} diff --git a/website/package.json b/website/package.json index e02785b8..0e377f5f 100644 --- a/website/package.json +++ b/website/package.json @@ -34,6 +34,7 @@ "@theguild/algolia": "1.0.1", "@theguild/tailwind-config": "0.2.1", "@types/node": "18.8.4", - "@types/react": "18.0.21" + "@types/react": "18.0.21", + "tailwindcss": "^3.2.1" } }