diff --git a/packages/hoppscotch-app/package.json b/packages/hoppscotch-app/package.json index 6dad6c999..1a9547dba 100644 --- a/packages/hoppscotch-app/package.json +++ b/packages/hoppscotch-app/package.json @@ -9,7 +9,7 @@ "pnpm": ">=3" }, "scripts": { - "dev": "pnpx npm-run-all -p -l dev:*", + "dev": "pnpm exec npm-run-all -p -l dev:*", "dev:nuxt": "nuxt", "dev:gql-codegen": "graphql-codegen --config gql-codegen.yml --watch", "build": "vue-tsc --noEmit && nuxt build", @@ -25,7 +25,7 @@ "lintfix": "pnpm run lintfix:script && pnpm run lintfix:style", "test": "jest", "do-dev": "pnpm run dev", - "do-typecheck": "pnpx tsc --noEmit", + "do-typecheck": "pnpm exec tsc --noEmit", "do-build-prod": "pnpm run generate", "do-prod-start": "pnpm run start", "do-lint": "pnpm run lint", @@ -146,12 +146,16 @@ "@types/esprima": "^4.0.3", "@types/har-format": "^1.2.8", "@types/httpsnippet": "^1.23.1", + "@types/jest": "^27.4.1", + "@types/js-yaml": "^4.0.5", "@types/lodash": "^4.14.181", "@types/lossless-json": "^1.0.1", "@types/paho-mqtt": "^1.0.6", "@types/postman-collection": "^3.5.7", + "@types/qs": "^6.9.7", "@types/splitpanes": "^2.2.1", "@types/uuid": "^8.3.4", + "@types/yargs-parser": "^21.0.0", "@urql/devtools": "^2.0.3", "@vue/composition-api": "^1.4.9", "@vue/runtime-dom": "^3.2.33", diff --git a/packages/hoppscotch-app/tsconfig.json b/packages/hoppscotch-app/tsconfig.json index 605de6831..4c3280f46 100644 --- a/packages/hoppscotch-app/tsconfig.json +++ b/packages/hoppscotch-app/tsconfig.json @@ -17,6 +17,7 @@ "@/*": ["./*"] }, "types": [ + "@types/jest", "@types/node", "@nuxt/types", "@nuxtjs/i18n", diff --git a/packages/hoppscotch-cli/CONTRIBUTING.md b/packages/hoppscotch-cli/CONTRIBUTING.md index d244e051d..15d6bc809 100644 --- a/packages/hoppscotch-cli/CONTRIBUTING.md +++ b/packages/hoppscotch-cli/CONTRIBUTING.md @@ -27,13 +27,13 @@ Please note we have a code of conduct, please follow it in all your interactions 2. In order to test locally, you can use two types of package linking: - 1. The 'pnpx' way (preferred since it does not hamper your original installation of the CLI): + 1. The 'pnpm exec' way (preferred since it does not hamper your original installation of the CLI): ```bash pnpm link @hoppscotch/cli // Then to use or test the CLI: - pnpx hopp + pnpm exec hopp // After testing, to remove the package linking: pnpm rm @hoppscotch/cli diff --git a/packages/hoppscotch-cli/package.json b/packages/hoppscotch-cli/package.json index 966c76505..6eb4efaf7 100644 --- a/packages/hoppscotch-cli/package.json +++ b/packages/hoppscotch-cli/package.json @@ -11,12 +11,12 @@ "access": "public" }, "scripts": { - "build": "pnpx tsup", - "dev": "pnpx tsup --watch", + "build": "pnpm exec tsup", + "dev": "pnpm exec tsup --watch", "debugger": "node debugger.js 9999", - "prepublish": "pnpx tsup", + "prepublish": "pnpm exec tsup", "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write", - "do-typecheck": "pnpx tsc --noEmit" + "do-typecheck": "pnpm exec tsc --noEmit" }, "keywords": [ "cli", diff --git a/packages/hoppscotch-data/package.json b/packages/hoppscotch-data/package.json index 9bc05c2cd..c476368af 100644 --- a/packages/hoppscotch-data/package.json +++ b/packages/hoppscotch-data/package.json @@ -10,7 +10,7 @@ "scripts": { "build": "tsup src --dts", "prepare": "tsup src --dts", - "do-typecheck": "pnpx tsc --noEmit" + "do-typecheck": "pnpm exec tsc --noEmit" }, "exports": { ".": "./dist/index.js", @@ -32,7 +32,8 @@ "homepage": "https://github.com/hoppscotch/hoppscotch#readme", "devDependencies": { "@types/lodash": "^4.14.181", - "tsup": "^5.12.5" + "tsup": "^5.12.5", + "typescript": "^4.6.3" }, "dependencies": { "fp-ts": "^2.11.10", diff --git a/packages/hoppscotch-js-sandbox/package.json b/packages/hoppscotch-js-sandbox/package.json index 967b3f434..e872bef14 100644 --- a/packages/hoppscotch-js-sandbox/package.json +++ b/packages/hoppscotch-js-sandbox/package.json @@ -19,14 +19,14 @@ "scripts": { "lint": "eslint --ext .ts,.js --ignore-path .gitignore .", "lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .", - "test": "pnpx jest", - "build": "pnpx tsup", - "clean": "pnpx tsc --build --clean", + "test": "pnpm exec jest", + "build": "pnpm exec tsup", + "clean": "pnpm tsc --build --clean", "postinstall": "pnpm run build", "prepublish": "pnpm run build", "do-lint": "pnpm run lint", "do-lintfix": "pnpm run lintfix", - "do-typecheck": "pnpx tsc --noEmit", + "do-typecheck": "pnpm exec tsc --noEmit", "do-build-prod": "pnpm run build", "do-test": "pnpm run test" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 26421c8b6..7592a3c6b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 importers: @@ -36,8 +36,8 @@ importers: '@lezer/generator': 0.15.4 mocha: 9.2.2 rollup: 2.70.2 - rollup-plugin-dts: 4.2.1_rollup@2.70.2+typescript@4.6.3 - rollup-plugin-ts: 2.0.7_rollup@2.70.2+typescript@4.6.3 + rollup-plugin-dts: 4.2.1_nmerszcjz2rfjina4mudxa4qka + rollup-plugin-ts: 2.0.7_nmerszcjz2rfjina4mudxa4qka typescript: 4.6.3 packages/hoppscotch-app: @@ -105,12 +105,16 @@ importers: '@types/esprima': ^4.0.3 '@types/har-format': ^1.2.8 '@types/httpsnippet': ^1.23.1 + '@types/jest': ^27.4.1 + '@types/js-yaml': ^4.0.5 '@types/lodash': ^4.14.181 '@types/lossless-json': ^1.0.1 '@types/paho-mqtt': ^1.0.6 '@types/postman-collection': ^3.5.7 + '@types/qs': ^6.9.7 '@types/splitpanes': ^2.2.1 '@types/uuid': ^8.3.4 + '@types/yargs-parser': ^21.0.0 '@urql/core': ^2.4.4 '@urql/devtools': ^2.0.3 '@urql/exchange-auth': ^0.1.7 @@ -219,7 +223,7 @@ importers: '@hoppscotch/data': link:../hoppscotch-data '@hoppscotch/js-sandbox': link:../hoppscotch-js-sandbox '@nuxtjs/axios': 5.13.6 - '@nuxtjs/composition-api': 0.32.0_fe703d04f3c8e62a38e622e54ccb997f + '@nuxtjs/composition-api': 0.32.0_7zyd2bhtzdtcuohgelsuzs4zp4 '@nuxtjs/gtm': 2.4.0 '@nuxtjs/i18n': 7.2.1 '@nuxtjs/robots': 2.5.0 @@ -238,8 +242,8 @@ importers: fp-ts: 2.11.10 fuse.js: 6.5.3 graphql: 15.7.2 - graphql-language-service-interface: 2.9.1_ac4ec5720f2d0ad4b770153d197a0e78 - graphql-language-service-parser: 1.10.4_ac4ec5720f2d0ad4b770153d197a0e78 + graphql-language-service-interface: 2.9.1_lkrcf5pybqujbtm7lu54f4mx6u + graphql-language-service-parser: 1.10.4_lkrcf5pybqujbtm7lu54f4mx6u graphql-tag: 2.12.6_graphql@15.7.2 httpsnippet: 2.0.0 insomnia-importers: 2.8.0_openapi-types@10.0.0 @@ -277,18 +281,18 @@ importers: '@babel/core': 7.17.9 '@babel/preset-env': 7.16.11_@babel+core@7.17.9 '@graphql-codegen/add': 3.1.1_graphql@15.7.2 - '@graphql-codegen/cli': 2.6.2_ac4ec5720f2d0ad4b770153d197a0e78 + '@graphql-codegen/cli': 2.6.2_lkrcf5pybqujbtm7lu54f4mx6u '@graphql-codegen/typed-document-node': 2.2.8_graphql@15.7.2 '@graphql-codegen/typescript': 2.4.8_graphql@15.7.2 '@graphql-codegen/typescript-operations': 2.3.5_graphql@15.7.2 - '@graphql-codegen/typescript-urql-graphcache': 2.2.10_0078faba29fbf2fd40f25b4af19ce6b4 + '@graphql-codegen/typescript-urql-graphcache': 2.2.10_ab4pvorj7pzp2qhslnfpdhhgwq '@graphql-codegen/urql-introspection': 2.1.1_graphql@15.7.2 '@graphql-typed-document-node/core': 3.1.1_graphql@15.7.2 '@nuxt/types': 2.15.8_sass@1.50.0 - '@nuxt/typescript-build': 2.1.0_@nuxt+types@2.15.8+eslint@8.13.0 + '@nuxt/typescript-build': 2.1.0_q3t6h55dq2sw47xlf74gyoa2ki '@nuxtjs/color-mode': 2.1.1 '@nuxtjs/dotenv': 1.4.1 - '@nuxtjs/eslint-config-typescript': 9.0.0_7e5e6237d96334972dc90355c15ec900 + '@nuxtjs/eslint-config-typescript': 9.0.0_pzpgen6zmm2jolojank4cxwjaa '@nuxtjs/eslint-module': 3.1.0_eslint@8.13.0 '@nuxtjs/google-analytics': 2.4.0 '@nuxtjs/google-fonts': 1.3.0 @@ -303,13 +307,17 @@ importers: '@types/esprima': 4.0.3 '@types/har-format': 1.2.8 '@types/httpsnippet': 1.23.1 + '@types/jest': 27.4.1 + '@types/js-yaml': 4.0.5 '@types/lodash': 4.14.181 '@types/lossless-json': 1.0.1 '@types/paho-mqtt': 1.0.6 '@types/postman-collection': 3.5.7 + '@types/qs': 6.9.7 '@types/splitpanes': 2.2.1 '@types/uuid': 8.3.4 - '@urql/devtools': 2.0.3_@urql+core@2.4.4+graphql@15.7.2 + '@types/yargs-parser': 21.0.0 + '@urql/devtools': 2.0.3_6mj4hf5jpwkkuqkncahvybm4zm '@vue/composition-api': 1.4.9 '@vue/runtime-dom': 3.2.33 '@vue/test-utils': 1.3.0 @@ -321,7 +329,7 @@ importers: eslint: 8.13.0 eslint-config-prettier: 8.5.0_eslint@8.13.0 eslint-plugin-nuxt: 3.2.0_eslint@8.13.0 - eslint-plugin-prettier: 4.0.0_1815ac95b7fb26c13c7d48a8eef62d0f + eslint-plugin-prettier: 4.0.0_dak2zfnx7mtmcpd5jcuo55rnb4 eslint-plugin-vue: 8.6.0_eslint@8.13.0 jest: 27.5.1 jest-serializer-vue: 2.0.2 @@ -334,10 +342,10 @@ importers: sass-loader: 10.2.0_sass@1.50.0 stylelint: 14.7.1 stylelint-config-prettier: 9.0.3_stylelint@14.7.1 - stylelint-config-recommended-vue: 1.4.0_1a82b100232bbe7036ec0a7ca7a4baf4 + stylelint-config-recommended-vue: 1.4.0_dkblcabdfo7hanxmbj6kpjf26q stylelint-config-standard: 25.0.0_stylelint@14.7.1 stylelint-config-standard-scss: 3.0.0_stylelint@14.7.1 - ts-jest: 27.1.4_c7568fb52a2be2d5e066be5ef16e8b78 + ts-jest: 27.1.4_4x5qquxzignoqqsapgnc6txbpa typescript: 4.6.3 vue-jest: 3.0.7_babel-core@7.0.0-bridge.0 vue-template-babel-compiler: 1.1.3 @@ -387,6 +395,7 @@ importers: lodash: ^4.17.21 parser-ts: ^0.6.16 tsup: ^5.12.5 + typescript: ^4.6.3 dependencies: fp-ts: 2.11.10 io-ts: 2.2.16_fp-ts@2.11.10 @@ -394,7 +403,8 @@ importers: parser-ts: 0.6.16_fp-ts@2.11.10 devDependencies: '@types/lodash': 4.14.181 - tsup: 5.12.5 + tsup: 5.12.5_typescript@4.6.3 + typescript: 4.6.3 packages/hoppscotch-js-sandbox: specifiers: @@ -430,15 +440,15 @@ importers: '@types/jest': 27.4.1 '@types/lodash': 4.14.181 '@types/node': 17.0.24 - '@typescript-eslint/eslint-plugin': 5.19.0_f34adc8488d2e4f014fe61432d70cbf2 - '@typescript-eslint/parser': 5.19.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/eslint-plugin': 5.19.0_6nfnzbei2lspafh6mfbs24gl6i + '@typescript-eslint/parser': 5.19.0_jzhokl4shvj5szf5bgr66kln2a eslint: 8.13.0 eslint-config-prettier: 8.5.0_eslint@8.13.0 - eslint-plugin-prettier: 4.0.0_1815ac95b7fb26c13c7d48a8eef62d0f + eslint-plugin-prettier: 4.0.0_dak2zfnx7mtmcpd5jcuo55rnb4 io-ts: 2.2.16_fp-ts@2.11.10 jest: 27.5.1 prettier: 2.6.2 - ts-jest: 27.1.4_9985e1834e803358b7be1e6ce5ca0eea + ts-jest: 27.1.4_tgc6da2oqazvrn56dzwolsqo5i typescript: 4.6.3 packages: @@ -2194,7 +2204,7 @@ packages: '@types/node': 17.0.24 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 1.0.9_17a82b5ac88a5de7094eac76b4edda13 + cosmiconfig-typescript-loader: 1.0.9_c6ucwwwirjo6ockovr3lj3o2cm lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.6.3 @@ -2296,7 +2306,7 @@ packages: esbuild: 0.12.29 dev: true - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_ec5c0ebd3030a0a5109338876648df1b: + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_5roa5pjqgcqkkeethcdwmsg7dm: resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -2332,7 +2342,7 @@ packages: engines: {node: '>=14.0.0', npm: '>=7.0.0'} dev: false - /@firebase/analytics-compat/0.1.9_4806ef38eb920aae9b1aba6665b35f7f: + /@firebase/analytics-compat/0.1.9_jado6ohlsifk5gy2xjtglm27p4: resolution: {integrity: sha512-HYKMAZvfU589WVvK5XKY9Pl+axXFISabouAFw2VHpJm/TO1mAXAy0+eIjqQ3j8z3L1OEfCeOV/oY9eh8rpJZ5w==} peerDependencies: '@firebase/app-compat': 0.x @@ -2364,7 +2374,7 @@ packages: tslib: 2.3.1 dev: false - /@firebase/app-check-compat/0.2.6_4806ef38eb920aae9b1aba6665b35f7f: + /@firebase/app-check-compat/0.2.6_jado6ohlsifk5gy2xjtglm27p4: resolution: {integrity: sha512-DBzLHg/uuoNhDdwPEj8zQcqPaZSBFn8I0hATKyoX6SiAQKCi+4ugqeyQ6qGCyDpfNOyxL4PPxPMisXRhPzV2jw==} peerDependencies: '@firebase/app-compat': 0.x @@ -2423,14 +2433,14 @@ packages: tslib: 2.3.1 dev: false - /@firebase/auth-compat/0.2.12_e38422e44459f38f69dbbd03a46a6a15: + /@firebase/auth-compat/0.2.12_4occfzcelhzy62o3xub2i2tkcu: resolution: {integrity: sha512-LKeKylktRj03xgW5ilSOW1c4AsMig15ogf5hDKa820t6Bp6MNabj8yq2TV0/Q4SP4Ox/yrTISJGVvk+TJuBecQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.22 '@firebase/auth': 0.19.12_@firebase+app@0.7.21 - '@firebase/auth-types': 0.11.0_a64185e619fe35b9275fc3c76f6268db + '@firebase/auth-types': 0.11.0_uzaylzqz7y23sj27ypdw6yti3m '@firebase/component': 0.5.13 '@firebase/util': 1.5.2 node-fetch: 2.6.7 @@ -2444,7 +2454,7 @@ packages: - utf-8-validate dev: false - /@firebase/auth-interop-types/0.1.6_a64185e619fe35b9275fc3c76f6268db: + /@firebase/auth-interop-types/0.1.6_uzaylzqz7y23sj27ypdw6yti3m: resolution: {integrity: sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==} peerDependencies: '@firebase/app-types': 0.x @@ -2454,7 +2464,7 @@ packages: '@firebase/util': 1.5.2 dev: false - /@firebase/auth-types/0.11.0_a64185e619fe35b9275fc3c76f6268db: + /@firebase/auth-types/0.11.0_uzaylzqz7y23sj27ypdw6yti3m: resolution: {integrity: sha512-q7Bt6cx+ySj9elQHTsKulwk3+qDezhzRBFC9zlQ1BjgMueUOnGMcvqmU0zuKlQ4RhLSH7MNAdBV2znVaoN3Vxw==} peerDependencies: '@firebase/app-types': 0.x @@ -2489,7 +2499,7 @@ packages: tslib: 2.3.1 dev: false - /@firebase/database-compat/0.1.8_5395f954a08b86dffb8e74f386d79234: + /@firebase/database-compat/0.1.8_kok7svfarodn764ootzynv4sgq: resolution: {integrity: sha512-dhXr5CSieBuKNdU96HgeewMQCT9EgOIkfF1GNy+iRrdl7BWLxmlKuvLfK319rmIytSs/vnCzcD9uqyxTeU/A3A==} peerDependencies: '@firebase/app-compat': 0.x @@ -2515,7 +2525,7 @@ packages: /@firebase/database/0.12.8_@firebase+app-types@0.7.0: resolution: {integrity: sha512-JBQVfFLzfhxlQbl4OU6ov9fdsddkytBQdtSSR49cz48homj38ccltAhK6seum+BI7f28cV2LFHF9672lcN+qxA==} dependencies: - '@firebase/auth-interop-types': 0.1.6_a64185e619fe35b9275fc3c76f6268db + '@firebase/auth-interop-types': 0.1.6_uzaylzqz7y23sj27ypdw6yti3m '@firebase/component': 0.5.13 '@firebase/logger': 0.3.2 '@firebase/util': 1.5.2 @@ -2525,7 +2535,7 @@ packages: - '@firebase/app-types' dev: false - /@firebase/firestore-compat/0.1.17_e38422e44459f38f69dbbd03a46a6a15: + /@firebase/firestore-compat/0.1.17_4occfzcelhzy62o3xub2i2tkcu: resolution: {integrity: sha512-hTLgq2WXUE6bb3/IqYlwY0Q6FdbZB2JwDoZHexIQmK69XuuK3j+JbE/NixV3mBo232tNSU+QeamfbAd6A1Agfw==} peerDependencies: '@firebase/app-compat': 0.x @@ -2533,7 +2543,7 @@ packages: '@firebase/app-compat': 0.1.22 '@firebase/component': 0.5.13 '@firebase/firestore': 3.4.8_@firebase+app@0.7.21 - '@firebase/firestore-types': 2.5.0_a64185e619fe35b9275fc3c76f6268db + '@firebase/firestore-types': 2.5.0_uzaylzqz7y23sj27ypdw6yti3m '@firebase/util': 1.5.2 tslib: 2.3.1 transitivePeerDependencies: @@ -2542,7 +2552,7 @@ packages: - encoding dev: false - /@firebase/firestore-types/2.5.0_a64185e619fe35b9275fc3c76f6268db: + /@firebase/firestore-types/2.5.0_uzaylzqz7y23sj27ypdw6yti3m: resolution: {integrity: sha512-I6c2m1zUhZ5SH0cWPmINabDyH5w0PPFHk2UHsjBpKdZllzJZ2TwTkXbDtpHUZNmnc/zAa0WNMNMvcvbb/xJLKA==} peerDependencies: '@firebase/app-types': 0.x @@ -2571,14 +2581,14 @@ packages: - encoding dev: false - /@firebase/functions-compat/0.1.12_e38422e44459f38f69dbbd03a46a6a15: + /@firebase/functions-compat/0.1.12_4occfzcelhzy62o3xub2i2tkcu: resolution: {integrity: sha512-pKianAWF9vv3u9DazbRExYQFjEu/b9gxTWVCPjq+FiLK39xULT01dZz4Zrr2KzFnb54wHHbRmU1BAWNAkQTmmQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.22 '@firebase/component': 0.5.13 - '@firebase/functions': 0.7.11_0dd03ea9f716b9c2b35974db8236dad2 + '@firebase/functions': 0.7.11_bxid5kpxc244fm2zotnyenw22i '@firebase/functions-types': 0.5.0 '@firebase/util': 1.5.2 tslib: 2.3.1 @@ -2592,14 +2602,14 @@ packages: resolution: {integrity: sha512-qza0M5EwX+Ocrl1cYI14zoipUX4gI/Shwqv0C1nB864INAD42Dgv4v94BCyxGHBg2kzlWy8PNafdP7zPO8aJQA==} dev: false - /@firebase/functions/0.7.11_0dd03ea9f716b9c2b35974db8236dad2: + /@firebase/functions/0.7.11_bxid5kpxc244fm2zotnyenw22i: resolution: {integrity: sha512-o9pmN1TWHDEpmB6IYbqeIIG6Wllcfw6jSNm8UZYnOYM8oDay1FW6OeN/fA0GlGmwF4cPdxA3oKXbLn3ObYFxXQ==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.21 '@firebase/app-check-interop-types': 0.1.0 - '@firebase/auth-interop-types': 0.1.6_a64185e619fe35b9275fc3c76f6268db + '@firebase/auth-interop-types': 0.1.6_uzaylzqz7y23sj27ypdw6yti3m '@firebase/component': 0.5.13 '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.5.2 @@ -2627,7 +2637,7 @@ packages: tslib: 2.3.1 dev: false - /@firebase/messaging-compat/0.1.12_4806ef38eb920aae9b1aba6665b35f7f: + /@firebase/messaging-compat/0.1.12_jado6ohlsifk5gy2xjtglm27p4: resolution: {integrity: sha512-Cfv4ZQaxiMx4DcpDkFX1yKHFGQtnyMA6pcLplcC3uHkSVCyNRW6pFYSoO0/Uae03ixxIYNwle1ZVaVUZ2L5ddA==} peerDependencies: '@firebase/app-compat': 0.x @@ -2658,7 +2668,7 @@ packages: tslib: 2.3.1 dev: false - /@firebase/performance-compat/0.1.8_4806ef38eb920aae9b1aba6665b35f7f: + /@firebase/performance-compat/0.1.8_jado6ohlsifk5gy2xjtglm27p4: resolution: {integrity: sha512-lMLKFcOB99+tb6dVHJlJ8s19JFjxqpAqPGXCG8evTODPUW3BluBbfG4YS7JRESVA7wc/6kkuQIOx9q7l+bBZtQ==} peerDependencies: '@firebase/app-compat': 0.x @@ -2699,7 +2709,7 @@ packages: whatwg-fetch: 2.0.4 dev: false - /@firebase/remote-config-compat/0.1.8_4806ef38eb920aae9b1aba6665b35f7f: + /@firebase/remote-config-compat/0.1.8_jado6ohlsifk5gy2xjtglm27p4: resolution: {integrity: sha512-lU9t7PMVpgE6q1vG8AuFenFhfUnx0H+eeiIQTi4dtuLDMx9BsI14c9VuiVjRIi7xC2DCDRNQCRL1kRD8bzgJNg==} peerDependencies: '@firebase/app-compat': 0.x @@ -2732,7 +2742,7 @@ packages: tslib: 2.3.1 dev: false - /@firebase/storage-compat/0.1.13_e38422e44459f38f69dbbd03a46a6a15: + /@firebase/storage-compat/0.1.13_4occfzcelhzy62o3xub2i2tkcu: resolution: {integrity: sha512-MdubKh+xe3Xpi34WaXBKtim8H2aauO5sqqmATTc2WgSmSAqTmNSjQfNqIdf139Mp9ZCnpZAxiwiwzQtfckLYWg==} peerDependencies: '@firebase/app-compat': 0.x @@ -2740,7 +2750,7 @@ packages: '@firebase/app-compat': 0.1.22 '@firebase/component': 0.5.13 '@firebase/storage': 0.9.5_@firebase+app@0.7.21 - '@firebase/storage-types': 0.6.0_a64185e619fe35b9275fc3c76f6268db + '@firebase/storage-types': 0.6.0_uzaylzqz7y23sj27ypdw6yti3m '@firebase/util': 1.5.2 tslib: 2.3.1 transitivePeerDependencies: @@ -2749,7 +2759,7 @@ packages: - encoding dev: false - /@firebase/storage-types/0.6.0_a64185e619fe35b9275fc3c76f6268db: + /@firebase/storage-types/0.6.0_uzaylzqz7y23sj27ypdw6yti3m: resolution: {integrity: sha512-1LpWhcCb1ftpkP/akhzjzeFxgVefs6eMD2QeKiJJUGH1qOiows2w5o0sKCUSQrvrRQS1lz3SFGvNR1Ck/gqxeA==} peerDependencies: '@firebase/app-types': 0.x @@ -2797,7 +2807,7 @@ packages: tslib: 2.3.1 dev: true - /@graphql-codegen/cli/2.6.2_ac4ec5720f2d0ad4b770153d197a0e78: + /@graphql-codegen/cli/2.6.2_lkrcf5pybqujbtm7lu54f4mx6u: resolution: {integrity: sha512-UO75msoVgvLEvfjCezM09cQQqp32+mR8Ma1ACsBpr7nroFvHbgcu2ulx1cMovg4sxDBCsvd9Eq/xOOMpARUxtw==} hasBin: true peerDependencies: @@ -2812,8 +2822,8 @@ packages: '@graphql-tools/graphql-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/json-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/load': 7.5.1_graphql@15.7.2 - '@graphql-tools/prisma-loader': 7.1.1_e66b2893df708e5e2662df4974b38286 - '@graphql-tools/url-loader': 7.7.1_e66b2893df708e5e2662df4974b38286 + '@graphql-tools/prisma-loader': 7.1.1_graphql@15.7.2 + '@graphql-tools/url-loader': 7.7.1_graphql@15.7.2 '@graphql-tools/utils': 8.6.1_graphql@15.7.2 ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -2827,7 +2837,7 @@ packages: glob: 7.2.0 globby: 11.1.0 graphql: 15.7.2 - graphql-config: 4.1.0_ac4ec5720f2d0ad4b770153d197a0e78 + graphql-config: 4.1.0_lkrcf5pybqujbtm7lu54f4mx6u inquirer: 8.2.0 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -2951,7 +2961,7 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-urql-graphcache/2.2.10_0078faba29fbf2fd40f25b4af19ce6b4: + /@graphql-codegen/typescript-urql-graphcache/2.2.10_ab4pvorj7pzp2qhslnfpdhhgwq: resolution: {integrity: sha512-GRWisSY9zdf2tdT0jBYqapesw68B88ExpG9DkInyeQf62MfBDjxzncmiPbuHxRjd2QJBCo2WfycHTwgkMGT1JA==} peerDependencies: '@urql/exchange-graphcache': ^4.1.1 @@ -3208,12 +3218,12 @@ packages: tslib: 2.3.1 dev: true - /@graphql-tools/prisma-loader/7.1.1_e66b2893df708e5e2662df4974b38286: + /@graphql-tools/prisma-loader/7.1.1_graphql@15.7.2: resolution: {integrity: sha512-9hVpG3BNsXAYMLPlZhSHubk6qBmiHLo/UlU0ldL100sMpqI46iBaHNhTNXZCSdd81hT+4HNqaDXNFqyKJ22OGQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/url-loader': 7.7.1_e66b2893df708e5e2662df4974b38286 + '@graphql-tools/url-loader': 7.7.1_graphql@15.7.2 '@graphql-tools/utils': 8.6.1_graphql@15.7.2 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.33 @@ -3267,7 +3277,7 @@ packages: tslib: 2.3.1 value-or-promise: 1.0.11 - /@graphql-tools/url-loader/7.7.0_e66b2893df708e5e2662df4974b38286: + /@graphql-tools/url-loader/7.7.0_graphql@15.7.2: resolution: {integrity: sha512-mBBb+aJqI4E0MVEzyfi76Pi/G6lGxGTVt/tP1YtKJly7UnonNoWOtDusdL3zIVAGhGgLsNrLbGhLDbwSd6TV6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3285,7 +3295,7 @@ packages: graphql-sse: 1.0.6_graphql@15.7.2 graphql-ws: 5.5.5_graphql@15.7.2 isomorphic-ws: 4.0.1_ws@8.5.0 - meros: 1.1.4_@types+node@17.0.24 + meros: 1.1.4 subscriptions-transport-ws: 0.11.0_graphql@15.7.2 sync-fetch: 0.3.1 tslib: 2.3.1 @@ -3298,7 +3308,7 @@ packages: - encoding - utf-8-validate - /@graphql-tools/url-loader/7.7.1_e66b2893df708e5e2662df4974b38286: + /@graphql-tools/url-loader/7.7.1_graphql@15.7.2: resolution: {integrity: sha512-K/5amdeHtKYI976HVd/AXdSNvLL7vx5QVjMlwN0OHeYyxSgC+UOH+KkS7cshYgL13SekGu0Mxbg9ABfgQ34ECA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3316,7 +3326,7 @@ packages: graphql-sse: 1.0.6_graphql@15.7.2 graphql-ws: 5.5.5_graphql@15.7.2 isomorphic-ws: 4.0.1_ws@8.5.0 - meros: 1.1.4_@types+node@17.0.24 + meros: 1.1.4 subscriptions-transport-ws: 0.11.0_graphql@15.7.2 sync-fetch: 0.3.1 tslib: 2.3.1 @@ -3742,7 +3752,7 @@ packages: resolution: {integrity: sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==} dependencies: '@gar/promisify': 1.1.2 - semver: 7.3.6 + semver: 7.3.7 dev: false /@npmcli/move-file/1.1.2: @@ -3909,12 +3919,12 @@ packages: ufo: 0.7.11 dev: false - /@nuxt/kit-edge/3.0.0-27501460.04a72f8: - resolution: {integrity: sha512-B7jujSfjPVnnkqGtkiZfCeGJsnDBn5yIjkz+Rw1fuT0ZzUVI4u+yYlYuRXp9chv+QodPt4dOQgljMlc0YuzHEw==} - engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0} + /@nuxt/kit-edge/3.0.0-rc.2-27525415.a8d42d5: + resolution: {integrity: sha512-WfUj777D53SWprNmghE2JcgS/IAeU/NBLTsgJQf8EZG/GFjM62w/YCiY3zGcyVMsxHBSgnE9VUv5RZ5Gl8Os/A==} + engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - '@nuxt/schema': /@nuxt/schema-edge/3.0.0-27501460.04a72f8 - c12: 0.2.5 + '@nuxt/schema': /@nuxt/schema-edge/3.0.0-rc.2-27525415.a8d42d5 + c12: 0.2.7 consola: 2.15.3 defu: 6.0.0 globby: 13.1.1 @@ -3929,7 +3939,7 @@ packages: scule: 0.2.1 semver: 7.3.7 unctx: 1.1.4 - unimport: 0.1.5 + unimport: 0.1.8 untyped: 0.4.4 transitivePeerDependencies: - esbuild @@ -3961,11 +3971,11 @@ packages: - encoding dev: false - /@nuxt/schema-edge/3.0.0-27501460.04a72f8: - resolution: {integrity: sha512-9jK5mLo2KRh4K8NSz6/bptSav63kAI57B9mZsB1qug4O4dSHTJDeP5T6eHzM9K5gKUsUDlmvniW+RSvbY2dsDg==} - engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0} + /@nuxt/schema-edge/3.0.0-rc.2-27525415.a8d42d5: + resolution: {integrity: sha512-CrERM3lg+TXjBToAI/XmfLdJbGoQU600iUhZR9VIbUpNqq+nFPnIw1DxS6XioyBq/4rh/GmaHC+LxZFxNkigCA==} + engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - c12: 0.2.5 + c12: 0.2.7 create-require: 1.1.1 defu: 6.0.0 jiti: 1.13.0 @@ -3974,7 +3984,7 @@ packages: scule: 0.2.1 std-env: 3.1.1 ufo: 0.8.3 - unimport: 0.1.5 + unimport: 0.1.8 transitivePeerDependencies: - esbuild - rollup @@ -4059,14 +4069,14 @@ packages: - webpack dev: true - /@nuxt/typescript-build/2.1.0_@nuxt+types@2.15.8+eslint@8.13.0: + /@nuxt/typescript-build/2.1.0_q3t6h55dq2sw47xlf74gyoa2ki: resolution: {integrity: sha512-7TLMpfzgOckf3cBkzoPFns6Xl8FzY6MoFfm/5HUE47QeTWAdOG9ZFxMrVhHWieZHYUuV+k6byRtaRv4S/3R8zA==} peerDependencies: '@nuxt/types': '>=2.13.1' dependencies: '@nuxt/types': 2.15.8_sass@1.50.0 consola: 2.15.3 - fork-ts-checker-webpack-plugin: 6.4.0_eslint@8.13.0+typescript@4.2.4 + fork-ts-checker-webpack-plugin: 6.4.0_a7as76x6rrddngsh5pmyc4eygu ts-loader: 8.3.0_typescript@4.2.4 typescript: 4.2.4 transitivePeerDependencies: @@ -4132,7 +4142,7 @@ packages: '@nuxt/babel-preset-app': 2.15.8 '@nuxt/friendly-errors-webpack-plugin': 2.5.2_webpack@4.46.0 '@nuxt/utils': 2.15.8 - babel-loader: 8.2.4_598a497cebab8e15ee8f9e5632178e63 + babel-loader: 8.2.4_lgfes7hlvohbl3uptzldef4omm cache-loader: 4.1.0_webpack@4.46.0 caniuse-lite: 1.0.30001274 consola: 2.15.3 @@ -4163,8 +4173,8 @@ packages: thread-loader: 3.0.4_webpack@4.46.0 time-fix-plugin: 2.0.7_webpack@4.46.0 ufo: 0.7.11 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - vue-loader: 15.9.8_559ffc97fd41de05d12663d7fb949156 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + vue-loader: 15.9.8_kwp7zf75ihpalujgmpl7xferky vue-style-loader: 4.1.3 vue-template-compiler: 2.6.14 webpack: 4.46.0 @@ -4201,7 +4211,7 @@ packages: lodash.template: 4.5.0 dev: true - /@nuxtjs/composition-api/0.32.0_fe703d04f3c8e62a38e622e54ccb997f: + /@nuxtjs/composition-api/0.32.0_7zyd2bhtzdtcuohgelsuzs4zp4: resolution: {integrity: sha512-/LYf0N5x5j8i2/Uldfw+n4o3SVXyCIYQyOwSL+2JTllyyEkO3zHJc8YAbJhp22kHh6gPEhmgBA/whDUbERY7mg==} engines: {node: ^12.20.0 || >=14.13.0} peerDependencies: @@ -4216,7 +4226,7 @@ packages: magic-string: 0.25.7 nuxt: 2.15.8_typescript@4.6.3 ufo: 0.7.10 - unplugin-vue2-script-setup: 0.9.3_03e6644f7f58da72872857a67d328278 + unplugin-vue2-script-setup: 0.9.3_aptgit37ldnhfbzik6th2mucpa upath: 2.0.1 transitivePeerDependencies: - '@vue/runtime-dom' @@ -4235,14 +4245,14 @@ packages: dotenv: 8.6.0 dev: true - /@nuxtjs/eslint-config-typescript/9.0.0_7e5e6237d96334972dc90355c15ec900: + /@nuxtjs/eslint-config-typescript/9.0.0_pzpgen6zmm2jolojank4cxwjaa: resolution: {integrity: sha512-IgilIOcwJZ3Af4P7r35vHBl2GS9SIG0TuOINyUiIfzZBmEpX5vYhAbxHeeJhNosIywexDvZZ5m8EQwuJJYUJBg==} peerDependencies: eslint: ^8.11.0 dependencies: - '@nuxtjs/eslint-config': 9.0.0_dbaf2d6f9d05bf1a2912282ff775a7a6 - '@typescript-eslint/eslint-plugin': 5.14.0_17f709d9d07d4657faee4b3f92b0870d - '@typescript-eslint/parser': 5.14.0_eslint@8.13.0+typescript@4.6.3 + '@nuxtjs/eslint-config': 9.0.0_3oxs2345aw7rukisfax7o5nhuy + '@typescript-eslint/eslint-plugin': 5.14.0_c73qtwoqpvdfp6xojm7zfmehbu + '@typescript-eslint/parser': 5.14.0_jzhokl4shvj5szf5bgr66kln2a eslint: 8.13.0 eslint-import-resolver-typescript: 2.5.0_eslint@8.13.0 transitivePeerDependencies: @@ -4252,15 +4262,15 @@ packages: - typescript dev: true - /@nuxtjs/eslint-config/9.0.0_dbaf2d6f9d05bf1a2912282ff775a7a6: + /@nuxtjs/eslint-config/9.0.0_3oxs2345aw7rukisfax7o5nhuy: resolution: {integrity: sha512-S44hgSrAKEBJMmzg3Wes0uIZBASOgVAOnMYeNZNeeawRX1WpSS9w3WbqcIwjVL1Orx/XwrzMMH32A1ncEd/DQg==} peerDependencies: eslint: ^8.11.0 dependencies: eslint: 8.13.0 - eslint-config-standard: 16.0.3_e14cc71058e7578f3b574214d822a46a + eslint-config-standard: 16.0.3_4fgmoecy45ly6o2xiiknqiveni eslint-plugin-import: 2.25.4_eslint@8.13.0 - eslint-plugin-jest: 26.1.1_dbaf2d6f9d05bf1a2912282ff775a7a6 + eslint-plugin-jest: 26.1.1_3oxs2345aw7rukisfax7o5nhuy eslint-plugin-node: 11.1.0_eslint@8.13.0 eslint-plugin-promise: 6.0.0_eslint@8.13.0 eslint-plugin-unicorn: 41.0.0_eslint@8.13.0 @@ -5446,7 +5456,7 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.14.0_17f709d9d07d4657faee4b3f92b0870d: + /@typescript-eslint/eslint-plugin/5.14.0_c73qtwoqpvdfp6xojm7zfmehbu: resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5457,10 +5467,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.14.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/parser': 5.14.0_jzhokl4shvj5szf5bgr66kln2a '@typescript-eslint/scope-manager': 5.14.0 - '@typescript-eslint/type-utils': 5.14.0_eslint@8.13.0+typescript@4.6.3 - '@typescript-eslint/utils': 5.14.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/type-utils': 5.14.0_jzhokl4shvj5szf5bgr66kln2a + '@typescript-eslint/utils': 5.14.0_jzhokl4shvj5szf5bgr66kln2a debug: 4.3.4 eslint: 8.13.0 functional-red-black-tree: 1.0.1 @@ -5473,7 +5483,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.19.0_f34adc8488d2e4f014fe61432d70cbf2: + /@typescript-eslint/eslint-plugin/5.19.0_6nfnzbei2lspafh6mfbs24gl6i: resolution: {integrity: sha512-w59GpFqDYGnWFim9p6TGJz7a3qWeENJuAKCqjGSx+Hq/bwq3RZwXYqy98KIfN85yDqz9mq6QXiY5h0FjGQLyEg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5484,10 +5494,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.19.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/parser': 5.19.0_jzhokl4shvj5szf5bgr66kln2a '@typescript-eslint/scope-manager': 5.19.0 - '@typescript-eslint/type-utils': 5.19.0_eslint@8.13.0+typescript@4.6.3 - '@typescript-eslint/utils': 5.19.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/type-utils': 5.19.0_jzhokl4shvj5szf5bgr66kln2a + '@typescript-eslint/utils': 5.19.0_jzhokl4shvj5szf5bgr66kln2a debug: 4.3.4 eslint: 8.13.0 functional-red-black-tree: 1.0.1 @@ -5500,7 +5510,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.14.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/parser/5.14.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5520,7 +5530,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.19.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/parser/5.19.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-yhktJjMCJX8BSBczh1F/uY8wGRYrBeyn84kH6oyqdIJwTGKmzX5Qiq49LRQ0Jh0LXnWijEziSo6BRqny8nqLVQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5556,7 +5566,7 @@ packages: '@typescript-eslint/visitor-keys': 5.19.0 dev: true - /@typescript-eslint/type-utils/5.14.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/type-utils/5.14.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5566,7 +5576,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.14.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/utils': 5.14.0_jzhokl4shvj5szf5bgr66kln2a debug: 4.3.4 eslint: 8.13.0 tsutils: 3.21.0_typescript@4.6.3 @@ -5575,7 +5585,7 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils/5.19.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/type-utils/5.19.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-O6XQ4RI4rQcBGshTQAYBUIGsKqrKeuIOz9v8bckXZnSeXjn/1+BDZndHLe10UplQeJLXDNbaZYrAytKNQO2T4Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5585,7 +5595,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.19.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/utils': 5.19.0_jzhokl4shvj5szf5bgr66kln2a debug: 4.3.4 eslint: 8.13.0 tsutils: 3.21.0_typescript@4.6.3 @@ -5646,7 +5656,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.14.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/utils/5.14.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5664,7 +5674,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils/5.19.0_eslint@8.13.0+typescript@4.6.3: + /@typescript-eslint/utils/5.19.0_jzhokl4shvj5szf5bgr66kln2a: resolution: {integrity: sha512-ZuEckdupXpXamKvFz/Ql8YnePh2ZWcwz7APICzJL985Rp5C2AYcHO62oJzIqNhAMtMK6XvrlBTZeNG8n7gS3lQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5712,7 +5722,7 @@ packages: wonka: 4.0.15 dev: false - /@urql/devtools/2.0.3_@urql+core@2.4.4+graphql@15.7.2: + /@urql/devtools/2.0.3_6mj4hf5jpwkkuqkncahvybm4zm: resolution: {integrity: sha512-TktPLiBS9LcBPHD6qcnb8wqOVcg3Bx0iCtvQ80uPpfofwwBGJmqnQTjUdEFU6kwaLOFZULQ9+Uo4831G823mQw==} peerDependencies: '@urql/core': '>= 1.14.0' @@ -6600,21 +6610,6 @@ packages: - supports-color dev: true - /babel-loader/8.2.4_598a497cebab8e15ee8f9e5632178e63: - resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.17.9 - find-cache-dir: 3.3.2 - loader-utils: 2.0.2 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 4.46.0 - dev: false - /babel-loader/8.2.4_@babel+core@7.17.9: resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==} engines: {node: '>= 8.9'} @@ -6629,6 +6624,21 @@ packages: schema-utils: 2.7.1 dev: true + /babel-loader/8.2.4_lgfes7hlvohbl3uptzldef4omm: + resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.17.9 + find-cache-dir: 3.3.2 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.46.0 + dev: false + /babel-messages/6.23.0: resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=} dependencies: @@ -7187,8 +7197,8 @@ packages: engines: {node: '>= 0.8'} dev: false - /c12/0.2.5: - resolution: {integrity: sha512-45/GsCYd63XHFgg7xq59eeR8hAbCDoj6w+kQWal9Vb8oGzMRDrHqpZexVNIL4DgeUduvCnBB+7smHiRHVAwBkQ==} + /c12/0.2.7: + resolution: {integrity: sha512-ih1nuHbZ6Ltf8Wss96JH6YvKIW5+9+uLAA08LUQAoDrFPGSyvPvQv/QBIRE+dCBWOK4PcwH0ylRkSa9huI1Acw==} dependencies: defu: 6.0.0 dotenv: 16.0.0 @@ -7214,7 +7224,7 @@ packages: infer-owner: 1.0.4 lru-cache: 5.1.1 mississippi: 3.0.0 - mkdirp: 0.5.5 + mkdirp: 0.5.6 move-concurrently: 1.0.1 promise-inflight: 1.0.1 rimraf: 2.7.1 @@ -7270,7 +7280,7 @@ packages: buffer-json: 2.0.0 find-cache-dir: 3.3.2 loader-utils: 1.4.0 - mkdirp: 0.5.5 + mkdirp: 0.5.6 neo-async: 2.6.2 schema-utils: 2.7.1 webpack: 4.46.0 @@ -7975,7 +7985,7 @@ packages: aproba: 1.2.0 fs-write-stream-atomic: 1.0.10 iferr: 0.1.5 - mkdirp: 0.5.5 + mkdirp: 0.5.6 rimraf: 2.7.1 run-queue: 1.0.3 dev: false @@ -8020,7 +8030,7 @@ packages: dependencies: '@iarna/toml': 2.2.5 - /cosmiconfig-typescript-loader/1.0.9_17a82b5ac88a5de7094eac76b4edda13: + /cosmiconfig-typescript-loader/1.0.9_c6ucwwwirjo6ockovr3lj3o2cm: resolution: {integrity: sha512-tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -8029,7 +8039,7 @@ packages: dependencies: '@types/node': 17.0.24 cosmiconfig: 7.0.1 - ts-node: 10.7.0_17a82b5ac88a5de7094eac76b4edda13 + ts-node: 10.7.0_c6ucwwwirjo6ockovr3lj3o2cm typescript: 4.6.3 transitivePeerDependencies: - '@swc/core' @@ -8233,7 +8243,7 @@ packages: postcss-modules-values: 3.0.0 postcss-value-parser: 4.2.0 schema-utils: 2.7.1 - semver: 7.3.6 + semver: 7.3.7 webpack: 4.46.0 dev: false @@ -9094,7 +9104,7 @@ packages: resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} engines: {node: '>=6.9.0'} dependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 memory-fs: 0.5.0 tapable: 1.1.3 @@ -9609,7 +9619,7 @@ packages: eslint: 8.13.0 dev: true - /eslint-config-standard/16.0.3_e14cc71058e7578f3b574214d822a46a: + /eslint-config-standard/16.0.3_4fgmoecy45ly6o2xiiknqiveni: resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} peerDependencies: eslint: ^7.12.1 @@ -9688,7 +9698,7 @@ packages: tsconfig-paths: 3.14.0 dev: true - /eslint-plugin-jest/26.1.1_dbaf2d6f9d05bf1a2912282ff775a7a6: + /eslint-plugin-jest/26.1.1_3oxs2345aw7rukisfax7o5nhuy: resolution: {integrity: sha512-HRKOuPi5ADhza4ZBK5ufyNXy28bXXkib87w+pQqdvBhSTsamndh6sIAKPAUl8y0/n9jSWBdTPslrwtKWqkp8dA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -9701,8 +9711,8 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.14.0_17f709d9d07d4657faee4b3f92b0870d - '@typescript-eslint/utils': 5.14.0_eslint@8.13.0+typescript@4.6.3 + '@typescript-eslint/eslint-plugin': 5.14.0_c73qtwoqpvdfp6xojm7zfmehbu + '@typescript-eslint/utils': 5.14.0_jzhokl4shvj5szf5bgr66kln2a eslint: 8.13.0 jest: 27.5.1 transitivePeerDependencies: @@ -9736,7 +9746,7 @@ packages: - supports-color dev: true - /eslint-plugin-prettier/4.0.0_1815ac95b7fb26c13c7d48a8eef62d0f: + /eslint-plugin-prettier/4.0.0_dak2zfnx7mtmcpd5jcuo55rnb4: resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} engines: {node: '>=6.0.0'} peerDependencies: @@ -10347,30 +10357,30 @@ packages: resolution: {integrity: sha512-Zdmag/wGNkA4IAek+2yQoWrF2vyqIowu+2eOcSaE6jE2hDZYA3nHNutsQ+jquSxE3SeJk3Dh1OEsffqgunBy/w==} dependencies: '@firebase/analytics': 0.7.8_@firebase+app@0.7.21 - '@firebase/analytics-compat': 0.1.9_4806ef38eb920aae9b1aba6665b35f7f + '@firebase/analytics-compat': 0.1.9_jado6ohlsifk5gy2xjtglm27p4 '@firebase/app': 0.7.21 '@firebase/app-check': 0.5.6_@firebase+app@0.7.21 - '@firebase/app-check-compat': 0.2.6_4806ef38eb920aae9b1aba6665b35f7f + '@firebase/app-check-compat': 0.2.6_jado6ohlsifk5gy2xjtglm27p4 '@firebase/app-compat': 0.1.22 '@firebase/app-types': 0.7.0 '@firebase/auth': 0.19.12_@firebase+app@0.7.21 - '@firebase/auth-compat': 0.2.12_e38422e44459f38f69dbbd03a46a6a15 + '@firebase/auth-compat': 0.2.12_4occfzcelhzy62o3xub2i2tkcu '@firebase/database': 0.12.8_@firebase+app-types@0.7.0 - '@firebase/database-compat': 0.1.8_5395f954a08b86dffb8e74f386d79234 + '@firebase/database-compat': 0.1.8_kok7svfarodn764ootzynv4sgq '@firebase/firestore': 3.4.8_@firebase+app@0.7.21 - '@firebase/firestore-compat': 0.1.17_e38422e44459f38f69dbbd03a46a6a15 - '@firebase/functions': 0.7.11_0dd03ea9f716b9c2b35974db8236dad2 - '@firebase/functions-compat': 0.1.12_e38422e44459f38f69dbbd03a46a6a15 + '@firebase/firestore-compat': 0.1.17_4occfzcelhzy62o3xub2i2tkcu + '@firebase/functions': 0.7.11_bxid5kpxc244fm2zotnyenw22i + '@firebase/functions-compat': 0.1.12_4occfzcelhzy62o3xub2i2tkcu '@firebase/installations': 0.5.8_@firebase+app@0.7.21 '@firebase/messaging': 0.9.12_@firebase+app@0.7.21 - '@firebase/messaging-compat': 0.1.12_4806ef38eb920aae9b1aba6665b35f7f + '@firebase/messaging-compat': 0.1.12_jado6ohlsifk5gy2xjtglm27p4 '@firebase/performance': 0.5.8_@firebase+app@0.7.21 - '@firebase/performance-compat': 0.1.8_4806ef38eb920aae9b1aba6665b35f7f + '@firebase/performance-compat': 0.1.8_jado6ohlsifk5gy2xjtglm27p4 '@firebase/polyfill': 0.3.36 '@firebase/remote-config': 0.3.7_@firebase+app@0.7.21 - '@firebase/remote-config-compat': 0.1.8_4806ef38eb920aae9b1aba6665b35f7f + '@firebase/remote-config-compat': 0.1.8_jado6ohlsifk5gy2xjtglm27p4 '@firebase/storage': 0.9.5_@firebase+app@0.7.21 - '@firebase/storage-compat': 0.1.13_e38422e44459f38f69dbbd03a46a6a15 + '@firebase/storage-compat': 0.1.13_4occfzcelhzy62o3xub2i2tkcu '@firebase/util': 1.5.2 transitivePeerDependencies: - bufferutil @@ -10419,7 +10429,7 @@ packages: resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} - /fork-ts-checker-webpack-plugin/6.4.0_eslint@8.13.0+typescript@4.2.4: + /fork-ts-checker-webpack-plugin/6.4.0_a7as76x6rrddngsh5pmyc4eygu: resolution: {integrity: sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -10538,7 +10548,7 @@ packages: engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.8 + graceful-fs: 4.2.10 jsonfile: 6.1.0 universalify: 2.0.0 @@ -10564,7 +10574,7 @@ packages: /fs-readfile-promise/2.0.1: resolution: {integrity: sha1-gAI4I5gfn//+AWCei+Zo9prknnA=} dependencies: - graceful-fs: 4.2.8 + graceful-fs: 4.2.10 dev: false /fs-write-stream-atomic/1.0.10: @@ -10909,22 +10919,24 @@ packages: /graceful-fs/4.2.8: resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} + dev: false /graceful-fs/4.2.9: resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} + dev: true - /graphql-config/4.1.0_ac4ec5720f2d0ad4b770153d197a0e78: + /graphql-config/4.1.0_lkrcf5pybqujbtm7lu54f4mx6u: resolution: {integrity: sha512-Myqay6pmdcmX3KqoH+bMbeKZ1cTODpHS2CxF1ZzNnfTE+YUpGTcp01bOw6LpzamRb0T/WTYtGFbZeXGo9Hab2Q==} 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: - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_ec5c0ebd3030a0a5109338876648df1b + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_5roa5pjqgcqkkeethcdwmsg7dm '@graphql-tools/graphql-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/json-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/load': 7.5.0_graphql@15.7.2 '@graphql-tools/merge': 8.2.1_graphql@15.7.2 - '@graphql-tools/url-loader': 7.7.0_e66b2893df708e5e2662df4974b38286 + '@graphql-tools/url-loader': 7.7.0_graphql@15.7.2 '@graphql-tools/utils': 8.5.5_graphql@15.7.2 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 @@ -10947,13 +10959,13 @@ packages: graphql: 15.7.2 dev: true - /graphql-language-service-interface/2.9.1_ac4ec5720f2d0ad4b770153d197a0e78: + /graphql-language-service-interface/2.9.1_lkrcf5pybqujbtm7lu54f4mx6u: resolution: {integrity: sha512-yGsE67fxJBXxY82+rLDMvUpmzpOUM8XFB+k+xOTUyABWs27osKaoGiuDDXAVGg1adhm+cpunWbipe763ZJkAVA==} peerDependencies: graphql: '>= 15.5.0 <= 16.0.0-experimental-stream-defer.5' dependencies: graphql: 15.7.2 - graphql-language-service-parser: 1.10.4_ac4ec5720f2d0ad4b770153d197a0e78 + graphql-language-service-parser: 1.10.4_lkrcf5pybqujbtm7lu54f4mx6u graphql-language-service-types: 1.8.3_graphql@15.7.2 graphql-language-service-utils: 2.6.0_graphql@15.7.2 vscode-languageserver-types: 3.16.0 @@ -10965,13 +10977,13 @@ packages: - utf-8-validate dev: false - /graphql-language-service-parser/1.10.4_ac4ec5720f2d0ad4b770153d197a0e78: + /graphql-language-service-parser/1.10.4_lkrcf5pybqujbtm7lu54f4mx6u: resolution: {integrity: sha512-duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.7.2 - graphql-language-service-types: 1.8.7_ac4ec5720f2d0ad4b770153d197a0e78 + graphql-language-service-types: 1.8.7_lkrcf5pybqujbtm7lu54f4mx6u transitivePeerDependencies: - '@types/node' - bufferutil @@ -10988,13 +11000,13 @@ packages: graphql: 15.7.2 dev: false - /graphql-language-service-types/1.8.7_ac4ec5720f2d0ad4b770153d197a0e78: + /graphql-language-service-types/1.8.7_lkrcf5pybqujbtm7lu54f4mx6u: resolution: {integrity: sha512-LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.7.2 - graphql-config: 4.1.0_ac4ec5720f2d0ad4b770153d197a0e78 + graphql-config: 4.1.0_lkrcf5pybqujbtm7lu54f4mx6u vscode-languageserver-types: 3.16.0 transitivePeerDependencies: - '@types/node' @@ -11109,9 +11121,9 @@ packages: dependencies: chalk: 2.4.2 find-cache-dir: 2.1.0 - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 lodash: 4.17.21 - mkdirp: 0.5.5 + mkdirp: 0.5.6 node-object-hash: 1.4.2 parse-json: 4.0.0 pkg-dir: 3.0.0 @@ -12889,7 +12901,7 @@ packages: /jsonfile/4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} optionalDependencies: - graceful-fs: 4.2.8 + graceful-fs: 4.2.10 dev: false /jsonfile/6.1.0: @@ -13193,7 +13205,7 @@ packages: resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=} engines: {node: '>=4'} dependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 @@ -13656,7 +13668,7 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /meros/1.1.4_@types+node@17.0.24: + /meros/1.1.4: resolution: {integrity: sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==} engines: {node: '>=12'} peerDependencies: @@ -13664,8 +13676,6 @@ packages: peerDependenciesMeta: '@types/node': optional: true - dependencies: - '@types/node': 17.0.24 /micromatch/3.1.0: resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==} @@ -13832,7 +13842,6 @@ packages: /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} - dev: true /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} @@ -13929,7 +13938,6 @@ packages: hasBin: true dependencies: minimist: 1.2.6 - dev: true /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} @@ -13984,7 +13992,7 @@ packages: aproba: 1.2.0 copy-concurrently: 1.0.5 fs-write-stream-atomic: 1.0.10 - mkdirp: 0.5.5 + mkdirp: 0.5.6 rimraf: 2.7.1 run-queue: 1.0.3 dev: false @@ -14316,7 +14324,7 @@ packages: /nuxt-windicss/2.2.11: resolution: {integrity: sha512-xobq725D6vqpIgYOrLJ6CVlR4xLlFGwuq//gZikXKOdoVRpoK8C+NpHazPd4+f17urGQ4H0LqGBCIujTvV1V0g==} dependencies: - '@nuxt/kit': /@nuxt/kit-edge/3.0.0-27501460.04a72f8 + '@nuxt/kit': /@nuxt/kit-edge/3.0.0-rc.2-27525415.a8d42d5 '@windicss/plugin-utils': 1.8.4 consola: 2.15.3 defu: 6.0.0 @@ -15623,7 +15631,7 @@ packages: dependencies: mime: 2.5.2 minimatch: 3.1.2 - mkdirp: 0.5.5 + mkdirp: 0.5.6 postcss: 7.0.39 xxhashjs: 0.2.2 dev: false @@ -15834,7 +15842,7 @@ packages: /proper-lockfile/4.1.2: resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} dependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 retry: 0.12.0 signal-exit: 3.0.5 dev: false @@ -16035,7 +16043,7 @@ packages: dependencies: deep-extend: 0.6.0 ini: 1.3.8 - minimist: 1.2.5 + minimist: 1.2.6 strip-json-comments: 2.0.1 dev: true @@ -16433,7 +16441,7 @@ packages: inherits: 2.0.4 dev: false - /rollup-plugin-dts/4.2.1_rollup@2.70.2+typescript@4.6.3: + /rollup-plugin-dts/4.2.1_nmerszcjz2rfjina4mudxa4qka: resolution: {integrity: sha512-eaxQZNUJ5iQcxNGlpJ1CUgG4OSVqWjDZ3nNSWBIoGrpcote2aNphSe1RJOaSYkb8dwn3o+rYm1vvld/5z3EGSQ==} engines: {node: '>=v12.22.11'} peerDependencies: @@ -16447,7 +16455,7 @@ packages: '@babel/code-frame': 7.16.7 dev: true - /rollup-plugin-ts/2.0.7_rollup@2.70.2+typescript@4.6.3: + /rollup-plugin-ts/2.0.7_nmerszcjz2rfjina4mudxa4qka: resolution: {integrity: sha512-M9sppRKX6y/b2KXbGdUdHid0tshAEK/sEeYLBHBJiBa4swukSsoFVXKGGZasLcjaXhgUnnizFuvFFj6znxwvSA==} engines: {node: '>=10.0.0', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'} peerDependencies: @@ -16721,7 +16729,6 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 - dev: true /send/0.17.1: resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==} @@ -17488,7 +17495,7 @@ packages: postcss-selector-parser: 3.1.2 dev: false - /stylelint-config-html/1.0.0_1a82b100232bbe7036ec0a7ca7a4baf4: + /stylelint-config-html/1.0.0_dkblcabdfo7hanxmbj6kpjf26q: resolution: {integrity: sha512-rKQUUWDpaYC7ybsS6tLxddjn6DxhjSIXybElSmcTyVQj3ExhmU3q+l41ktrlwHRyY0M5SkTkZiwngvYPYmsgSQ==} engines: {node: ^12 || >=14} peerDependencies: @@ -17522,7 +17529,7 @@ packages: - postcss dev: true - /stylelint-config-recommended-vue/1.4.0_1a82b100232bbe7036ec0a7ca7a4baf4: + /stylelint-config-recommended-vue/1.4.0_dkblcabdfo7hanxmbj6kpjf26q: resolution: {integrity: sha512-DVJqyX2KvMCn9U0+keL12r7xlsH26K4Vg8NrIZuq5MoF7g82DpMp326Om4E0Q+Il1o+bTHuUyejf2XAI0iD04Q==} engines: {node: ^12 || >=14} peerDependencies: @@ -17532,7 +17539,7 @@ packages: postcss-html: 1.4.1 semver: 7.3.5 stylelint: 14.7.1 - stylelint-config-html: 1.0.0_1a82b100232bbe7036ec0a7ca7a4baf4 + stylelint-config-html: 1.0.0_dkblcabdfo7hanxmbj6kpjf26q stylelint-config-recommended: 7.0.0_stylelint@14.7.1 dev: true @@ -18186,7 +18193,43 @@ packages: /ts-interface-checker/0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest/27.1.4_9985e1834e803358b7be1e6ce5ca0eea: + /ts-jest/27.1.4_4x5qquxzignoqqsapgnc6txbpa: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.17.9 + '@types/jest': 27.4.1 + babel-jest: 27.5.1_@babel+core@7.17.9 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.5 + typescript: 4.6.3 + yargs-parser: 20.2.9 + dev: true + + /ts-jest/27.1.4_tgc6da2oqazvrn56dzwolsqo5i: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -18220,41 +18263,6 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_c7568fb52a2be2d5e066be5ef16e8b78: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.17.9 - babel-jest: 27.5.1_@babel+core@7.17.9 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.5 - typescript: 4.6.3 - yargs-parser: 20.2.9 - dev: true - /ts-loader/8.3.0_typescript@4.2.4: resolution: {integrity: sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==} engines: {node: '>=10.0.0'} @@ -18274,7 +18282,7 @@ packages: resolution: {integrity: sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==} dev: true - /ts-node/10.7.0_17a82b5ac88a5de7094eac76b4edda13: + /ts-node/10.7.0_c6ucwwwirjo6ockovr3lj3o2cm: resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} hasBin: true peerDependencies: @@ -18386,35 +18394,6 @@ packages: - ts-node dev: true - /tsup/5.12.5: - resolution: {integrity: sha512-lKwzJsB49sDto51QjqOB4SdiBLKRvgTymEBuBCovcksdDwFEz3esrkbf3m497PXntUKVTzcgOfPdTgknMtvufw==} - hasBin: true - peerDependencies: - typescript: ^4.1.0 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - bundle-require: 3.0.4_esbuild@0.14.36 - cac: 6.7.12 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.14.36 - execa: 5.1.1 - globby: 11.1.0 - joycon: 3.1.1 - postcss-load-config: 3.1.4 - resolve-from: 5.0.0 - rollup: 2.70.2 - source-map: 0.7.3 - sucrase: 3.21.0 - tree-kill: 1.2.2 - transitivePeerDependencies: - - postcss - - supports-color - - ts-node - dev: true - /tsup/5.12.5_typescript@4.6.3: resolution: {integrity: sha512-lKwzJsB49sDto51QjqOB4SdiBLKRvgTymEBuBCovcksdDwFEz3esrkbf3m497PXntUKVTzcgOfPdTgknMtvufw==} hasBin: true @@ -18443,7 +18422,6 @@ packages: - postcss - supports-color - ts-node - dev: false /tsutils/3.21.0_typescript@4.6.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -18611,8 +18589,8 @@ packages: engines: {node: '>= 0.4.12'} dev: true - /unimport/0.1.5: - resolution: {integrity: sha512-Wv+CFdDJXkyiHD6yXeHdYMmD5LisII43o6q2ttw1s5mAhwfcBtZPRbZcqPvSkgHX4ZzMPTUIstMhVfC+tHrh6A==} + /unimport/0.1.8: + resolution: {integrity: sha512-Eynu+yyVVZ76te5DbE3744z1YjqoES+muNlNP03kVURHC/S2IR65mjzdmT6wpWvU78q488dK0fQ+tUK9UEndZA==} dependencies: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 @@ -18677,7 +18655,7 @@ packages: resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} engines: {node: '>= 0.8'} - /unplugin-vue2-script-setup/0.9.3_03e6644f7f58da72872857a67d328278: + /unplugin-vue2-script-setup/0.9.3_aptgit37ldnhfbzik6th2mucpa: resolution: {integrity: sha512-m2QESHiFNmx0fIo/P0AiCrH6E5WtijRB/Ldrj8zjwRIYYbiOgmTfRmWQquW0H8ei5OwhYT30WAgepFjWrJ5oJg==} peerDependencies: '@vue/composition-api': ^1.4.3 @@ -18826,7 +18804,7 @@ packages: schema-utils: 3.1.1 dev: true - /url-loader/4.1.1_file-loader@6.2.0+webpack@4.46.0: + /url-loader/4.1.1_lit45vopotvaqup7lrvlnvtxwy: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -19057,7 +19035,7 @@ packages: vue-template-es2015-compiler: 1.9.1 dev: true - /vue-loader/15.9.8_559ffc97fd41de05d12663d7fb949156: + /vue-loader/15.9.8_kwp7zf75ihpalujgmpl7xferky: resolution: {integrity: sha512-GwSkxPrihfLR69/dSV3+5CdMQ0D+jXg8Ma1S4nQXKJAznYFX14vHdc/NetQc34Dw+rBbIJyP7JOuVb9Fhprvog==} peerDependencies: cache-loader: '*' @@ -19361,7 +19339,7 @@ packages: loader-utils: 1.4.0 memory-fs: 0.4.1 micromatch: 3.1.10 - mkdirp: 0.5.5 + mkdirp: 0.5.6 neo-async: 2.6.2 node-libs-browser: 2.2.1 schema-utils: 1.0.0 @@ -19572,7 +19550,7 @@ packages: /write-file-atomic/2.4.3: resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} dependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 imurmurhash: 0.1.4 signal-exit: 3.0.7 dev: false @@ -19599,7 +19577,7 @@ packages: engines: {node: '>=4'} dependencies: detect-indent: 5.0.0 - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 make-dir: 1.3.0 pify: 3.0.0 sort-keys: 2.0.0