From a48108afbdc12c2d4ee131db53459e3d1e98f69b Mon Sep 17 00:00:00 2001 From: Vilsol Date: Wed, 15 Jun 2022 03:57:41 +0300 Subject: [PATCH] chore: update dependencies chore: abstract workflow --- .github/workflows/production.yml | 15 + .github/workflows/{push.yml => push-base.yml} | 60 +- .github/workflows/staging.yml | 15 + .gitignore | 3 +- .prettierignore | 1 + codegen.yml | 2 +- package.json | 49 +- pnpm-lock.yaml | 1724 +++++++++-------- svelte.config.js | 13 +- 9 files changed, 1020 insertions(+), 862 deletions(-) create mode 100644 .github/workflows/production.yml rename .github/workflows/{push.yml => push-base.yml} (73%) create mode 100644 .github/workflows/staging.yml diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml new file mode 100644 index 000000000..9ef3c0290 --- /dev/null +++ b/.github/workflows/production.yml @@ -0,0 +1,15 @@ +name: Production + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + uses: ./.github/workflows/push-base.yml + with: + env: production \ No newline at end of file diff --git a/.github/workflows/push.yml b/.github/workflows/push-base.yml similarity index 73% rename from .github/workflows/push.yml rename to .github/workflows/push-base.yml index 4f3072ef6..8bf816c6b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push-base.yml @@ -1,6 +1,15 @@ -name: push +name: Base -on: [ push, pull_request ] +on: + workflow_call: + inputs: + env: + required: true + type: string + +env: + NODE_VERSION: "16" + PNPM_VERSION: "6.32.9" jobs: build: @@ -11,14 +20,13 @@ jobs: matrix: action: [ "build:node", "build:static" ] steps: - - name: Checkout uses: actions/checkout@v2 - name: Setup nodejs uses: actions/setup-node@v1 with: - node-version: 16 + node-version: ${{ env.NODE_VERSION }} - name: Cache pnpm modules uses: actions/cache@v2 @@ -31,26 +39,29 @@ jobs: ${{ runner.os }}-build-${{ env.cache-name }}-16- - name: Install dependencies - uses: pnpm/action-setup@v1.2.1 + uses: pnpm/action-setup@v2.2.2 with: - version: 5.17.2 + version: ${{ env.PNPM_VERSION }} run_install: true - name: Build - run: pnpm graphql-codegen:prod && pnpm ${{ matrix.action }} + run: | + set -o allexport; source .env.${{ inputs.env }}; set +o allexport + pnpm graphql-codegen && pnpm ${{ matrix.action }} + env: + NODE_ENV: ${{ inputs.env }} lint: name: Lint runs-on: ubuntu-latest steps: - - name: Checkout uses: actions/checkout@v2 - name: Setup nodejs uses: actions/setup-node@v1 with: - node-version: 16 + node-version: ${{ env.NODE_VERSION }} - name: Cache pnpm modules uses: actions/cache@v2 @@ -63,13 +74,17 @@ jobs: ${{ runner.os }}-build-${{ env.cache-name }}-16- - name: Install dependencies - uses: pnpm/action-setup@v1.2.1 + uses: pnpm/action-setup@v2.2.2 with: - version: 5.17.2 + version: ${{ env.PNPM_VERSION }} run_install: true - name: Lint - run: pnpm graphql-codegen:prod && pnpm check && pnpm lint + run: | + set -o allexport; source .env.${{ inputs.env }}; set +o allexport + pnpm graphql-codegen && pnpm check && pnpm lint + env: + NODE_ENV: ${{ inputs.env }} pages: name: Pages @@ -79,14 +94,13 @@ jobs: - lint if: ${{ github.event_name != 'pull_request' }} steps: - - name: Checkout uses: actions/checkout@v2 - name: Setup nodejs uses: actions/setup-node@v1 with: - node-version: 16 + node-version: ${{ env.NODE_VERSION }} - name: Cache pnpm modules uses: actions/cache@v2 @@ -99,18 +113,21 @@ jobs: ${{ runner.os }}-build-${{ env.cache-name }}-16- - name: Install dependencies - uses: pnpm/action-setup@v1.2.1 + uses: pnpm/action-setup@v2.2.2 with: - version: 5.17.2 + version: ${{ env.PNPM_VERSION }} run_install: true - name: Inject slug/short variables uses: rlespinasse/github-slug-action@v3.x - name: Build - run: pnpm graphql-codegen:prod && pnpm build:static + run: | + set -o allexport; source .env.${{ inputs.env }}; set +o allexport + pnpm graphql-codegen && pnpm build:static env: SVELTE_BASE_PATH: "/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG }}/${{ env.GITHUB_REF_SLUG }}" + NODE_ENV: ${{ inputs.env }} - name: Deploy to pages uses: JamesIves/github-pages-deploy-action@4.1.0 @@ -122,15 +139,10 @@ jobs: image: name: Image runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - target: [ "staging", "production" ] needs: - build - lint steps: - - name: Checkout uses: actions/checkout@v2 @@ -148,7 +160,7 @@ jobs: images: ghcr.io/${{ github.repository }} flavor: | latest=false - suffix=-${{ matrix.target }} + suffix=-${{ inputs.env }} - name: Build and push uses: docker/build-push-action@v2 @@ -158,4 +170,4 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - BUILD=build:${{ matrix.target }} + BUILD=build:${{ inputs.env }} diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml new file mode 100644 index 000000000..4d8fa860f --- /dev/null +++ b/.github/workflows/staging.yml @@ -0,0 +1,15 @@ +name: Staging + +on: + push: + branches-ignore: + - main + pull_request: + branches-ignore: + - main + +jobs: + build: + uses: ./.github/workflows/push-base.yml + with: + env: staging \ No newline at end of file diff --git a/.gitignore b/.gitignore index 48628b177..b9ec4db2c 100644 --- a/.gitignore +++ b/.gitignore @@ -304,4 +304,5 @@ $RECYCLE.BIN/ /schema.graphql /graphql.schema.json /.svelte-kit -/static/smui.css \ No newline at end of file +/static/smui.css +/.pnpm-store \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 7f7df84da..81756fa02 100644 --- a/.prettierignore +++ b/.prettierignore @@ -30,3 +30,4 @@ schema.graphql svelte.config.js tailwind.config.cjs tsconfig.json +.pnpm-store \ No newline at end of file diff --git a/codegen.yml b/codegen.yml index 35bde867d..dab069e6f 100644 --- a/codegen.yml +++ b/codegen.yml @@ -1,5 +1,5 @@ overwrite: true -schema: "https://api.ficsit.app/v2/query" +schema: ${SCHEMA_PATH:https://api.ficsit.app/v2/query} documents: "src/**/*.graphql" generates: ./src/lib/generated/graphql.ts: diff --git a/package.json b/package.json index 38a38d590..a79b0d282 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,10 @@ "build:static": "rimraf .svelte build/static && svelte-kit build", "check": "svelte-check --ignore build,.svelte,.svelte-kit", "check:dev": "pnpm run check -- --watch", - "dev": "run-p -r graphql-codegen:prod:watch dev:serve check:dev lint:dev", + "dev": "run-p -r graphql-codegen:watch dev:serve check:dev lint:dev", "dev:serve": "svelte-kit dev", - "graphql-codegen:prod": "graphql-codegen --config codegen.yml", - "graphql-codegen:prod:watch": "graphql-codegen --config codegen.yml --watch", + "graphql-codegen": "graphql-codegen --config codegen.yml", + "graphql-codegen:watch": "graphql-codegen --config codegen.yml --watch", "lint": "eslint . --ext .ts,.svelte && prettier --check --plugin-search-dir=. .", "lint:dev": "chokidar -c \"eslint . --ext .ts,.svelte --cache\" --silent --initial \"src/**/*.svelte\" \"src/**/*.ts\"", "prepare": "husky install && run-s smui-theme", @@ -59,7 +59,7 @@ "@material/top-app-bar": "^13.0.0", "@material/touch-target": "^13.0.0", "@material/typography": "^13.0.0", - "@urql/core": "^2.3.6", + "@urql/core": "^2.4.1", "@urql/exchange-auth": "^0.1.7", "@urql/exchange-graphcache": "^4.3.6", "@urql/exchange-multipart-fetch": "^0.1.14", @@ -68,11 +68,11 @@ "@urql/svelte": "^1.3.3", "custom-protocol-check": "^1.3.0", "felte": "^0.9.0", - "graphql": "^16.2.0", + "graphql": "^16.3.0", "js-cookie": "^3.0.1", "jsdom": "^19.0.0", "jszip": "^3.7.1", - "marked": "^4.0.10", + "marked": "^4.0.12", "prismjs": "^1.26.0", "semver": "^7.3.5", "socket.io-client": "^4.4.1", @@ -81,7 +81,7 @@ "zod": "^3.11.6" }, "devDependencies": { - "@cfworker/json-schema": "^1.12.0", + "@cfworker/json-schema": "^1.12.1", "@commitlint/cli": "^16.1.0", "@commitlint/config-conventional": "^16.0.0", "@graphql-codegen/add": "^3.1.1", @@ -91,8 +91,8 @@ "@graphql-codegen/typescript": "2.4.2", "@graphql-codegen/typescript-document-nodes": "2.2.2", "@graphql-codegen/typescript-graphql-files-modules": "2.1.1", - "@graphql-codegen/typescript-operations": "2.2.2", - "@graphql-codegen/typescript-urql": "^3.4.2", + "@graphql-codegen/typescript-operations": "2.2.3", + "@graphql-codegen/typescript-urql": "^3.5.0", "@graphql-codegen/urql-introspection": "2.1.1", "@graphql-typed-document-node/core": "^3.1.1", "@smui/button": "^6.0.0-beta.13", @@ -118,44 +118,45 @@ "@smui/switch": "^6.0.0-beta.13", "@smui/textfield": "^6.0.0-beta.13", "@smui/top-app-bar": "^6.0.0-beta.13", - "@sveltejs/adapter-node": "^1.0.0-next.66", + "@sveltejs/adapter-node": "^1.0.0-next.67", "@sveltejs/adapter-static": "^1.0.0-next.26", - "@sveltejs/kit": "^1.0.0-next.240", + "@sveltejs/kit": "^1.0.0-next.255", "@types/js-cookie": "^3.0.1", - "@types/marked": "^4.0.1", - "@types/node": "^17.0.10", - "@types/prismjs": "^1.16.6", + "@types/marked": "^4.0.2", + "@types/node": "^17.0.14", + "@types/prismjs": "^1.26.0", "@types/semver": "^7.3.9", - "@typescript-eslint/eslint-plugin": "^5.10.0", - "@typescript-eslint/parser": "^5.10.0", + "@typescript-eslint/eslint-plugin": "^5.10.2", + "@typescript-eslint/parser": "^5.10.2", "autoprefixer": "^10.4.2", "chokidar-cli": "^3.0.0", "cookieconsent": "^3.1.1", "cross-env": "^7.0.3", - "cssnano": "^5.0.15", + "cssnano": "^5.0.16", "cz-conventional-changelog": "^3.3.0", - "dompurify": "^2.3.4", - "eslint": "^8.7.0", + "dompurify": "^2.3.5", + "eslint": "^8.8.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-svelte3": "^3.4.0", "graphql-tag": "^2.12.6", "husky": "^7.0.4", "npm-run-all": "^4.1.5", - "postcss": "^8.4.5", + "postcss": "^8.4.6", "postcss-import-url": "^7.0.0", "postcss-load-config": "^3.1.1", - "postcss-preset-env": "^7.2.3", + "postcss-preset-env": "^7.3.0", "prettier": "~2.5.1", "prettier-plugin-svelte": "^2.6.0", "rimraf": "^3.0.2", + "rollup-plugin-terser": "^7.0.2", "schema-dts": "^1.0.0", "smui-theme": "^6.0.0-beta.13", - "svelte": "^3.46.2", - "svelte-check": "^2.3.0", + "svelte": "^3.46.3", + "svelte-check": "^2.4.1", "svelte-preprocess": "^4.10.2", "tailwindcss": "^3.0.15", "typescript": "^4.5.5", - "urql": "^2.0.6", + "urql": "^2.1.2", "vite": "^2.7.13" }, "type": "module", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a55f4688c..63c1e2eb0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: 5.3 specifiers: - '@cfworker/json-schema': ^1.12.0 + '@cfworker/json-schema': ^1.12.1 '@commitlint/cli': ^16.1.0 '@commitlint/config-conventional': ^16.0.0 '@felte/common': ^0.6.0 @@ -15,8 +15,8 @@ specifiers: '@graphql-codegen/typescript': 2.4.2 '@graphql-codegen/typescript-document-nodes': 2.2.2 '@graphql-codegen/typescript-graphql-files-modules': 2.1.1 - '@graphql-codegen/typescript-operations': 2.2.2 - '@graphql-codegen/typescript-urql': ^3.4.2 + '@graphql-codegen/typescript-operations': 2.2.3 + '@graphql-codegen/typescript-urql': ^3.5.0 '@graphql-codegen/urql-introspection': 2.1.1 '@graphql-typed-document-node/core': ^3.1.1 '@material/animation': ^13.0.0 @@ -75,17 +75,17 @@ specifiers: '@smui/switch': ^6.0.0-beta.13 '@smui/textfield': ^6.0.0-beta.13 '@smui/top-app-bar': ^6.0.0-beta.13 - '@sveltejs/adapter-node': ^1.0.0-next.66 + '@sveltejs/adapter-node': ^1.0.0-next.67 '@sveltejs/adapter-static': ^1.0.0-next.26 - '@sveltejs/kit': ^1.0.0-next.240 + '@sveltejs/kit': ^1.0.0-next.255 '@types/js-cookie': ^3.0.1 - '@types/marked': ^4.0.1 - '@types/node': ^17.0.10 - '@types/prismjs': ^1.16.6 + '@types/marked': ^4.0.2 + '@types/node': ^17.0.14 + '@types/prismjs': ^1.26.0 '@types/semver': ^7.3.9 - '@typescript-eslint/eslint-plugin': ^5.10.0 - '@typescript-eslint/parser': ^5.10.0 - '@urql/core': ^2.3.6 + '@typescript-eslint/eslint-plugin': ^5.10.2 + '@typescript-eslint/parser': ^5.10.2 + '@urql/core': ^2.4.1 '@urql/exchange-auth': ^0.1.7 '@urql/exchange-graphcache': ^4.3.6 '@urql/exchange-multipart-fetch': ^0.1.14 @@ -96,41 +96,42 @@ specifiers: chokidar-cli: ^3.0.0 cookieconsent: ^3.1.1 cross-env: ^7.0.3 - cssnano: ^5.0.15 + cssnano: ^5.0.16 custom-protocol-check: ^1.3.0 cz-conventional-changelog: ^3.3.0 - dompurify: ^2.3.4 - eslint: ^8.7.0 + dompurify: ^2.3.5 + eslint: ^8.8.0 eslint-config-prettier: ^8.3.0 eslint-plugin-svelte3: ^3.4.0 felte: ^0.9.0 - graphql: ^16.2.0 + graphql: ^16.3.0 graphql-tag: ^2.12.6 husky: ^7.0.4 js-cookie: ^3.0.1 jsdom: ^19.0.0 jszip: ^3.7.1 - marked: ^4.0.10 + marked: ^4.0.12 npm-run-all: ^4.1.5 - postcss: ^8.4.5 + postcss: ^8.4.6 postcss-import-url: ^7.0.0 postcss-load-config: ^3.1.1 - postcss-preset-env: ^7.2.3 + postcss-preset-env: ^7.3.0 prettier: ~2.5.1 prettier-plugin-svelte: ^2.6.0 prismjs: ^1.26.0 rimraf: ^3.0.2 + rollup-plugin-terser: ^7.0.2 schema-dts: ^1.0.0 semver: ^7.3.5 smui-theme: ^6.0.0-beta.13 socket.io-client: ^4.4.1 - svelte: ^3.46.2 - svelte-check: ^2.3.0 + svelte: ^3.46.3 + svelte-check: ^2.4.1 svelte-preprocess: ^4.10.2 - tailwindcss: ^3.0.15 + tailwindcss: ^3.0.18 tslib: ^2.3.1 typescript: ^4.5.5 - urql: ^2.0.6 + urql: ^2.1.2 vite: ^2.7.13 wonka: ^4.0.15 zod: ^3.11.6 @@ -138,7 +139,7 @@ specifiers: dependencies: '@felte/common': 0.6.0 '@felte/core': 0.3.0 - '@felte/reporter-svelte': 0.3.20_svelte@3.46.2 + '@felte/reporter-svelte': 0.3.20_svelte@3.46.3 '@felte/validator-zod': 0.3.8_zod@3.11.6 '@material/animation': 13.0.0 '@material/base': 13.0.0 @@ -173,20 +174,20 @@ dependencies: '@material/top-app-bar': 13.0.0 '@material/touch-target': 13.0.0 '@material/typography': 13.0.0 - '@urql/core': 2.3.6_graphql@16.2.0 - '@urql/exchange-auth': 0.1.7_graphql@16.2.0 - '@urql/exchange-graphcache': 4.3.6_graphql@16.2.0 - '@urql/exchange-multipart-fetch': 0.1.14_graphql@16.2.0 - '@urql/exchange-persisted-fetch': 1.3.4_graphql@16.2.0 - '@urql/introspection': 0.3.1_graphql@16.2.0 - '@urql/svelte': 1.3.3_graphql@16.2.0+svelte@3.46.2 + '@urql/core': 2.4.1_graphql@16.3.0 + '@urql/exchange-auth': 0.1.7_graphql@16.3.0 + '@urql/exchange-graphcache': 4.3.6_graphql@16.3.0 + '@urql/exchange-multipart-fetch': 0.1.14_graphql@16.3.0 + '@urql/exchange-persisted-fetch': 1.3.4_graphql@16.3.0 + '@urql/introspection': 0.3.1_graphql@16.3.0 + '@urql/svelte': 1.3.3_graphql@16.3.0+svelte@3.46.3 custom-protocol-check: 1.3.0 - felte: 0.9.0_svelte@3.46.2 - graphql: 16.2.0 + felte: 0.9.0_svelte@3.46.3 + graphql: 16.3.0 js-cookie: 3.0.1 jsdom: 19.0.0 jszip: 3.7.1 - marked: 4.0.10 + marked: 4.0.12 prismjs: 1.26.0 semver: 7.3.5 socket.io-client: 4.4.1 @@ -195,81 +196,82 @@ dependencies: zod: 3.11.6 devDependencies: - '@cfworker/json-schema': 1.12.0 - '@commitlint/cli': 16.1.0_@types+node@17.0.10 + '@cfworker/json-schema': 1.12.1 + '@commitlint/cli': 16.1.0_@types+node@17.0.14 '@commitlint/config-conventional': 16.0.0 - '@graphql-codegen/add': 3.1.1_graphql@16.2.0 - '@graphql-codegen/cli': 2.4.0_0520e720822c2b0ff2f62ee01931cdb8 - '@graphql-codegen/introspection': 2.1.1_graphql@16.2.0 - '@graphql-codegen/typed-document-node': 2.2.2_graphql@16.2.0 - '@graphql-codegen/typescript': 2.4.2_graphql@16.2.0 - '@graphql-codegen/typescript-document-nodes': 2.2.2_graphql@16.2.0 - '@graphql-codegen/typescript-graphql-files-modules': 2.1.1_graphql@16.2.0 - '@graphql-codegen/typescript-operations': 2.2.2_graphql@16.2.0 - '@graphql-codegen/typescript-urql': 3.4.2_401d6065eaf5e49c8f9188bbd71d6697 - '@graphql-codegen/urql-introspection': 2.1.1_graphql@16.2.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.2.0 - '@smui/button': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/card': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/circular-progress': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/data-table': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/dialog': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/drawer': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/fab': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/form-field': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/layout-grid': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/list': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/menu': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/paper': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/select': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/switch': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/textfield': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/top-app-bar': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@sveltejs/adapter-node': 1.0.0-next.66 + '@graphql-codegen/add': 3.1.1_graphql@16.3.0 + '@graphql-codegen/cli': 2.4.0_a34942152c85539fc0d563dc39e27da2 + '@graphql-codegen/introspection': 2.1.1_graphql@16.3.0 + '@graphql-codegen/typed-document-node': 2.2.2_graphql@16.3.0 + '@graphql-codegen/typescript': 2.4.2_graphql@16.3.0 + '@graphql-codegen/typescript-document-nodes': 2.2.2_graphql@16.3.0 + '@graphql-codegen/typescript-graphql-files-modules': 2.1.1_graphql@16.3.0 + '@graphql-codegen/typescript-operations': 2.2.3_graphql@16.3.0 + '@graphql-codegen/typescript-urql': 3.5.0_e20029557891e0afb887c44ec7f516f8 + '@graphql-codegen/urql-introspection': 2.1.1_graphql@16.3.0 + '@graphql-typed-document-node/core': 3.1.1_graphql@16.3.0 + '@smui/button': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/card': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/circular-progress': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/data-table': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/dialog': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/drawer': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/fab': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/form-field': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/layout-grid': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/list': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/menu': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/paper': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/select': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/switch': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/textfield': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/top-app-bar': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@sveltejs/adapter-node': 1.0.0-next.67 '@sveltejs/adapter-static': 1.0.0-next.26 - '@sveltejs/kit': 1.0.0-next.240_svelte@3.46.2 + '@sveltejs/kit': 1.0.0-next.255_svelte@3.46.3 '@types/js-cookie': 3.0.1 - '@types/marked': 4.0.1 - '@types/node': 17.0.10 - '@types/prismjs': 1.16.6 + '@types/marked': 4.0.2 + '@types/node': 17.0.14 + '@types/prismjs': 1.26.0 '@types/semver': 7.3.9 - '@typescript-eslint/eslint-plugin': 5.10.0_706fb07ce74b1db611f19a02ad2ce784 - '@typescript-eslint/parser': 5.10.0_eslint@8.7.0+typescript@4.5.5 - autoprefixer: 10.4.2_postcss@8.4.5 + '@typescript-eslint/eslint-plugin': 5.10.2_2595c2126aec4d4b6e944b931dabb4c2 + '@typescript-eslint/parser': 5.10.2_eslint@8.8.0+typescript@4.5.5 + autoprefixer: 10.4.2_postcss@8.4.6 chokidar-cli: 3.0.0 cookieconsent: 3.1.1 cross-env: 7.0.3 - cssnano: 5.0.15_postcss@8.4.5 - cz-conventional-changelog: 3.3.0_@types+node@17.0.10 - dompurify: 2.3.4 - eslint: 8.7.0 - eslint-config-prettier: 8.3.0_eslint@8.7.0 - eslint-plugin-svelte3: 3.4.0_eslint@8.7.0+svelte@3.46.2 - graphql-tag: 2.12.6_graphql@16.2.0 + cssnano: 5.0.16_postcss@8.4.6 + cz-conventional-changelog: 3.3.0_@types+node@17.0.14 + dompurify: 2.3.5 + eslint: 8.8.0 + eslint-config-prettier: 8.3.0_eslint@8.8.0 + eslint-plugin-svelte3: 3.4.0_eslint@8.8.0+svelte@3.46.3 + graphql-tag: 2.12.6_graphql@16.3.0 husky: 7.0.4 npm-run-all: 4.1.5 - postcss: 8.4.5 - postcss-import-url: 7.0.0_postcss@8.4.5 + postcss: 8.4.6 + postcss-import-url: 7.0.0_postcss@8.4.6 postcss-load-config: 3.1.1 - postcss-preset-env: 7.2.3_postcss@8.4.5 + postcss-preset-env: 7.3.0_postcss@8.4.6 prettier: 2.5.1 - prettier-plugin-svelte: 2.6.0_prettier@2.5.1+svelte@3.46.2 + prettier-plugin-svelte: 2.6.0_prettier@2.5.1+svelte@3.46.3 rimraf: 3.0.2 + rollup-plugin-terser: 7.0.2 schema-dts: 1.0.0_typescript@4.5.5 smui-theme: 6.0.0-beta.13 - svelte: 3.46.2 - svelte-check: 2.3.0_7ff82f86d2b584ac3c0682d6a10f68b9 - svelte-preprocess: 4.10.2_608c594ab12bc3595290e63e403d651b - tailwindcss: 3.0.15_ef48b3b8837f8a23677bffe8f9cd866d + svelte: 3.46.3 + svelte-check: 2.4.1_d5eca2c0d9133f686108b018fa7bac55 + svelte-preprocess: 4.10.2_8ad9ba7d678a7e4906317692d003ce22 + tailwindcss: 3.0.18_833e1018ad0d7954aa80c53675939269 typescript: 4.5.5 - urql: 2.0.6_graphql@16.2.0 + urql: 2.1.2_graphql@16.3.0 vite: 2.7.13 packages: @@ -830,18 +832,18 @@ packages: to-fast-properties: 2.0.0 dev: true - /@cfworker/json-schema/1.12.0: - resolution: {integrity: sha512-PyWe5QyAZrSJw5zoRe99IW/IiL5kDp47uENDG1cvNJuKBlgOHf5CXHcnhyvbwOeYC4+kQOpdmFp9Dzcj2CmoOg==} + /@cfworker/json-schema/1.12.1: + resolution: {integrity: sha512-ZVhk1DKw19sBJgO7OHBsvNAzDfHMzpFI0DCkOLTZHb0dccmS+EM8rwwAYh5eaNmD5t8/nCbZ2ZeGzbDQdOzokQ==} dev: true - /@commitlint/cli/16.1.0_@types+node@17.0.10: + /@commitlint/cli/16.1.0_@types+node@17.0.14: resolution: {integrity: sha512-x5L1knvA3isRWBRVQx+Q6D45pA9139a2aZQYpxkljMG0dj4UHZkCnsYWpnGalxPxASI7nrI0KedKfS2YeQ55cQ==} engines: {node: '>=v12'} hasBin: true dependencies: '@commitlint/format': 16.0.0 '@commitlint/lint': 16.0.0 - '@commitlint/load': 16.1.0_@types+node@17.0.10 + '@commitlint/load': 16.1.0_@types+node@17.0.14 '@commitlint/read': 16.0.0 '@commitlint/types': 16.0.0 lodash: 4.17.21 @@ -908,7 +910,7 @@ packages: '@commitlint/types': 16.0.0 dev: true - /@commitlint/load/16.1.0_@types+node@17.0.10: + /@commitlint/load/16.1.0_@types+node@17.0.14: resolution: {integrity: sha512-MtlEhKjP8jAF85jjX4mw8DUUwCxKsCgAc865hhpnwxjrfBcmGP7Up2AFE/M3ZMGDmSl1X1TMybQk/zohj8Cqdg==} engines: {node: '>=v12'} dependencies: @@ -918,7 +920,7 @@ packages: '@commitlint/types': 16.0.0 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 1.0.3_9d6cd740eceb93d711351e2e9548d1bd + cosmiconfig-typescript-loader: 1.0.4_43d2036524ce97aa8076ce68340fa9ec lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.5.5 @@ -1006,6 +1008,46 @@ packages: '@cspotcode/source-map-consumer': 0.8.0 dev: true + /@csstools/postcss-font-format-keywords/1.0.0_postcss@8.4.6: + resolution: {integrity: sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.6 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-hwb-function/1.0.0_postcss@8.4.6: + resolution: {integrity: sha512-VSTd7hGjmde4rTj1rR30sokY3ONJph1reCBTUXqeW1fKwETPy1x4t/XIeaaqbMbC5Xg4SM/lyXZ2S8NELT2TaA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.6 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-is-pseudo-class/2.0.0_postcss@8.4.6: + resolution: {integrity: sha512-WnfZlyuh/CW4oS530HBbrKq0G8BKl/bsNr5NMFoubBFzJfvFRGJhplCgIJYWUidLuL3WJ/zhMtDIyNFTqhx63Q==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.6 + postcss-selector-parser: 6.0.9 + dev: true + + /@csstools/postcss-normalize-display-values/1.0.0_postcss@8.4.6: + resolution: {integrity: sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.6 + postcss-value-parser: 4.2.0 + dev: true + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_e1c3b685f8b7686dcc885a02fd14c5f0: resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} @@ -1048,13 +1090,13 @@ packages: '@felte/common': 0.6.0 dev: false - /@felte/reporter-svelte/0.3.20_svelte@3.46.2: + /@felte/reporter-svelte/0.3.20_svelte@3.46.3: resolution: {integrity: sha512-2XxDLVBDXrKVNT/YUQ68m0xT5/wtw46ING2WhmhZX2GM3ldGwGaDVxv5B18W/pJ08JUzs3OAjgiqU44HScIX6A==} peerDependencies: svelte: ^3.31.0 dependencies: '@felte/common': 0.6.0 - svelte: 3.46.2 + svelte: 3.46.3 dev: false /@felte/validator-zod/0.3.8_zod@3.11.6: @@ -1066,34 +1108,34 @@ packages: zod: 3.11.6 dev: false - /@graphql-codegen/add/3.1.1_graphql@16.2.0: + /@graphql-codegen/add/3.1.1_graphql@16.3.0: resolution: {integrity: sha512-XkVwcqosa0CVBlL1HaQT0gp+EUfhuQE3LzrEpzMQLwchxaj/NPVYtOJL6MUHaYDsHzLqxWrufjfbeB3y2NQgRw==} 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.3.2_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/cli/2.4.0_0520e720822c2b0ff2f62ee01931cdb8: + /@graphql-codegen/cli/2.4.0_a34942152c85539fc0d563dc39e27da2: resolution: {integrity: sha512-4iiHH2AxBE17lX5cFdFg6+kh7I6uKQLYG0IZRalRbW/grKL7kuVp/RDUjmVB2GNJTJEhjxYLMJFJZocUmAUBlw==} 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: - '@graphql-codegen/core': 2.4.0_graphql@16.2.0 - '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.2.0 - '@graphql-tools/apollo-engine-loader': 7.2.1_graphql@16.2.0 - '@graphql-tools/code-file-loader': 7.2.3_graphql@16.2.0 - '@graphql-tools/git-loader': 7.1.2_graphql@16.2.0 - '@graphql-tools/github-loader': 7.2.1_graphql@16.2.0 - '@graphql-tools/graphql-file-loader': 7.3.3_graphql@16.2.0 - '@graphql-tools/json-file-loader': 7.3.3_graphql@16.2.0 - '@graphql-tools/load': 7.5.1_graphql@16.2.0 - '@graphql-tools/prisma-loader': 7.1.1_be040edf491f50524cf9ebb0b95b4dcc - '@graphql-tools/url-loader': 7.7.0_be040edf491f50524cf9ebb0b95b4dcc - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-codegen/core': 2.4.0_graphql@16.3.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-tools/apollo-engine-loader': 7.2.2_graphql@16.3.0 + '@graphql-tools/code-file-loader': 7.2.3_graphql@16.3.0 + '@graphql-tools/git-loader': 7.1.2_graphql@16.3.0 + '@graphql-tools/github-loader': 7.2.2_graphql@16.3.0 + '@graphql-tools/graphql-file-loader': 7.3.3_graphql@16.3.0 + '@graphql-tools/json-file-loader': 7.3.3_graphql@16.3.0 + '@graphql-tools/load': 7.5.1_graphql@16.3.0 + '@graphql-tools/prisma-loader': 7.1.1_5e4e4ba362bfb71148b435f8f4a8657b + '@graphql-tools/url-loader': 7.7.1_5e4e4ba362bfb71148b435f8f4a8657b + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 ansi-escapes: 4.3.2 chalk: 4.1.2 change-case-all: 1.0.14 @@ -1105,8 +1147,8 @@ packages: detect-indent: 6.1.0 glob: 7.2.0 globby: 11.1.0 - graphql: 16.2.0 - graphql-config: 4.1.0_0520e720822c2b0ff2f62ee01931cdb8 + graphql: 16.3.0 + graphql-config: 4.1.0_a34942152c85539fc0d563dc39e27da2 inquirer: 8.2.0 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -1133,169 +1175,168 @@ packages: - zen-observable dev: true - /@graphql-codegen/core/2.4.0_graphql@16.2.0: + /@graphql-codegen/core/2.4.0_graphql@16.3.0: resolution: {integrity: sha512-5RiYE1+07jayp/3w/bkyaCXtfKNeKmRabpPP4aRi369WeH2cH37l2K8NbhkIU+zhpnhoqMID61TO56x2fKldZQ==} 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.3.2_graphql@16.2.0 - '@graphql-tools/schema': 8.3.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-tools/schema': 8.3.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/introspection/2.1.1_graphql@16.2.0: + /@graphql-codegen/introspection/2.1.1_graphql@16.3.0: resolution: {integrity: sha512-O9zsy0IoFYDo37pBVF4pSvRMDx/AKdgOxyko4R/O+0DHEw9Nya/pQ3dbn+LDLj2n6X+xOXUBUfFvqhODTqU28w==} 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.3.2_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/plugin-helpers/2.3.2_graphql@16.2.0: + /@graphql-codegen/plugin-helpers/2.3.2_graphql@16.3.0: resolution: {integrity: sha512-19qFA5XMAWaAY64sBljjDPYfHjE+QMk/+oalCyY13WjSlcLDvYPfmFlCNgFSsydArDELlHR8T1GMbA7C42M8TA==} 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.6.1_graphql@16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 change-case-all: 1.0.14 common-tags: 1.8.2 - graphql: 16.2.0 + graphql: 16.3.0 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.3.1 dev: true - /@graphql-codegen/schema-ast/2.4.1_graphql@16.2.0: + /@graphql-codegen/schema-ast/2.4.1_graphql@16.3.0: resolution: {integrity: sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==} 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.3.2_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/typed-document-node/2.2.2_graphql@16.2.0: + /@graphql-codegen/typed-document-node/2.2.2_graphql@16.3.0: resolution: {integrity: sha512-FOqXcH8mL91Wjvh57VzayjP1WSFPNOii6P4BqJ42j88wsVV7RpO/eQoQjQX1ltAjHGSny8UZJDKA/8It5QaboQ==} 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.3.2_graphql@16.2.0 - '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.3.0 auto-bind: 4.0.0 change-case-all: 1.0.14 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-document-nodes/2.2.2_graphql@16.2.0: + /@graphql-codegen/typescript-document-nodes/2.2.2_graphql@16.3.0: resolution: {integrity: sha512-DUVBvZ53+uNS759zGez6xCtLR5nVVDOgB+YJBJ0l0p+RCpq3MsPJMEez383uIaOQTis2ZLgAuKsU7CAMiRSzgQ==} 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.3.2_graphql@16.2.0 - '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.3.0 auto-bind: 4.0.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-graphql-files-modules/2.1.1_graphql@16.2.0: + /@graphql-codegen/typescript-graphql-files-modules/2.1.1_graphql@16.3.0: resolution: {integrity: sha512-MmLHjLoS5zrzDOtu9B4XjSs/OJr267dhRX9Wuz8jIB0azZBhJWVDw3p8O/0/Y+IbIXAbhSPlPVyaU4eWsJOgtQ==} 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.3.2_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/typescript-operations/2.2.2_graphql@16.2.0: - resolution: {integrity: sha512-J50AuTA37RYv67hP2oHbfr3iGxexTCoadQsbr5pEUGucrIupCA0hLEJH2W+9/h6YNh0UlZT3kRTJp81ARoAjOA==} + /@graphql-codegen/typescript-operations/2.2.3_graphql@16.3.0: + resolution: {integrity: sha512-72fzmnxAkjtbfCvLI7MC2WFVygXGAtkmg1SJO39Bby69VIeIA2E/N+EpA6xHDL0TpG+Q3If9aiCFYxa6827SDg==} 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.3.2_graphql@16.2.0 - '@graphql-codegen/typescript': 2.4.2_graphql@16.2.0 - '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-codegen/typescript': 2.4.2_graphql@16.3.0 + '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.3.0 auto-bind: 4.0.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-urql/3.4.2_401d6065eaf5e49c8f9188bbd71d6697: - resolution: {integrity: sha512-MYpxOs7S/AMTMBATSqKGuijB5MK7hTNXJGyd8uXhjlJvYG1lgi+M1fWJuTOzsijn56uISh0OUgrZJcv7rVkT6w==} + /@graphql-codegen/typescript-urql/3.5.0_e20029557891e0afb887c44ec7f516f8: + resolution: {integrity: sha512-zFGG+HaFT/H2SoTwWbRSz0twfi4tJRry5qTVE7huBcn76bba6/DVy+/z3ORDem4wI2Z+B59EMB+vcCOBiUSUnA==} 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 graphql-tag: ^2.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.2.0 - '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.3.0 auto-bind: 4.0.0 - change-case-all: 1.0.14 - graphql: 16.2.0 - graphql-tag: 2.12.6_graphql@16.2.0 + graphql: 16.3.0 + graphql-tag: 2.12.6_graphql@16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript/2.4.2_graphql@16.2.0: + /@graphql-codegen/typescript/2.4.2_graphql@16.3.0: resolution: {integrity: sha512-8ajWidiFqF1KNAywtb/692SjwTyjzrDHo1sf2Q7Z+rh9qDEIrh83VHB8naT/1CefOvxj3MS6GbcsvJMizaE/AQ==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.2.0 - '@graphql-codegen/schema-ast': 2.4.1_graphql@16.2.0 - '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-codegen/schema-ast': 2.4.1_graphql@16.3.0 + '@graphql-codegen/visitor-plugin-common': 2.5.2_graphql@16.3.0 auto-bind: 4.0.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/urql-introspection/2.1.1_graphql@16.2.0: + /@graphql-codegen/urql-introspection/2.1.1_graphql@16.3.0: resolution: {integrity: sha512-XLDLxyK8N3x3fvbkMoDb6lYPX2/rx3LiYT8dBeZYrBH1i9Tu0kfcEg0GeqNeLxiwnch9PZIC3O+gzROqP+rveA==} 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.3.2_graphql@16.2.0 - '@urql/introspection': 0.3.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@urql/introspection': 0.3.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-codegen/visitor-plugin-common/2.5.2_graphql@16.2.0: + /@graphql-codegen/visitor-plugin-common/2.5.2_graphql@16.3.0: resolution: {integrity: sha512-qDMraPmumG+vEGAz42/asRkdgIRmQWH5HTc320UX+I6CY6eE/Ey85cgzoqeQGLV8gu4sj3UkNx/3/r79eX4u+Q==} 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.3.2_graphql@16.2.0 - '@graphql-tools/optimize': 1.1.1_graphql@16.2.0 - '@graphql-tools/relay-operation-optimizer': 6.4.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-codegen/plugin-helpers': 2.3.2_graphql@16.3.0 + '@graphql-tools/optimize': 1.1.1_graphql@16.3.0 + '@graphql-tools/relay-operation-optimizer': 6.4.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 - graphql: 16.2.0 - graphql-tag: 2.12.6_graphql@16.2.0 + graphql: 16.3.0 + graphql-tag: 2.12.6_graphql@16.3.0 parse-filepath: 1.0.2 tslib: 2.3.1 transitivePeerDependencies: @@ -1303,69 +1344,69 @@ packages: - supports-color dev: true - /@graphql-tools/apollo-engine-loader/7.2.1_graphql@16.2.0: - resolution: {integrity: sha512-Fj/A8+9SXPTXkpKqhcSq7O9WZuMdy5zynGrnMyewbCuw1kSfzgC4pJB76ILSPa5ajOcC5bBmmvXm+yVFVRgVMg==} + /@graphql-tools/apollo-engine-loader/7.2.2_graphql@16.3.0: + resolution: {integrity: sha512-jrtA1IvgbaHzla9nyBngNyvajudTcQAVE3//mgrK+DoN7UpUhtoXfxTOOq2tzZN67o4a6Bv/RJsxB3rSI3NLzg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - cross-undici-fetch: 0.0.20 - graphql: 16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + cross-undici-fetch: 0.1.22 + graphql: 16.3.0 sync-fetch: 0.3.1 tslib: 2.3.1 transitivePeerDependencies: - encoding dev: true - /@graphql-tools/batch-execute/8.3.1_graphql@16.2.0: + /@graphql-tools/batch-execute/8.3.1_graphql@16.3.0: resolution: {integrity: sha512-63kHY8ZdoO5FoeDXYHnAak1R3ysMViMPwWC2XUblFckuVLMUPmB2ONje8rjr2CvzWBHAW8c1Zsex+U3xhKtGIA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 dataloader: 2.0.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 value-or-promise: 1.0.11 dev: true - /@graphql-tools/code-file-loader/7.2.3_graphql@16.2.0: + /@graphql-tools/code-file-loader/7.2.3_graphql@16.3.0: resolution: {integrity: sha512-aNVG3/VG5cUpS389rpCum+z7RY98qvPwOzd+J4LVr+f5hWQbDREnSFM+5RVTDfULujrsi7edKaGxGKp68pGmAA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 globby: 11.1.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/delegate/8.4.3_graphql@16.2.0: + /@graphql-tools/delegate/8.4.3_graphql@16.3.0: resolution: {integrity: sha512-hKTJdJXJnKL0+2vpU+Kt7OHQTIXZ9mBmNBwHsYiG5WNArz/vNI7910r6TC2XMf/e7zhyyK+mXxMDBmDQkkJagA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/batch-execute': 8.3.1_graphql@16.2.0 - '@graphql-tools/schema': 8.3.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/batch-execute': 8.3.1_graphql@16.3.0 + '@graphql-tools/schema': 8.3.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 dataloader: 2.0.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 value-or-promise: 1.0.11 dev: true - /@graphql-tools/git-loader/7.1.2_graphql@16.2.0: + /@graphql-tools/git-loader/7.1.2_graphql@16.3.0: resolution: {integrity: sha512-vIMrISQPKQgHS893b8K/pEE1InPV+7etzFhHoyQRhYkVHXP2RBkfI64Wq9bNPezF8Ss/dwIjI/keLaPp9EQDmA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 is-glob: 4.0.3 micromatch: 4.0.4 tslib: 2.3.1 @@ -1374,15 +1415,15 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader/7.2.1_graphql@16.2.0: - resolution: {integrity: sha512-vqwh2H11ZkAATDam/JqiP0CSqQRPUbjgCDxPdUu/xvST2QKyA4+uVXLBcpBRJc5kJCQjELijeRWVHSk9oN1q6g==} + /@graphql-tools/github-loader/7.2.2_graphql@16.3.0: + resolution: {integrity: sha512-prk7fWkPQdkOIGv/tFxNFAmxrBbWwc/ztOk2m5tAfmdiVM0HR3MC5Ckx3kLpODVG7lpxKRamMsPCIqmjhrCLWQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - cross-undici-fetch: 0.0.20 - graphql: 16.2.0 + '@graphql-tools/graphql-tag-pluck': 7.1.5_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + cross-undici-fetch: 0.1.22 + graphql: 16.3.0 sync-fetch: 0.3.1 tslib: 2.3.1 transitivePeerDependencies: @@ -1390,20 +1431,20 @@ packages: - supports-color dev: true - /@graphql-tools/graphql-file-loader/7.3.3_graphql@16.2.0: + /@graphql-tools/graphql-file-loader/7.3.3_graphql@16.3.0: resolution: {integrity: sha512-6kUJZiNpYKVhum9E5wfl5PyLLupEDYdH7c8l6oMrk6c7EPEVs6iSUyB7yQoWrtJccJLULBW2CRQ5IHp5JYK0mA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/import': 6.6.5_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/import': 6.6.5_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 globby: 11.1.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 unixify: 1.0.0 dev: true - /@graphql-tools/graphql-tag-pluck/7.1.5_graphql@16.2.0: + /@graphql-tools/graphql-tag-pluck/7.1.5_graphql@16.3.0: resolution: {integrity: sha512-NKbFcjlg7cbK+scLXc6eVxXIhX4k8QL6lZ/y5Ju7yrpIN18k2vA78dI6W3Qb5qdftxbDNuC+kDmScZfzzxVPjQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1411,82 +1452,82 @@ packages: '@babel/parser': 7.16.12 '@babel/traverse': 7.16.10 '@babel/types': 7.16.8 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/import/6.6.5_graphql@16.2.0: + /@graphql-tools/import/6.6.5_graphql@16.3.0: resolution: {integrity: sha512-w0/cYuhrr2apn+iGoTToCqt65x2NN2iHQyqRNk/Zw1NJ+e8/C3eKVw0jmW4pYQvSocuPxL4UCSI56SdKO7m3+Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 resolve-from: 5.0.0 tslib: 2.3.1 dev: true - /@graphql-tools/json-file-loader/7.3.3_graphql@16.2.0: + /@graphql-tools/json-file-loader/7.3.3_graphql@16.3.0: resolution: {integrity: sha512-CN2Qk9rt+Gepa3rb3X/mpxYA5MIYLwZBPj2Njw6lbZ6AaxG+O1ArDCL5ACoiWiBimn1FCOM778uhRM9znd0b3Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 globby: 11.1.0 - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 unixify: 1.0.0 dev: true - /@graphql-tools/load/7.5.1_graphql@16.2.0: + /@graphql-tools/load/7.5.1_graphql@16.3.0: resolution: {integrity: sha512-j9XcLYZPZdl/TzzqA83qveJmwcCxgGizt5L1+C1/Z68brTEmQHLdQCOR3Ma3ewESJt6DU05kSTu2raKaunkjRg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/schema': 8.3.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/schema': 8.3.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 p-limit: 3.1.0 tslib: 2.3.1 dev: true - /@graphql-tools/merge/8.2.1_graphql@16.2.0: + /@graphql-tools/merge/8.2.1_graphql@16.3.0: resolution: {integrity: sha512-Q240kcUszhXiAYudjuJgNuLgy9CryDP3wp83NOZQezfA6h3ByYKU7xI6DiKrdjyVaGpYN3ppUmdj0uf5GaXzMA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-tools/optimize/1.1.1_graphql@16.2.0: + /@graphql-tools/optimize/1.1.1_graphql@16.3.0: resolution: {integrity: sha512-y0TEfPyGmJaQjnsTRs/UP7/ZHaB3i68VAsXW4H2doUFKY6rIOUz+ruME/uWsfy/VeTWBNqGX8/m/X7YFEi5OJQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-tools/prisma-loader/7.1.1_be040edf491f50524cf9ebb0b95b4dcc: + /@graphql-tools/prisma-loader/7.1.1_5e4e4ba362bfb71148b435f8f4a8657b: resolution: {integrity: sha512-9hVpG3BNsXAYMLPlZhSHubk6qBmiHLo/UlU0ldL100sMpqI46iBaHNhTNXZCSdd81hT+4HNqaDXNFqyKJ22OGQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/url-loader': 7.7.0_be040edf491f50524cf9ebb0b95b4dcc - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/url-loader': 7.7.1_5e4e4ba362bfb71148b435f8f4a8657b + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.33 '@types/jsonwebtoken': 8.5.8 chalk: 4.1.2 debug: 4.3.3 dotenv: 10.0.0 - graphql: 16.2.0 - graphql-request: 3.7.0_graphql@16.2.0 + graphql: 16.3.0 + graphql-request: 3.7.0_graphql@16.3.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.0 isomorphic-fetch: 3.0.0 @@ -1506,52 +1547,52 @@ packages: - utf-8-validate dev: true - /@graphql-tools/relay-operation-optimizer/6.4.1_graphql@16.2.0: + /@graphql-tools/relay-operation-optimizer/6.4.1_graphql@16.3.0: resolution: {integrity: sha512-2b9D5L+31sIBnvmcmIW5tfvNUV+nJFtbHpUyarTRDmFT6EZ2cXo4WZMm9XJcHQD/Z5qvMXfPHxzQ3/JUs4xI+w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 - relay-compiler: 12.0.0_graphql@16.2.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 + relay-compiler: 12.0.0_graphql@16.3.0 tslib: 2.3.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-tools/schema/8.3.1_graphql@16.2.0: + /@graphql-tools/schema/8.3.1_graphql@16.3.0: resolution: {integrity: sha512-3R0AJFe715p4GwF067G5i0KCr/XIdvSfDLvTLEiTDQ8V/hwbOHEKHKWlEBHGRQwkG5lwFQlW1aOn7VnlPERnWQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/merge': 8.2.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/merge': 8.2.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 value-or-promise: 1.0.11 dev: true - /@graphql-tools/url-loader/7.7.0_be040edf491f50524cf9ebb0b95b4dcc: - resolution: {integrity: sha512-mBBb+aJqI4E0MVEzyfi76Pi/G6lGxGTVt/tP1YtKJly7UnonNoWOtDusdL3zIVAGhGgLsNrLbGhLDbwSd6TV6A==} + /@graphql-tools/url-loader/7.7.1_5e4e4ba362bfb71148b435f8f4a8657b: + resolution: {integrity: sha512-K/5amdeHtKYI976HVd/AXdSNvLL7vx5QVjMlwN0OHeYyxSgC+UOH+KkS7cshYgL13SekGu0Mxbg9ABfgQ34ECA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/delegate': 8.4.3_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - '@graphql-tools/wrap': 8.3.3_graphql@16.2.0 - '@n1ru4l/graphql-live-query': 0.9.0_graphql@16.2.0 - '@types/websocket': 1.0.4 + '@graphql-tools/delegate': 8.4.3_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + '@graphql-tools/wrap': 8.3.3_graphql@16.3.0 + '@n1ru4l/graphql-live-query': 0.9.0_graphql@16.3.0 + '@types/websocket': 1.0.5 '@types/ws': 8.2.2 - cross-undici-fetch: 0.1.16 + cross-undici-fetch: 0.1.22 dset: 3.1.1 extract-files: 11.0.0 - graphql: 16.2.0 - graphql-sse: 1.0.6_graphql@16.2.0 - graphql-ws: 5.5.5_graphql@16.2.0 + graphql: 16.3.0 + graphql-sse: 1.0.6_graphql@16.3.0 + graphql-ws: 5.5.5_graphql@16.3.0 isomorphic-ws: 4.0.1_ws@8.4.2 - meros: 1.1.4_@types+node@17.0.10 - subscriptions-transport-ws: 0.11.0_graphql@16.2.0 + meros: 1.1.4_@types+node@17.0.14 + subscriptions-transport-ws: 0.11.0_graphql@16.3.0 sync-fetch: 0.3.1 tslib: 2.3.1 valid-url: 1.0.9 @@ -1564,37 +1605,37 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils/8.6.1_graphql@16.2.0: + /@graphql-tools/utils/8.6.1_graphql@16.3.0: resolution: {integrity: sha512-uxcfHCocp4ENoIiovPxUWZEHOnbXqj3ekWc0rm7fUhW93a1xheARNHcNKhwMTR+UKXVJbTFQdGI1Rl5XdyvDBg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /@graphql-tools/wrap/8.3.3_graphql@16.2.0: + /@graphql-tools/wrap/8.3.3_graphql@16.3.0: resolution: {integrity: sha512-TpXN1S4Cv+oMA1Zsg9Nu4N9yrFxLuJkX+CTtSRrrdfETGHIxqfyDkm5slPDCckxP+RILA00g8ny2jzsYyNvX1w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/delegate': 8.4.3_graphql@16.2.0 - '@graphql-tools/schema': 8.3.1_graphql@16.2.0 - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-tools/delegate': 8.4.3_graphql@16.3.0 + '@graphql-tools/schema': 8.3.1_graphql@16.3.0 + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 + graphql: 16.3.0 tslib: 2.3.1 value-or-promise: 1.0.11 dev: true - /@graphql-typed-document-node/core/3.1.1_graphql@16.2.0: + /@graphql-typed-document-node/core/3.1.1_graphql@16.3.0: resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} 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: 16.2.0 + graphql: 16.3.0 - /@humanwhocodes/config-array/0.9.2: - resolution: {integrity: sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==} + /@humanwhocodes/config-array/0.9.3: + resolution: {integrity: sha512-3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -2009,12 +2050,12 @@ packages: '@material/theme': 13.0.0 tslib: 2.3.1 - /@n1ru4l/graphql-live-query/0.9.0_graphql@16.2.0: + /@n1ru4l/graphql-live-query/0.9.0_graphql@16.3.0: resolution: {integrity: sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg==} peerDependencies: graphql: ^15.4.0 || ^16.0.0 dependencies: - graphql: 16.2.0 + graphql: 16.3.0 dev: true /@nodelib/fs.scandir/2.1.5: @@ -2067,7 +2108,7 @@ packages: engines: {node: '>=6'} dev: true - /@smui/button/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/button/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-wk+rQ7/7JWPUtJ/KZCivMyNurqb/Y9GBRXQ4uPriomyLT9z/rL7RCIszKcHBd0XiheCSmoCQyJHtX3tnNu3JQQ==} dependencies: '@material/button': 13.0.0 @@ -2075,228 +2116,228 @@ packages: '@material/feature-targeting': 13.0.0 '@material/ripple': 13.0.0 '@material/theme': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/card/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/card/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-+paTLv/FnkSzw9Nhx1tkGBfurcUV2VyDUTFhiCsRPgsad7wgd9Iz1wa6xWhyzkK687fr0REBHhtYaUyTYIMvMg==} dependencies: '@material/card': 13.0.0 - '@smui/button': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/button': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/checkbox/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/checkbox/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-efGYat9Ek+b4wBjL67QfRuD7SCKU9g7wCGHVtHAH7Gdi1ipfkrHX9mOLaIE4SNC1bLU5VNI344vgeLLr6cpQzg==} dependencies: '@material/checkbox': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/circular-progress/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/circular-progress/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-97e/rl8NWbOIiw941zGEdG3pLFa1ypVa7eZBPybPlJE3NleSye0m3VcDqDpzTbnxy8yP+T4IAETz2gv2nyryWw==} dependencies: '@material/circular-progress': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/common/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/common/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-cG7AL8iOuikryVSQlaNitJq1IrtjM/+Wlw9BaqzgPKNpvSH0wPDNk+znLx/KH87YUyYLaJpQ1vaF7EHpnTXJ3Q==} dependencies: '@material/dom': 13.0.0 '@tsconfig/svelte': 2.0.1 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/data-table/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/data-table/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-1mpkYlaRbtvEgHjv4T5AoP8lyVFh9pHENyqzSwuwMWXRihceEoggNw108/veiZUgM+nmNzTqjs0v4cYjpkmawQ==} dependencies: '@material/data-table': 13.0.0 '@material/dom': 13.0.0 - '@smui/checkbox': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/select': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/checkbox': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/icon-button': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/select': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/dialog/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/dialog/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-2+qs4LnRxo/Tf+USXE7bSmmq3BELjx27D+MrW2brcAomyzF0gaSiJAphOs2VkO9VS3I3sOtYPSWOYlwWGIVtag==} dependencies: '@material/button': 13.0.0 '@material/dialog': 13.0.0 '@material/dom': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/drawer/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/drawer/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-EkiMYmulPkV1zcX1tjLSbL1EBWyrSxXWZ+I9GuG/pN+ug6pqnYLdcfv0IdfMKOiMHESLUcOzduezrsyXvS2KCw==} dependencies: '@material/dom': 13.0.0 '@material/drawer': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/fab/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/fab/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-hNDsn5E4rIsGzlYhmwgEhGpd/WneOfEdt6h54DnIaDqk05msTvREcpo0+n7vwB/VYfSxiqHamoOBqWL03XAgGQ==} dependencies: '@material/fab': 13.0.0 '@material/feature-targeting': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/floating-label/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/floating-label/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-93PRrt15rKaQDm/x8+TchY347pi8hnGpdVY1wAfMwIOBRU+K8moaM0peeVo37+6MLjmrPrzM74+czxd+8lyYEQ==} dependencies: '@material/floating-label': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/form-field/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/form-field/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-9elRYyP/yppsAc73SJ1U++hDFnbPPjrrvdglcZrZ8/Q5/qrX9XwjpV4jGDuXUq9VhAPbcQYmKlEKqVeg3vRRLA==} dependencies: '@material/feature-targeting': 13.0.0 '@material/form-field': 13.0.0 '@material/rtl': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/icon-button/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/icon-button/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-BAHciMZhdiEBEywOKj+Zai6A55L8kATxv1dcFjfxfudd1Re6Y/sqHmR4EaYi5XSjTK0qtmxrSvCTuJEqMulUFg==} dependencies: '@material/density': 13.0.0 '@material/icon-button': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/layout-grid/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/layout-grid/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-dHpjwEfojJ+qlmiezShPBOl9BcRGo2JLQY109DVmkmsYXWVbOcZvdu2VxzHxUkGjDsQgjS4eCOe694CNM+2bHw==} dependencies: '@material/layout-grid': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/line-ripple/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/line-ripple/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-67xHAavm2mAzE9hU1sosv3RhINU2mKO2+E1XnnlX4uWzCG5jTnY/sk0sIcpv+F3ahVmw+6M2PlLgpTHUmMapOg==} dependencies: '@material/line-ripple': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/list/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/list/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-RZiozWs7nr4IzblRoNdZRNOvovy6qi4J5cHlSfgW8gjt4n+zmX80sQPNIU58sLtk9e//dizo9Yc2IkL4R3+dWA==} dependencies: '@material/dom': 13.0.0 '@material/feature-targeting': 13.0.0 '@material/list': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/menu-surface/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/menu-surface/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-0s9etifmTdZ5Pl1AoT/F9Uju4VoHY1Y2IgHz/0GhERXTNjx2H6zlaKBvdgisuyTmD2r29hOY367SUyYlelEBjA==} dependencies: '@material/animation': 13.0.0 '@material/menu-surface': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/menu/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/menu/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-HylpHnn8Im7GzT0rBO1vcNEP0vg7xDyZnCTvqkmDrYjgrdLOlXL+m5YwL22Jl8iqM6C+GKU8K6vj5rjHmEk9jw==} dependencies: '@material/dom': 13.0.0 '@material/menu': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/list': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/list': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/notched-outline/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/notched-outline/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-5AfClX3jXVxAvdCcdn0QUpfG+W80aiRgfezBSCJJtJ0OSqisJGRbCWwyKMt27e9YzcB6md5xuqP3DjqE9i59lQ==} dependencies: '@material/notched-outline': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/paper/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/paper/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-KzjfAKndK5SpPFgkJ7gMsbXAM2ogBhb40D0PN8wRjQAZaynAiRRlrT28ebzScPe1VOKJJnCwOF98EraaMCKXOQ==} dependencies: '@material/elevation': 13.0.0 @@ -2304,26 +2345,26 @@ packages: '@material/shape': 13.0.0 '@material/theme': 13.0.0 '@material/typography': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/ripple/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/ripple/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-/TtXE7s/w1QBpNOLtZWxKODdhXzCTws8ZgFXLDqFEWuVa9XGEEC1zm/dZ82jyjC8YyJJ0kJgzfdenIUbBWHmGA==} dependencies: '@material/dom': 13.0.0 '@material/ripple': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/select/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/select/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-NMVbg8GTvYeu+KlaymscjwZdDDJK3lce0pI/PvlbLYjJPY37XEkSOF6Z5jhwiyceTTC8VgB8ngXnw2wng6nDwA==} dependencies: '@material/feature-targeting': 13.0.0 @@ -2331,35 +2372,35 @@ packages: '@material/rtl': 13.0.0 '@material/select': 13.0.0 '@material/theme': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/list': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/menu': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/list': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/menu': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/menu-surface': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/switch/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/switch/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-jdnvbZrnRkEhFG7SDsstGQXUzpIDxeeMGQmYSgLp/wVXD1OED7TPvCUn5G/5zWt+Y4gc9GDhqZUugzcj3JPq1g==} dependencies: '@material/feature-targeting': 13.0.0 '@material/switch': 13.0.0 '@material/theme': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/textfield/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/textfield/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-hk18RTTmWdaM0T0GDzWE0AMVfxDxANciOHHhvSDm3ocUhuTLy/nB0MA6rTH7rucafJjMCqveZlmS60PY6vxjUQ==} dependencies: '@material/dom': 13.0.0 @@ -2367,24 +2408,24 @@ packages: '@material/ripple': 13.0.0 '@material/rtl': 13.0.0 '@material/textfield': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - '@smui/ripple': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/floating-label': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/line-ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/notched-outline': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + '@smui/ripple': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript dev: true - /@smui/top-app-bar/6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5: + /@smui/top-app-bar/6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-PxFLkJFB/hMiIVet546/rNKuo/P/2sz9AY05ajWbvScH9wxzt4IRC7Eu3ghZshHoAvak4CQt14VqhfETQi0YRg==} dependencies: '@material/feature-targeting': 13.0.0 '@material/top-app-bar': 13.0.0 - '@smui/common': 6.0.0-beta.13_svelte@3.46.2+typescript@4.5.5 - svelte2tsx: 0.4.14_svelte@3.46.2+typescript@4.5.5 + '@smui/common': 6.0.0-beta.13_svelte@3.46.3+typescript@4.5.5 + svelte2tsx: 0.4.14_svelte@3.46.3+typescript@4.5.5 transitivePeerDependencies: - svelte - typescript @@ -2399,8 +2440,8 @@ packages: resolution: {integrity: sha512-2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q==} dev: false - /@sveltejs/adapter-node/1.0.0-next.66: - resolution: {integrity: sha512-CtBRv7TAo0tuPm+noYXMYHz7jeUSZlT3+eAmsBMeM+B0oB5yEyZGycAyLbMykrp1PlWgN3jg1oK6gpwHIbxrJA==} + /@sveltejs/adapter-node/1.0.0-next.67: + resolution: {integrity: sha512-+LuLn91xARZsRANiQNIIDpMMncUTnP2pJc8tyL+FdpVvs5UtlvkYJpeCBPFqjjseRpIIbi8Slu89GCdrRXBDUg==} dependencies: tiny-glob: 0.2.9 dev: true @@ -2411,16 +2452,16 @@ packages: tiny-glob: 0.2.9 dev: true - /@sveltejs/kit/1.0.0-next.240_svelte@3.46.2: - resolution: {integrity: sha512-cHdxdSKAdCuty2lYlRHXE4rJZuKd4wur9U63JtPwysTaReMEJl+s9J/LVvyBzaLW/13x8vm/kKqx+DDcI0udlA==} + /@sveltejs/kit/1.0.0-next.255_svelte@3.46.3: + resolution: {integrity: sha512-6NDuiFDrNhCsUNOnUVj10FuI+BlwuFbJhbgwUsVl+JXF2Eg/4Rf2FioMAQAGMWWbqNPPYqhhf4VgQDn4oFavOg==} engines: {node: '>=14.13'} hasBin: true peerDependencies: svelte: ^3.44.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.0.0-next.35_svelte@3.46.2+vite@2.7.13 + '@sveltejs/vite-plugin-svelte': 1.0.0-next.36_svelte@3.46.3+vite@2.7.13 sade: 1.8.1 - svelte: 3.46.2 + svelte: 3.46.3 vite: 2.7.13 transitivePeerDependencies: - diff-match-patch @@ -2430,8 +2471,8 @@ packages: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.0.0-next.35_svelte@3.46.2+vite@2.7.13: - resolution: {integrity: sha512-PuhI+1L6xqn5gc6jiK4mHmeS8kf3c1E+IaAsJclHbZTNiPQdC5SiTM3cV0FAA4zhwHmXV6pjt8rRHRx8ouFv3g==} + /@sveltejs/vite-plugin-svelte/1.0.0-next.36_svelte@3.46.3+vite@2.7.13: + resolution: {integrity: sha512-X7lTiioTGC3ri5M299fxc2dimuKU7f22zTXcmD+NrF+fO9/b7YNfLeQQwWV7Tvv9REysMlR4G2HQF6+lY62p/Q==} engines: {node: ^14.13.1 || >= 16} peerDependencies: diff-match-patch: ^1.0.5 @@ -2445,8 +2486,8 @@ packages: debug: 4.3.3 kleur: 4.1.4 magic-string: 0.25.7 - svelte: 3.46.2 - svelte-hmr: 0.14.9_svelte@3.46.2 + svelte: 3.46.3 + svelte-hmr: 0.14.9_svelte@3.46.3 vite: 2.7.13 transitivePeerDependencies: - supports-color @@ -2507,19 +2548,19 @@ packages: /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 dev: true - /@types/marked/4.0.1: - resolution: {integrity: sha512-ZigEmCWdNUU7IjZEuQ/iaimYdDHWHfTe3kg8ORfKjyGYd9RWumPoOJRQXB0bO+XLkNwzCthW3wUIQtANaEZ1ag==} + /@types/marked/4.0.2: + resolution: {integrity: sha512-auNrZ/c0w6wsM9DccwVxWHssrMDezHUAXNesdp2RQrCVCyrQbOiSq7yqdJKrUQQpw9VTm7CGYJH2A/YG7jjrjQ==} dev: true /@types/minimist/1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/node/17.0.10: - resolution: {integrity: sha512-S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog==} + /@types/node/17.0.14: + resolution: {integrity: sha512-SbjLmERksKOGzWzPNuW7fJM7fk3YXVTFiZWB/Hs99gwhk+/dnrQRPBQjPW9aO+fi1tAffi9PrwFvsmOKmDTyng==} dev: true /@types/normalize-package-data/2.4.1: @@ -2530,8 +2571,8 @@ packages: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true - /@types/prismjs/1.16.6: - resolution: {integrity: sha512-dTvnamRITNqNkqhlBd235kZl3KfVJQQoT5jkXeiWSBK7i4/TLKBNLV0S1wOt8gy4E2TY722KLtdmv2xc6+Wevg==} + /@types/prismjs/1.26.0: + resolution: {integrity: sha512-ZTaqn/qSqUuAq1YwvOFQfVW1AR/oQJlLSZVustdjwI+GZ8kr0MSHBj0tsXPW1EqHubx50gtBEjbPGsdZwQwCjQ==} dev: true /@types/pug/2.0.6: @@ -2541,27 +2582,27 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 dev: true /@types/semver/7.3.9: resolution: {integrity: sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==} dev: true - /@types/websocket/1.0.4: - resolution: {integrity: sha512-qn1LkcFEKK8RPp459jkjzsfpbsx36BBt3oC3pITYtkoBw/aVX+EZFa5j3ThCRTNpLFvIMr5dSTD4RaMdilIOpA==} + /@types/websocket/1.0.5: + resolution: {integrity: sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ==} dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 dev: true /@types/ws/8.2.2: resolution: {integrity: sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==} dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 dev: true - /@typescript-eslint/eslint-plugin/5.10.0_706fb07ce74b1db611f19a02ad2ce784: - resolution: {integrity: sha512-XXVKnMsq2fuu9K2KsIxPUGqb6xAImz8MEChClbXmE3VbveFtBUU5bzM6IPVWqzyADIgdkS2Ws/6Xo7W2TeZWjQ==} + /@typescript-eslint/eslint-plugin/5.10.2_2595c2126aec4d4b6e944b931dabb4c2: + resolution: {integrity: sha512-4W/9lLuE+v27O/oe7hXJKjNtBLnZE8tQAFpapdxwSVHqtmIoPB1gph3+ahNwVuNL37BX7YQHyGF9Xv6XCnIX2Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2571,12 +2612,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.10.0_eslint@8.7.0+typescript@4.5.5 - '@typescript-eslint/scope-manager': 5.10.0 - '@typescript-eslint/type-utils': 5.10.0_eslint@8.7.0+typescript@4.5.5 - '@typescript-eslint/utils': 5.10.0_eslint@8.7.0+typescript@4.5.5 + '@typescript-eslint/parser': 5.10.2_eslint@8.8.0+typescript@4.5.5 + '@typescript-eslint/scope-manager': 5.10.2 + '@typescript-eslint/type-utils': 5.10.2_eslint@8.8.0+typescript@4.5.5 + '@typescript-eslint/utils': 5.10.2_eslint@8.8.0+typescript@4.5.5 debug: 4.3.3 - eslint: 8.7.0 + eslint: 8.8.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 @@ -2587,8 +2628,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.10.0_eslint@8.7.0+typescript@4.5.5: - resolution: {integrity: sha512-pJB2CCeHWtwOAeIxv8CHVGJhI5FNyJAIpx5Pt72YkK3QfEzt6qAlXZuyaBmyfOdM62qU0rbxJzNToPTVeJGrQw==} + /@typescript-eslint/parser/5.10.2_eslint@8.8.0+typescript@4.5.5: + resolution: {integrity: sha512-JaNYGkaQVhP6HNF+lkdOr2cAs2wdSZBoalE22uYWq8IEv/OVH0RksSGydk+sW8cLoSeYmC+OHvRyv2i4AQ7Czg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2597,26 +2638,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.10.0 - '@typescript-eslint/types': 5.10.0 - '@typescript-eslint/typescript-estree': 5.10.0_typescript@4.5.5 + '@typescript-eslint/scope-manager': 5.10.2 + '@typescript-eslint/types': 5.10.2 + '@typescript-eslint/typescript-estree': 5.10.2_typescript@4.5.5 debug: 4.3.3 - eslint: 8.7.0 + eslint: 8.8.0 typescript: 4.5.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.10.0: - resolution: {integrity: sha512-tgNgUgb4MhqK6DoKn3RBhyZ9aJga7EQrw+2/OiDk5hKf3pTVZWyqBi7ukP+Z0iEEDMF5FDa64LqODzlfE4O/Dg==} + /@typescript-eslint/scope-manager/5.10.2: + resolution: {integrity: sha512-39Tm6f4RoZoVUWBYr3ekS75TYgpr5Y+X0xLZxXqcZNDWZdJdYbKd3q2IR4V9y5NxxiPu/jxJ8XP7EgHiEQtFnw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.10.0 - '@typescript-eslint/visitor-keys': 5.10.0 + '@typescript-eslint/types': 5.10.2 + '@typescript-eslint/visitor-keys': 5.10.2 dev: true - /@typescript-eslint/type-utils/5.10.0_eslint@8.7.0+typescript@4.5.5: - resolution: {integrity: sha512-TzlyTmufJO5V886N+hTJBGIfnjQDQ32rJYxPaeiyWKdjsv2Ld5l8cbS7pxim4DeNs62fKzRSt8Q14Evs4JnZyQ==} + /@typescript-eslint/type-utils/5.10.2_eslint@8.8.0+typescript@4.5.5: + resolution: {integrity: sha512-uRKSvw/Ccs5FYEoXW04Z5VfzF2iiZcx8Fu7DGIB7RHozuP0VbKNzP1KfZkHBTM75pCpsWxIthEH1B33dmGBKHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2625,22 +2666,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.10.0_eslint@8.7.0+typescript@4.5.5 + '@typescript-eslint/utils': 5.10.2_eslint@8.8.0+typescript@4.5.5 debug: 4.3.3 - eslint: 8.7.0 + eslint: 8.8.0 tsutils: 3.21.0_typescript@4.5.5 typescript: 4.5.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.10.0: - resolution: {integrity: sha512-wUljCgkqHsMZbw60IbOqT/puLfyqqD5PquGiBo1u1IS3PLxdi3RDGlyf032IJyh+eQoGhz9kzhtZa+VC4eWTlQ==} + /@typescript-eslint/types/5.10.2: + resolution: {integrity: sha512-Qfp0qk/5j2Rz3p3/WhWgu4S1JtMcPgFLnmAKAW061uXxKSa7VWKZsDXVaMXh2N60CX9h6YLaBoy9PJAfCOjk3w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.10.0_typescript@4.5.5: - resolution: {integrity: sha512-x+7e5IqfwLwsxTdliHRtlIYkgdtYXzE0CkFeV6ytAqq431ZyxCFzNMNR5sr3WOlIG/ihVZr9K/y71VHTF/DUQA==} + /@typescript-eslint/typescript-estree/5.10.2_typescript@4.5.5: + resolution: {integrity: sha512-WHHw6a9vvZls6JkTgGljwCsMkv8wu8XU8WaYKeYhxhWXH/atZeiMW6uDFPLZOvzNOGmuSMvHtZKd6AuC8PrwKQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2648,8 +2689,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.10.0 - '@typescript-eslint/visitor-keys': 5.10.0 + '@typescript-eslint/types': 5.10.2 + '@typescript-eslint/visitor-keys': 5.10.2 debug: 4.3.3 globby: 11.1.0 is-glob: 4.0.3 @@ -2660,98 +2701,98 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.10.0_eslint@8.7.0+typescript@4.5.5: - resolution: {integrity: sha512-IGYwlt1CVcFoE2ueW4/ioEwybR60RAdGeiJX/iDAw0t5w0wK3S7QncDwpmsM70nKgGTuVchEWB8lwZwHqPAWRg==} + /@typescript-eslint/utils/5.10.2_eslint@8.8.0+typescript@4.5.5: + resolution: {integrity: sha512-vuJaBeig1NnBRkf7q9tgMLREiYD7zsMrsN1DA3wcoMDvr3BTFiIpKjGiYZoKPllfEwN7spUjv7ZqD+JhbVjEPg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.10.0 - '@typescript-eslint/types': 5.10.0 - '@typescript-eslint/typescript-estree': 5.10.0_typescript@4.5.5 - eslint: 8.7.0 + '@typescript-eslint/scope-manager': 5.10.2 + '@typescript-eslint/types': 5.10.2 + '@typescript-eslint/typescript-estree': 5.10.2_typescript@4.5.5 + eslint: 8.8.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.7.0 + eslint-utils: 3.0.0_eslint@8.8.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.10.0: - resolution: {integrity: sha512-GMxj0K1uyrFLPKASLmZzCuSddmjZVbVj3Ouy5QVuIGKZopxvOr24JsS7gruz6C3GExE01mublZ3mIBOaon9zuQ==} + /@typescript-eslint/visitor-keys/5.10.2: + resolution: {integrity: sha512-zHIhYGGGrFJvvyfwHk5M08C5B5K4bewkm+rrvNTKk1/S15YHR+SA/QUF8ZWscXSfEaB8Nn2puZj+iHcoxVOD/Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.10.0 + '@typescript-eslint/types': 5.10.2 eslint-visitor-keys: 3.2.0 dev: true - /@urql/core/2.3.6_graphql@16.2.0: - resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} + /@urql/core/2.4.1_graphql@16.3.0: + resolution: {integrity: sha512-HnS54oNwO4pAACKl/2/tNLbRrxAxKawVJuG9UPiixqeEVekiecUQQnCjb9SpOW4Qr54HYzCMDbr3c5px3hfEEg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.2.0 - graphql: 16.2.0 + '@graphql-typed-document-node/core': 3.1.1_graphql@16.3.0 + graphql: 16.3.0 wonka: 4.0.15 - /@urql/exchange-auth/0.1.7_graphql@16.2.0: + /@urql/exchange-auth/0.1.7_graphql@16.3.0: resolution: {integrity: sha512-4Bmmi6YMW1YjZnTdr0Gfp9IoIY1fpNGq/fo1XHWEFEYe+IEOEDQhKT1CyhztyvvKpFw2C46D32MJRWJHQUPo/g==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 - graphql: 16.2.0 + '@urql/core': 2.4.1_graphql@16.3.0 + graphql: 16.3.0 wonka: 4.0.15 dev: false - /@urql/exchange-graphcache/4.3.6_graphql@16.2.0: + /@urql/exchange-graphcache/4.3.6_graphql@16.3.0: resolution: {integrity: sha512-RDEi1954lcnwBK2dwQGaxOInuebZrRliz2v7aAuQasj49N9bWYrlSkBfELG14EzOL7NI23IUaeLeaDN7MouDJg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 - graphql: 16.2.0 + '@urql/core': 2.4.1_graphql@16.3.0 + graphql: 16.3.0 wonka: 4.0.15 dev: false - /@urql/exchange-multipart-fetch/0.1.14_graphql@16.2.0: + /@urql/exchange-multipart-fetch/0.1.14_graphql@16.3.0: resolution: {integrity: sha512-JdffZtfsJHQ4v0IevimPWbteXT1C5OH3PPbNJrbLigC9aCZB9dp2ZOjMXTvpP+3SIjJRFRguuRaL7hAGB04vgw==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 + '@urql/core': 2.4.1_graphql@16.3.0 extract-files: 11.0.0 - graphql: 16.2.0 + graphql: 16.3.0 wonka: 4.0.15 dev: false - /@urql/exchange-persisted-fetch/1.3.4_graphql@16.2.0: + /@urql/exchange-persisted-fetch/1.3.4_graphql@16.3.0: resolution: {integrity: sha512-7v6O3wk2MxCa9D22SO3iUxAq+F05cqLp7CxbHH3ImVBE9DnFdVwNI/RZkN8RxZD+kfraAOz0CW+UsoKF5LKOhA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 - graphql: 16.2.0 + '@urql/core': 2.4.1_graphql@16.3.0 + graphql: 16.3.0 wonka: 4.0.15 dev: false - /@urql/introspection/0.3.1_graphql@16.2.0: + /@urql/introspection/0.3.1_graphql@16.3.0: resolution: {integrity: sha512-4Srr45lA00cVlfRGtGJqYlc2vcPN6BZwFW9EVY20yROaoADCGNxm6xmScZhxuCRQPhOB9DXtuYs2KNrOo84ZeA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.2.0 + graphql: 16.3.0 - /@urql/svelte/1.3.3_graphql@16.2.0+svelte@3.46.2: + /@urql/svelte/1.3.3_graphql@16.3.0+svelte@3.46.3: resolution: {integrity: sha512-5XbKcEfvMBYrQfuKjCzLgcT46XW4RoVTeOM5VPmAwk7mD709kgL8LXOSF/9A+fTLOByncMxKTp/9lkI8HKCBkA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 svelte: ^3.0.0 dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 - graphql: 16.2.0 - svelte: 3.46.2 + '@urql/core': 2.4.1_graphql@16.3.0 + graphql: 16.3.0 + svelte: 3.46.3 wonka: 4.0.15 dev: false @@ -2833,10 +2874,6 @@ packages: uri-js: 4.4.1 dev: true - /alphanum-sort/1.0.2: - resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=} - dev: true - /ansi-escapes/3.2.0: resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} engines: {node: '>=4'} @@ -2939,7 +2976,7 @@ packages: engines: {node: '>=8'} dev: true - /autoprefixer/10.4.2_postcss@8.4.5: + /autoprefixer/10.4.2_postcss@8.4.6: resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -2947,11 +2984,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.19.1 - caniuse-lite: 1.0.30001301 + caniuse-lite: 1.0.30001305 fraction.js: 4.1.2 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true @@ -3053,8 +3090,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001301 - electron-to-chromium: 1.4.51 + caniuse-lite: 1.0.30001305 + electron-to-chromium: 1.4.61 escalade: 3.1.1 node-releases: 2.0.1 picocolors: 1.0.0 @@ -3145,13 +3182,13 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.19.1 - caniuse-lite: 1.0.30001301 + caniuse-lite: 1.0.30001305 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001301: - resolution: {integrity: sha512-csfD/GpHMqgEL3V3uIgosvh+SVIQvCh43SNu9HRbP1lnxkKm1kjDG4f32PP571JplkLjfS+mg2p1gxR7MYrrIA==} + /caniuse-lite/1.0.30001305: + resolution: {integrity: sha512-p7d9YQMji8haf0f+5rbcv9WlQ+N5jMPfRAnUmZRlNxsNeBO3Yr7RYG6M2uTY1h9tCVdlkJg6YNNc4kiAiBLdWA==} dev: true /capital-case/1.0.4: @@ -3359,18 +3396,22 @@ packages: dependencies: delayed-stream: 1.0.0 + /commander/2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true + /commander/7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} dev: true - /commitizen/4.2.4_@types+node@17.0.10: + /commitizen/4.2.4_@types+node@17.0.14: resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==} engines: {node: '>= 10'} hasBin: true dependencies: cachedir: 2.2.0 - cz-conventional-changelog: 3.2.0_@types+node@17.0.10 + cz-conventional-changelog: 3.2.0_@types+node@17.0.14 dedent: 0.7.0 detect-indent: 6.0.0 find-node-modules: 2.1.2 @@ -3467,16 +3508,16 @@ packages: '@iarna/toml': 2.2.5 dev: true - /cosmiconfig-typescript-loader/1.0.3_9d6cd740eceb93d711351e2e9548d1bd: - resolution: {integrity: sha512-ARo21VjxdacJUcHxgVMEYNIoVPYiuKOEwWBIYej4M22+pEbe3LzKgmht2UPM+0u7/T/KnZf2r/5IzHv2Nwz+/w==} + /cosmiconfig-typescript-loader/1.0.4_43d2036524ce97aa8076ce68340fa9ec: + resolution: {integrity: sha512-ulv2dvwurP/MZAIthXm69bO7EzzIUThZ6RJ1qXhdlXM6to3F+IKBL/17EnhYSG52A5N1KcAUu66vSG/3/77KrA==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' typescript: '>=3' dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 cosmiconfig: 7.0.1 - ts-node: 10.4.0_9d6cd740eceb93d711351e2e9548d1bd + ts-node: 10.4.0_43d2036524ce97aa8076ce68340fa9ec typescript: 4.5.5 transitivePeerDependencies: - '@swc/core' @@ -3534,70 +3575,59 @@ packages: which: 2.0.2 dev: true - /cross-undici-fetch/0.0.20: - resolution: {integrity: sha512-5d3WBC4VRHpFndECK9bx4TngXrw0OUXdhX561Ty1ZoqMASz9uf55BblhTC1CO6GhMWnvk9SOqYEXQliq6D2P4A==} - dependencies: - abort-controller: 3.0.0 - form-data: 4.0.0 - node-fetch: 2.6.7 - undici: 4.12.2 - transitivePeerDependencies: - - encoding - dev: true - - /cross-undici-fetch/0.1.16: - resolution: {integrity: sha512-VoL+4GLbq2R7cfpM3wc3RClV6boUAjbpZ485YHsIeBnWYUi4osdDZhh1ohk9+BjrLvAvwmvQwZC5rTEIVQ2eVQ==} + /cross-undici-fetch/0.1.22: + resolution: {integrity: sha512-lZw3cQ7V7Ct8dbGtaKJrLuNwv57S7Dc3KzDR3ARVmsk/wmRL3wXAc5/kqgfwC/Lme3df7sInYsKoNFrVEMKEfA==} dependencies: abort-controller: 3.0.0 form-data-encoder: 1.7.1 formdata-node: 4.3.2 node-fetch: 2.6.7 - undici: 4.12.2 + undici: 4.13.0 web-streams-polyfill: 3.2.0 transitivePeerDependencies: - encoding dev: true - /css-blank-pseudo/3.0.2_postcss@8.4.5: + /css-blank-pseudo/3.0.2_postcss@8.4.6: resolution: {integrity: sha512-hOb1LFjRR+8ocA071xUSmg5VslJ8NGo/I2qpUpdeAYyBVCgupS5O8SEVo4SxEMYyFBNodBkzG3T1iqW9HCXxew==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /css-declaration-sorter/6.1.4_postcss@8.4.5: + /css-declaration-sorter/6.1.4_postcss@8.4.6: resolution: {integrity: sha512-lpfkqS0fctcmZotJGhnxkIyJWvBXgpyi2wsFd4J8VB7wzyrT6Ch/3Q+FMNJpjK4gu1+GN5khOnpU2ZVKrLbhCw==} engines: {node: '>= 10'} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 timsort: 0.3.0 dev: true - /css-has-pseudo/3.0.3_postcss@8.4.5: + /css-has-pseudo/3.0.3_postcss@8.4.6: resolution: {integrity: sha512-0gDYWEKaGacwxCqvQ3Ypg6wGdD1AztbMm5h1JsactG2hP2eiflj808QITmuWBpE7sjSEVrAlZhPTVd/nNMj/hQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /css-prefers-color-scheme/6.0.2_postcss@8.4.5: - resolution: {integrity: sha512-gv0KQBEM+q/XdoKyznovq3KW7ocO7k+FhPP+hQR1MenJdu0uPGS6IZa9PzlbqBeS6XcZJNAoqoFxlAUW461CrA==} + /css-prefers-color-scheme/6.0.3_postcss@8.4.6: + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: - postcss: ^8.3 + postcss: ^8.4 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true /css-select/4.2.1: @@ -3623,8 +3653,8 @@ packages: engines: {node: '>= 6'} dev: true - /cssdb/5.1.0: - resolution: {integrity: sha512-/vqjXhv1x9eGkE/zO6o8ZOI7dgdZbLVLUGyVRbPgk6YipXbW87YzUCcO+Jrmi5bwJlAH6oD+MNeZyRgXea1GZw==} + /cssdb/6.1.0: + resolution: {integrity: sha512-tZEDdN57Wlb5DRbOpJI9hSoP0t6DjtzSRswFoWo0hmJxfAXTBuDAcp2Oybj6BgQ+sErs9hXnWS1kzYKDKHanmg==} dev: true /cssesc/3.0.0: @@ -3633,62 +3663,62 @@ packages: hasBin: true dev: true - /cssnano-preset-default/5.1.10_postcss@8.4.5: - resolution: {integrity: sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==} + /cssnano-preset-default/5.1.11_postcss@8.4.6: + resolution: {integrity: sha512-ETet5hqHxmzQq2ynXMOQofKuLm7VOjMiOB7E2zdtm/hSeCKlD9fabzIUV4GoPcRyJRHi+4kGf0vsfGYbQ4nmPw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.1.4_postcss@8.4.5 - cssnano-utils: 3.0.0_postcss@8.4.5 - postcss: 8.4.5 - postcss-calc: 8.2.2_postcss@8.4.5 - postcss-colormin: 5.2.3_postcss@8.4.5 - postcss-convert-values: 5.0.2_postcss@8.4.5 - postcss-discard-comments: 5.0.1_postcss@8.4.5 - postcss-discard-duplicates: 5.0.1_postcss@8.4.5 - postcss-discard-empty: 5.0.1_postcss@8.4.5 - postcss-discard-overridden: 5.0.2_postcss@8.4.5 - postcss-merge-longhand: 5.0.4_postcss@8.4.5 - postcss-merge-rules: 5.0.4_postcss@8.4.5 - postcss-minify-font-values: 5.0.2_postcss@8.4.5 - postcss-minify-gradients: 5.0.4_postcss@8.4.5 - postcss-minify-params: 5.0.3_postcss@8.4.5 - postcss-minify-selectors: 5.1.1_postcss@8.4.5 - postcss-normalize-charset: 5.0.1_postcss@8.4.5 - postcss-normalize-display-values: 5.0.2_postcss@8.4.5 - postcss-normalize-positions: 5.0.2_postcss@8.4.5 - postcss-normalize-repeat-style: 5.0.2_postcss@8.4.5 - postcss-normalize-string: 5.0.2_postcss@8.4.5 - postcss-normalize-timing-functions: 5.0.2_postcss@8.4.5 - postcss-normalize-unicode: 5.0.2_postcss@8.4.5 - postcss-normalize-url: 5.0.4_postcss@8.4.5 - postcss-normalize-whitespace: 5.0.2_postcss@8.4.5 - postcss-ordered-values: 5.0.3_postcss@8.4.5 - postcss-reduce-initial: 5.0.2_postcss@8.4.5 - postcss-reduce-transforms: 5.0.2_postcss@8.4.5 - postcss-svgo: 5.0.3_postcss@8.4.5 - postcss-unique-selectors: 5.0.2_postcss@8.4.5 - dev: true - - /cssnano-utils/3.0.0_postcss@8.4.5: - resolution: {integrity: sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==} + css-declaration-sorter: 6.1.4_postcss@8.4.6 + cssnano-utils: 3.0.1_postcss@8.4.6 + postcss: 8.4.6 + postcss-calc: 8.2.3_postcss@8.4.6 + postcss-colormin: 5.2.4_postcss@8.4.6 + postcss-convert-values: 5.0.3_postcss@8.4.6 + postcss-discard-comments: 5.0.2_postcss@8.4.6 + postcss-discard-duplicates: 5.0.2_postcss@8.4.6 + postcss-discard-empty: 5.0.2_postcss@8.4.6 + postcss-discard-overridden: 5.0.3_postcss@8.4.6 + postcss-merge-longhand: 5.0.5_postcss@8.4.6 + postcss-merge-rules: 5.0.5_postcss@8.4.6 + postcss-minify-font-values: 5.0.3_postcss@8.4.6 + postcss-minify-gradients: 5.0.5_postcss@8.4.6 + postcss-minify-params: 5.0.4_postcss@8.4.6 + postcss-minify-selectors: 5.1.2_postcss@8.4.6 + postcss-normalize-charset: 5.0.2_postcss@8.4.6 + postcss-normalize-display-values: 5.0.2_postcss@8.4.6 + postcss-normalize-positions: 5.0.3_postcss@8.4.6 + postcss-normalize-repeat-style: 5.0.3_postcss@8.4.6 + postcss-normalize-string: 5.0.3_postcss@8.4.6 + postcss-normalize-timing-functions: 5.0.2_postcss@8.4.6 + postcss-normalize-unicode: 5.0.3_postcss@8.4.6 + postcss-normalize-url: 5.0.4_postcss@8.4.6 + postcss-normalize-whitespace: 5.0.3_postcss@8.4.6 + postcss-ordered-values: 5.0.4_postcss@8.4.6 + postcss-reduce-initial: 5.0.2_postcss@8.4.6 + postcss-reduce-transforms: 5.0.3_postcss@8.4.6 + postcss-svgo: 5.0.3_postcss@8.4.6 + postcss-unique-selectors: 5.0.3_postcss@8.4.6 + dev: true + + /cssnano-utils/3.0.1_postcss@8.4.6: + resolution: {integrity: sha512-VNCHL364lh++/ono+S3j9NlUK+d97KNkxI77NlqZU2W3xd2/qmyN61dsa47pTpb55zuU4G4lI7qFjAXZJH1OAQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /cssnano/5.0.15_postcss@8.4.5: - resolution: {integrity: sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==} + /cssnano/5.0.16_postcss@8.4.6: + resolution: {integrity: sha512-ryhRI9/B9VFCwPbb1z60LLK5/ldoExi7nwdnJzpkLZkm2/r7j2X3jfY+ZvDVJhC/0fPZlrAguYdHNFg0iglPKQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.1.10_postcss@8.4.5 + cssnano-preset-default: 5.1.11_postcss@8.4.6 lilconfig: 2.0.4 - postcss: 8.4.5 + postcss: 8.4.6 yaml: 1.10.2 dev: true @@ -3718,36 +3748,36 @@ packages: resolution: {integrity: sha512-ZhdszThJE9es2vja6N57cxaob79SDSCno0arWLKMv/Bc57zu8mZwPzkLl50sEA14G/Yd/HqWTXHH9HyMp9c5yA==} dev: false - /cz-conventional-changelog/3.2.0_@types+node@17.0.10: + /cz-conventional-changelog/3.2.0_@types+node@17.0.14: resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==} engines: {node: '>= 10'} dependencies: chalk: 2.4.2 - commitizen: 4.2.4_@types+node@17.0.10 + commitizen: 4.2.4_@types+node@17.0.14 conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': 16.1.0_@types+node@17.0.10 + '@commitlint/load': 16.1.0_@types+node@17.0.14 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' dev: true - /cz-conventional-changelog/3.3.0_@types+node@17.0.10: + /cz-conventional-changelog/3.3.0_@types+node@17.0.14: resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} engines: {node: '>= 10'} dependencies: chalk: 2.4.2 - commitizen: 4.2.4_@types+node@17.0.10 + commitizen: 4.2.4_@types+node@17.0.14 conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': 16.1.0_@types+node@17.0.10 + '@commitlint/load': 16.1.0_@types+node@17.0.14 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -3939,8 +3969,8 @@ packages: domelementtype: 2.2.0 dev: true - /dompurify/2.3.4: - resolution: {integrity: sha512-6BVcgOAVFXjI0JTjEvZy901Rghm+7fDQOrNIcxB4+gdhj6Kwp6T9VBhBY/AbagKHJocRkDYGd6wvI+p4/10xtQ==} + /dompurify/2.3.5: + resolution: {integrity: sha512-kD+f8qEaa42+mjdOpKeztu9Mfx5bv9gVLO6K9jRx4uGvh6Wv06Srn4jr1wPNY2OOUGGSKHNFN+A8MA3v0E0QAQ==} dev: true /domutils/2.8.0: @@ -3985,8 +4015,8 @@ packages: safe-buffer: 5.2.1 dev: true - /electron-to-chromium/1.4.51: - resolution: {integrity: sha512-JNEmcYl3mk1tGQmy0EvL5eik/CKSBuzAyGP0QFdG6LIgxQe3II0BL1m2zKc2MZMf3uGqHWE1TFddJML0RpjSHQ==} + /electron-to-chromium/1.4.61: + resolution: {integrity: sha512-kpzCOOFlx63C9qKRyIDEsKIUgzoe98ump7T4gU+/OLzj8gYkkWf2SIyBjhTSE0keAjMAp3i7C262YtkQOMYrGw==} dev: true /elegant-spinner/1.0.1: @@ -4270,24 +4300,24 @@ packages: source-map: 0.6.1 dev: false - /eslint-config-prettier/8.3.0_eslint@8.7.0: + /eslint-config-prettier/8.3.0_eslint@8.8.0: resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.7.0 + eslint: 8.8.0 dev: true - /eslint-plugin-svelte3/3.4.0_eslint@8.7.0+svelte@3.46.2: + /eslint-plugin-svelte3/3.4.0_eslint@8.8.0+svelte@3.46.3: resolution: {integrity: sha512-MIQUTuRv3o7LyQ+360qOc9mLT35j1I5YzHr04g/UDcvJTpg0X/kHWELY99ve869Rp/9wjqD7I26Aq5H8OH5RIg==} engines: {node: '>=10'} peerDependencies: eslint: '>=6.0.0' svelte: ^3.2.0 dependencies: - eslint: 8.7.0 - svelte: 3.46.2 + eslint: 8.8.0 + svelte: 3.46.3 dev: true /eslint-scope/5.1.1: @@ -4306,13 +4336,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.7.0: + /eslint-utils/3.0.0_eslint@8.8.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.7.0 + eslint: 8.8.0 eslint-visitor-keys: 2.1.0 dev: true @@ -4326,13 +4356,13 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.7.0: - resolution: {integrity: sha512-ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w==} + /eslint/8.8.0: + resolution: {integrity: sha512-H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: '@eslint/eslintrc': 1.0.5 - '@humanwhocodes/config-array': 0.9.2 + '@humanwhocodes/config-array': 0.9.3 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -4340,7 +4370,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.0 - eslint-utils: 3.0.0_eslint@8.7.0 + eslint-utils: 3.0.0_eslint@8.8.0 eslint-visitor-keys: 3.2.0 espree: 9.3.0 esquery: 1.4.0 @@ -4517,13 +4547,13 @@ packages: - encoding dev: true - /felte/0.9.0_svelte@3.46.2: + /felte/0.9.0_svelte@3.46.3: resolution: {integrity: sha512-B7ML7Xopy9D/PI2Z28wFQZ+wcUtB6mqMbKVBneHPWsphCZPFY0dE2asPd9n0lhgx0bvSO4n8Aq0VNlqt2mGFfw==} peerDependencies: svelte: ^3.31.0 dependencies: '@felte/core': 0.3.0 - svelte: 3.46.2 + svelte: 3.46.3 dev: false /figures/1.7.0: @@ -4610,12 +4640,12 @@ packages: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.4 + flatted: 3.2.5 rimraf: 3.0.2 dev: true - /flatted/3.2.4: - resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} + /flatted/3.2.5: + resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} dev: true /form-data-encoder/1.7.1: @@ -4638,6 +4668,7 @@ packages: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.34 + dev: false /formdata-node/4.3.2: resolution: {integrity: sha512-k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg==} @@ -4861,22 +4892,22 @@ packages: resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} dev: true - /graphql-config/4.1.0_0520e720822c2b0ff2f62ee01931cdb8: + /graphql-config/4.1.0_a34942152c85539fc0d563dc39e27da2: 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_e1c3b685f8b7686dcc885a02fd14c5f0 - '@graphql-tools/graphql-file-loader': 7.3.3_graphql@16.2.0 - '@graphql-tools/json-file-loader': 7.3.3_graphql@16.2.0 - '@graphql-tools/load': 7.5.1_graphql@16.2.0 - '@graphql-tools/merge': 8.2.1_graphql@16.2.0 - '@graphql-tools/url-loader': 7.7.0_be040edf491f50524cf9ebb0b95b4dcc - '@graphql-tools/utils': 8.6.1_graphql@16.2.0 + '@graphql-tools/graphql-file-loader': 7.3.3_graphql@16.3.0 + '@graphql-tools/json-file-loader': 7.3.3_graphql@16.3.0 + '@graphql-tools/load': 7.5.1_graphql@16.3.0 + '@graphql-tools/merge': 8.2.1_graphql@16.3.0 + '@graphql-tools/url-loader': 7.7.1_5e4e4ba362bfb71148b435f8f4a8657b + '@graphql-tools/utils': 8.6.1_graphql@16.3.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 - graphql: 16.2.0 + graphql: 16.3.0 minimatch: 3.0.4 string-env-interpolation: 1.0.1 transitivePeerDependencies: @@ -4887,7 +4918,7 @@ packages: - utf-8-validate dev: true - /graphql-request/3.7.0_graphql@16.2.0: + /graphql-request/3.7.0_graphql@16.3.0: resolution: {integrity: sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==} peerDependencies: graphql: 14 - 16 @@ -4895,41 +4926,41 @@ packages: cross-fetch: 3.1.5 extract-files: 9.0.0 form-data: 3.0.1 - graphql: 16.2.0 + graphql: 16.3.0 transitivePeerDependencies: - encoding dev: true - /graphql-sse/1.0.6_graphql@16.2.0: + /graphql-sse/1.0.6_graphql@16.3.0: resolution: {integrity: sha512-y2mVBN2KwNrzxX2KBncQ6kzc6JWvecxuBernrl0j65hsr6MAS3+Yn8PTFSOgRmtolxugepxveyZVQEuaNEbw3w==} engines: {node: '>=12'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.2.0 + graphql: 16.3.0 dev: true - /graphql-tag/2.12.6_graphql@16.2.0: + /graphql-tag/2.12.6_graphql@16.3.0: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: 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: 16.2.0 + graphql: 16.3.0 tslib: 2.3.1 dev: true - /graphql-ws/5.5.5_graphql@16.2.0: + /graphql-ws/5.5.5_graphql@16.3.0: resolution: {integrity: sha512-hvyIS71vs4Tu/yUYHPvGXsTgo0t3arU820+lT5VjZS2go0ewp2LqyCgxEN56CzOG7Iys52eRhHBiD1gGRdiQtw==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.2.0 + graphql: 16.3.0 dev: true - /graphql/16.2.0: - resolution: {integrity: sha512-MuQd7XXrdOcmfwuLwC2jNvx0n3rxIuNYOxUtiee5XOmfrWo613ar2U8pE7aHAKh8VwfpifubpD9IP+EdEAEOsA==} + /graphql/16.3.0: + resolution: {integrity: sha512-xm+ANmA16BzCT5pLjuXySbQVFwH3oJctUVdy81w1sV0vBU0KgDdBGtxQOUd5zqOBk/JayAFeG8Dlmeq74rjm/A==} engines: {node: ^12.22.0 || ^14.16.0 || >=16.0.0} dev: false @@ -5438,6 +5469,15 @@ packages: resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} dev: true + /jest-worker/26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 17.0.14 + merge-stream: 2.0.0 + supports-color: 7.2.0 + dev: true + /js-cookie/3.0.1: resolution: {integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==} engines: {node: '>=12'} @@ -5899,8 +5939,8 @@ packages: engines: {node: '>=8'} dev: true - /marked/4.0.10: - resolution: {integrity: sha512-+QvuFj0nGgO970fySghXGmuw+Fd0gD2x3+MqCWLIPf5oxdv1Ka6b2q+z9RP01P/IaKPMEramy+7cNy/Lw8c3hw==} + /marked/4.0.12: + resolution: {integrity: sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==} engines: {node: '>= 12'} hasBin: true dev: false @@ -5944,7 +5984,7 @@ packages: engines: {node: '>= 8'} dev: true - /meros/1.1.4_@types+node@17.0.10: + /meros/1.1.4_@types+node@17.0.14: resolution: {integrity: sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==} engines: {node: '>=12'} peerDependencies: @@ -5953,7 +5993,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 17.0.10 + '@types/node': 17.0.14 dev: true /micromatch/4.0.4: @@ -6096,7 +6136,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.21.1 + resolve: 1.22.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -6482,57 +6522,67 @@ packages: engines: {node: '>=4'} dev: true - /postcss-attribute-case-insensitive/5.0.0_postcss@8.4.5: + /postcss-attribute-case-insensitive/5.0.0_postcss@8.4.6: resolution: {integrity: sha512-b4g9eagFGq9T5SWX4+USfVyjIb3liPnjhHHRMP7FMB2kFVpYyfEscV0wP3eaXhKlcHKUut8lt5BGoeylWA/dBQ==} peerDependencies: postcss: ^8.0.2 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-calc/8.2.2_postcss@8.4.5: - resolution: {integrity: sha512-B5R0UeB4zLJvxNt1FVCaDZULdzsKLPc6FhjFJ+xwFiq7VG4i9cuaJLxVjNtExNK8ocm3n2o4unXXLiVX1SCqxA==} + /postcss-calc/8.2.3_postcss@8.4.6: + resolution: {integrity: sha512-EGM2EBBWqP57N0E7N7WOLT116PJ39dwHVU01WO4XPPQLJfkL2xVgkMZ+TZvCfapj/uJH07UEfKHQNPHzSw/14Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 dev: true - /postcss-color-functional-notation/4.2.1_postcss@8.4.5: + /postcss-clamp/3.0.0_postcss@8.4.6: + resolution: {integrity: sha512-QENQMIF/Grw0qX0RzSPJjw+mAiGPIwG2AnsQDIoR/WJ5Q19zLB0NrZX8cH7CzzdDWEerTPGCdep7ItFaAdtItg==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.5 + dependencies: + postcss: 8.4.6 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-functional-notation/4.2.1_postcss@8.4.6: resolution: {integrity: sha512-62OBIXCjRXpQZcFOYIXwXBlpAVWrYk8ek1rcjvMING4Q2cf0ipyN9qT+BhHA6HmftGSEnFQu2qgKO3gMscl3Rw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-color-hex-alpha/8.0.2_postcss@8.4.5: + /postcss-color-hex-alpha/8.0.2_postcss@8.4.6: resolution: {integrity: sha512-gyx8RgqSmGVK156NAdKcsfkY3KPGHhKqvHTL3hhveFrBBToguKFzhyiuk3cljH6L4fJ0Kv+JENuPXs1Wij27Zw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-color-rebeccapurple/7.0.2_postcss@8.4.5: + /postcss-color-rebeccapurple/7.0.2_postcss@8.4.6: resolution: {integrity: sha512-SFc3MaocHaQ6k3oZaFwH8io6MdypkUtEy/eXzXEB1vEQlO3S3oDc/FSZA8AsS04Z25RirQhlDlHLh3dn7XewWw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin/5.2.3_postcss@8.4.5: - resolution: {integrity: sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==} + /postcss-colormin/5.2.4_postcss@8.4.6: + resolution: {integrity: sha512-rYlC5015aNqVQt/B6Cy156g7sH5tRUJGmT9xeagYthtKehetbKx7jHxhyLpulP4bs4vbp8u/B2rac0J7S7qPQg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 @@ -6540,163 +6590,163 @@ packages: browserslist: 4.19.1 caniuse-api: 3.0.0 colord: 2.9.2 - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==} + /postcss-convert-values/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-fVkjHm2T0PSMqXUCIhHNWVGjhB9mHEWX2GboVs7j3iCgr6FpIl9c/IdXy0PHWZSQ9LFTRgmj98amxJE6KOnlsA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-media/8.0.0_postcss@8.4.5: + /postcss-custom-media/8.0.0_postcss@8.4.6: resolution: {integrity: sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-custom-properties/12.1.3_postcss@8.4.5: - resolution: {integrity: sha512-rtu3otIeY532PnEuuBrIIe+N+pcdbX/7JMZfrcL09wc78YayrHw5E8UkDfvnlOhEUrI4ptCuzXQfj+Or6spbGA==} + /postcss-custom-properties/12.1.4_postcss@8.4.6: + resolution: {integrity: sha512-i6AytuTCoDLJkWN/MtAIGriJz3j7UX6bV7Z5t+KgFz+dwZS15/mlTJY1S0kRizlk6ba0V8u8hN50Fz5Nm7tdZw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.4 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-selectors/6.0.0_postcss@8.4.5: + /postcss-custom-selectors/6.0.0_postcss@8.4.6: resolution: {integrity: sha512-/1iyBhz/W8jUepjGyu7V1OPcGbc636snN1yXEQCinb6Bwt7KxsiU7/bLQlp8GwAXzCh7cobBU5odNn/2zQWR8Q==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.2 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-dir-pseudo-class/6.0.3_postcss@8.4.5: + /postcss-dir-pseudo-class/6.0.3_postcss@8.4.6: resolution: {integrity: sha512-qiPm+CNAlgXiMf0J5IbBBEXA9l/Q5HGsNGkL3znIwT2ZFRLGY9U2fTUpa4lqCUXQOxaLimpacHeQC80BD2qbDw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-discard-comments/5.0.1_postcss@8.4.5: - resolution: {integrity: sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==} + /postcss-discard-comments/5.0.2_postcss@8.4.6: + resolution: {integrity: sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-discard-duplicates/5.0.1_postcss@8.4.5: - resolution: {integrity: sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==} + /postcss-discard-duplicates/5.0.2_postcss@8.4.6: + resolution: {integrity: sha512-LKY81YjUjc78p6rbXIsnppsaFo8XzCoMZkXVILJU//sK0DgPkPSpuq/cZvHss3EtdKvWNYgWzQL+wiJFtEET4g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-discard-empty/5.0.1_postcss@8.4.5: - resolution: {integrity: sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==} + /postcss-discard-empty/5.0.2_postcss@8.4.6: + resolution: {integrity: sha512-SxBsbTjlsKUvZLL+dMrdWauuNZU8TBq5IOL/DHa6jBUSXFEwmDqeXRfTIK/FQpPTa8MJMxEHjSV3UbiuyLARPQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-discard-overridden/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==} + /postcss-discard-overridden/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-yRTXknIZA4k8Yo4FiF1xbsLj/VBxfXEWxJNIrtIy6HC9KQ4xJxcPtoaaskh6QptCGrrcGnhKsTsENTRPZOBu4g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-double-position-gradients/3.0.4_postcss@8.4.5: + /postcss-double-position-gradients/3.0.4_postcss@8.4.6: resolution: {integrity: sha512-qz+s5vhKJlsHw8HjSs+HVk2QGFdRyC68KGRQGX3i+GcnUjhWhXQEmCXW6siOJkZ1giu0ddPwSO6I6JdVVVPoog==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-env-function/4.0.4_postcss@8.4.5: + /postcss-env-function/4.0.4_postcss@8.4.6: resolution: {integrity: sha512-0ltahRTPtXSIlEZFv7zIvdEib7HN0ZbUQxrxIKn8KbiRyhALo854I/CggU5lyZe6ZBvSTJ6Al2vkZecI2OhneQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-focus-visible/6.0.3_postcss@8.4.5: + /postcss-focus-visible/6.0.3_postcss@8.4.6: resolution: {integrity: sha512-ozOsg+L1U8S+rxSHnJJiET6dNLyADcPHhEarhhtCI9DBLGOPG/2i4ddVoFch9LzrBgb8uDaaRI4nuid2OM82ZA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-focus-within/5.0.3_postcss@8.4.5: + /postcss-focus-within/5.0.3_postcss@8.4.6: resolution: {integrity: sha512-fk9y2uFS6/Kpp7/A9Hz9Z4rlFQ8+tzgBcQCXAFSrXFGAbKx+4ZZOmmfHuYjCOMegPWoz0pnC6fNzi8j7Xyqp5Q==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-font-variant/5.0.0_postcss@8.4.5: + /postcss-font-variant/5.0.0_postcss@8.4.6: resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-gap-properties/3.0.2_postcss@8.4.5: + /postcss-gap-properties/3.0.2_postcss@8.4.6: resolution: {integrity: sha512-EaMy/pbxtQnKDsnbEjdqlkCkROTQZzolcLKgIE+3b7EuJfJydH55cZeHfm+MtIezXRqhR80VKgaztO/vHq94Fw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-image-set-function/4.0.4_postcss@8.4.5: - resolution: {integrity: sha512-BlEo9gSTj66lXjRNByvkMK9dEdEGFXRfGjKRi9fo8s0/P3oEk74cAoonl/utiM50E2OPVb/XSu+lWvdW4KtE/Q==} + /postcss-image-set-function/4.0.5_postcss@8.4.6: + resolution: {integrity: sha512-D4jXzlypkJ6BiSoUGazrRlR+GF3SED+BeiRDzOmuinDKdAn/Wuu8KtEGa5Z4pg4kxyeSMBywMgNt2+Yi/TZPPw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.4 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-import-url/7.0.0_postcss@8.4.5: + /postcss-import-url/7.0.0_postcss@8.4.6: resolution: {integrity: sha512-b9pDNTxecZGjcJWNsyFa4QDusOVRzLCN1KR8y5g85QAefAk7Ls8tdKs8FPwFZjWjyQ19bVN/17+6iKTY4S3aXQ==} engines: {node: '>=10'} peerDependencies: @@ -6706,35 +6756,35 @@ packages: is-url: 1.2.4 lodash.assign: 4.2.0 lodash.trim: 4.5.1 - postcss: 8.4.5 + postcss: 8.4.6 resolve-relative-url: 1.0.0 dev: true - /postcss-initial/4.0.1_postcss@8.4.5: + /postcss-initial/4.0.1_postcss@8.4.6: resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-js/4.0.0_postcss@8.4.5: + /postcss-js/4.0.0_postcss@8.4.6: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-lab-function/4.0.3_postcss@8.4.5: + /postcss-lab-function/4.0.3_postcss@8.4.6: resolution: {integrity: sha512-MH4tymWmefdZQ7uVG/4icfLjAQmH6o2NRYyVh2mKoB4RXJp9PjsyhZwhH4ouaCQHvg+qJVj3RzeAR1EQpIlXZA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true @@ -6751,296 +6801,304 @@ packages: yaml: 1.10.2 dev: true - /postcss-logical/5.0.3_postcss@8.4.5: + /postcss-logical/5.0.3_postcss@8.4.6: resolution: {integrity: sha512-P5NcHWYrif0vK8rgOy/T87vg0WRIj3HSknrvp1wzDbiBeoDPVmiVRmkown2eSQdpPveat/MC1ess5uhzZFVnqQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-media-minmax/5.0.0_postcss@8.4.5: + /postcss-media-minmax/5.0.0_postcss@8.4.6: resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-merge-longhand/5.0.4_postcss@8.4.5: - resolution: {integrity: sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==} + /postcss-merge-longhand/5.0.5_postcss@8.4.6: + resolution: {integrity: sha512-R2BCPJJ/U2oh1uTWEYn9CcJ7MMcQ1iIbj9wfr2s/zHu5om5MP/ewKdaunpfJqR1WYzqCsgnXuRoVXPAzxdqy8g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 - stylehacks: 5.0.1_postcss@8.4.5 + stylehacks: 5.0.2_postcss@8.4.6 dev: true - /postcss-merge-rules/5.0.4_postcss@8.4.5: - resolution: {integrity: sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==} + /postcss-merge-rules/5.0.5_postcss@8.4.6: + resolution: {integrity: sha512-3Oa26/Pb9VOFVksJjFG45SNoe4nhGvJ2Uc6TlRimqF8uhfOCEhVCaJ3rvEat5UFOn2UZqTY5Da8dFgCh3Iq0Ug==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.19.1 caniuse-api: 3.0.0 - cssnano-utils: 3.0.0_postcss@8.4.5 - postcss: 8.4.5 + cssnano-utils: 3.0.1_postcss@8.4.6 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-minify-font-values/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==} + /postcss-minify-font-values/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-bC45rVzEwsLhv/cL1eCjoo2OOjbSk9I7HKFBYnBvtyuIZlf7uMipMATXtA0Fc3jwPo3wuPIW1jRJWKzflMh1sA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients/5.0.4_postcss@8.4.5: - resolution: {integrity: sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==} + /postcss-minify-gradients/5.0.5_postcss@8.4.6: + resolution: {integrity: sha512-/YjvXs8PepsoiZAIpjstOO4IHKwFAqYNqbA1yVdqklM84tbUUneh6omJxGlRlF3mi6K5Pa067Mg6IwqEnYC8Zg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.2 - cssnano-utils: 3.0.0_postcss@8.4.5 - postcss: 8.4.5 + cssnano-utils: 3.0.1_postcss@8.4.6 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params/5.0.3_postcss@8.4.5: - resolution: {integrity: sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==} + /postcss-minify-params/5.0.4_postcss@8.4.6: + resolution: {integrity: sha512-Z0vjod9lRZEmEPfEmA2sCfjbfEEFKefMD3RDIQSUfXK4LpCyWkX1CniUgyNvnjJFLDPSxtgKzozhHhPHKoeGkg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - alphanum-sort: 1.0.2 browserslist: 4.19.1 - cssnano-utils: 3.0.0_postcss@8.4.5 - postcss: 8.4.5 + cssnano-utils: 3.0.1_postcss@8.4.6 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors/5.1.1_postcss@8.4.5: - resolution: {integrity: sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==} + /postcss-minify-selectors/5.1.2_postcss@8.4.6: + resolution: {integrity: sha512-gpn1nJDMCf3g32y/7kl+jsdamhiYT+/zmEt57RoT9GmzlixBNRPohI7k8UIHelLABhdLf3MSZhtM33xuH5eQOQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - alphanum-sort: 1.0.2 - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-nested/5.0.6_postcss@8.4.5: + /postcss-nested/5.0.6_postcss@8.4.6: resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-nesting/10.1.2_postcss@8.4.5: + /postcss-nesting/10.1.2_postcss@8.4.6: resolution: {integrity: sha512-dJGmgmsvpzKoVMtDMQQG/T6FSqs6kDtUDirIfl4KnjMCiY9/ETX8jdKyCd20swSRAbUYkaBKV20pxkzxoOXLqQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-normalize-charset/5.0.1_postcss@8.4.5: - resolution: {integrity: sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==} + /postcss-normalize-charset/5.0.2_postcss@8.4.6: + resolution: {integrity: sha512-fEMhYXzO8My+gC009qDc/3bgnFP8Fv1Ic8uw4ec4YTlhIOw63tGPk1YFd7fk9bZUf1DAbkhiL/QPWs9JLqdF2g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-normalize-display-values/5.0.2_postcss@8.4.5: + /postcss-normalize-display-values/5.0.2_postcss@8.4.6: resolution: {integrity: sha512-RxXoJPUR0shSjkMMzgEZDjGPrgXUVYyWA/YwQRicb48H15OClPuaDR7tYokLAlGZ2tCSENEN5WxjgxSD5m4cUw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==} + /postcss-normalize-positions/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-U+rmhjrNBvIGYqr/1tD4wXPFFMKUbXsYXvlUCzLi0tOCUS6LoeEAnmVXXJY/MEB/1CKZZwBSs2tmzGawcygVBA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==} + /postcss-normalize-repeat-style/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-uk1+xYx0AMbA3nLSNhbDrqbf/rx+Iuq5tVad2VNyaxxJzx79oGieJ6D9F6AfOL2GtiIbP7vTYlpYHtG+ERFXTg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==} + /postcss-normalize-string/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-Mf2V4JbIDboNGQhW6xW0YREDiYXoX3WrD3EjKkjvnpAJ6W4qqjLnK/c9aioyVFaWWHVdP5zVRw/9DI5S3oLDFw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions/5.0.2_postcss@8.4.5: + /postcss-normalize-timing-functions/5.0.2_postcss@8.4.6: resolution: {integrity: sha512-Ao0PP6MoYsRU1LxeVUW740ioknvdIUmfr6uAA3xWlQJ9s69/Tupy8qwhuKG3xWfl+KvLMAP9p2WXF9cwuk/7Bg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==} + /postcss-normalize-unicode/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-uNC7BmS/7h6to2UWa4RFH8sOTzu2O9dVWPE/F9Vm9GdhONiD/c1kNaCLbmsFHlKWcEx7alNUChQ+jH/QAlqsQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.19.1 - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url/5.0.4_postcss@8.4.5: + /postcss-normalize-url/5.0.4_postcss@8.4.6: resolution: {integrity: sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==} + /postcss-normalize-whitespace/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-333JWRnX655fSoUbufJ10HJop3c8mrpKkCCUnEmgz/Cb/QEtW+/TMZwDAUt4lnwqP6tCCk0x0b58jqvDgiQm/A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values/5.0.3_postcss@8.4.5: - resolution: {integrity: sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==} + /postcss-opacity-percentage/1.1.2: + resolution: {integrity: sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==} + engines: {node: ^12 || ^14 || >=16} + dev: true + + /postcss-ordered-values/5.0.4_postcss@8.4.6: + resolution: {integrity: sha512-taKtGDZtyYUMVYkg+MuJeBUiTF6cGHZmo/qcW7ibvW79UlyKuSHbo6dpCIiqI+j9oJsXWzP+ovIxoyLDOeQFdw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.0.0_postcss@8.4.5 - postcss: 8.4.5 + cssnano-utils: 3.0.1_postcss@8.4.6 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-overflow-shorthand/3.0.2_postcss@8.4.5: + /postcss-overflow-shorthand/3.0.2_postcss@8.4.6: resolution: {integrity: sha512-odBMVt6PTX7jOE9UNvmnLrFzA9pXS44Jd5shFGGtSHY80QCuJF+14McSy0iavZggRZ9Oj//C9vOKQmexvyEJMg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-page-break/3.0.4_postcss@8.4.5: + /postcss-page-break/3.0.4_postcss@8.4.6: resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-place/7.0.3_postcss@8.4.5: + /postcss-place/7.0.3_postcss@8.4.6: resolution: {integrity: sha512-tDQ3m+GYoOar+KoQgj+pwPAvGHAp/Sby6vrFiyrELrMKQJ4AejL0NcS0mm296OKKYA2SRg9ism/hlT/OLhBrdQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-preset-env/7.2.3_postcss@8.4.5: - resolution: {integrity: sha512-Ok0DhLfwrcNGrBn8sNdy1uZqWRk/9FId0GiQ39W4ILop5GHtjJs8bu1MY9isPwHInpVEPWjb4CEcEaSbBLpfwA==} + /postcss-preset-env/7.3.0_postcss@8.4.6: + resolution: {integrity: sha512-mEK7vqBL/BvynALHNc9pC7T7jolNm3ouornf9p4WpXW+sGooV3kCLvS4kKXE+rL6i12LKUgleJOZRPaoOuNLEg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - autoprefixer: 10.4.2_postcss@8.4.5 + '@csstools/postcss-font-format-keywords': 1.0.0_postcss@8.4.6 + '@csstools/postcss-hwb-function': 1.0.0_postcss@8.4.6 + '@csstools/postcss-is-pseudo-class': 2.0.0_postcss@8.4.6 + '@csstools/postcss-normalize-display-values': 1.0.0_postcss@8.4.6 + autoprefixer: 10.4.2_postcss@8.4.6 browserslist: 4.19.1 - caniuse-lite: 1.0.30001301 - css-blank-pseudo: 3.0.2_postcss@8.4.5 - css-has-pseudo: 3.0.3_postcss@8.4.5 - css-prefers-color-scheme: 6.0.2_postcss@8.4.5 - cssdb: 5.1.0 - postcss: 8.4.5 - postcss-attribute-case-insensitive: 5.0.0_postcss@8.4.5 - postcss-color-functional-notation: 4.2.1_postcss@8.4.5 - postcss-color-hex-alpha: 8.0.2_postcss@8.4.5 - postcss-color-rebeccapurple: 7.0.2_postcss@8.4.5 - postcss-custom-media: 8.0.0_postcss@8.4.5 - postcss-custom-properties: 12.1.3_postcss@8.4.5 - postcss-custom-selectors: 6.0.0_postcss@8.4.5 - postcss-dir-pseudo-class: 6.0.3_postcss@8.4.5 - postcss-double-position-gradients: 3.0.4_postcss@8.4.5 - postcss-env-function: 4.0.4_postcss@8.4.5 - postcss-focus-visible: 6.0.3_postcss@8.4.5 - postcss-focus-within: 5.0.3_postcss@8.4.5 - postcss-font-variant: 5.0.0_postcss@8.4.5 - postcss-gap-properties: 3.0.2_postcss@8.4.5 - postcss-image-set-function: 4.0.4_postcss@8.4.5 - postcss-initial: 4.0.1_postcss@8.4.5 - postcss-lab-function: 4.0.3_postcss@8.4.5 - postcss-logical: 5.0.3_postcss@8.4.5 - postcss-media-minmax: 5.0.0_postcss@8.4.5 - postcss-nesting: 10.1.2_postcss@8.4.5 - postcss-overflow-shorthand: 3.0.2_postcss@8.4.5 - postcss-page-break: 3.0.4_postcss@8.4.5 - postcss-place: 7.0.3_postcss@8.4.5 - postcss-pseudo-class-any-link: 7.0.2_postcss@8.4.5 - postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.5 - postcss-selector-not: 5.0.0_postcss@8.4.5 - dev: true - - /postcss-pseudo-class-any-link/7.0.2_postcss@8.4.5: - resolution: {integrity: sha512-CG35J1COUH7OOBgpw5O+0koOLUd5N4vUGKUqSAuIe4GiuLHWU96Pqp+UPC8QITTd12zYAFx76pV7qWT/0Aj/TA==} + css-blank-pseudo: 3.0.2_postcss@8.4.6 + css-has-pseudo: 3.0.3_postcss@8.4.6 + css-prefers-color-scheme: 6.0.3_postcss@8.4.6 + cssdb: 6.1.0 + postcss: 8.4.6 + postcss-attribute-case-insensitive: 5.0.0_postcss@8.4.6 + postcss-clamp: 3.0.0_postcss@8.4.6 + postcss-color-functional-notation: 4.2.1_postcss@8.4.6 + postcss-color-hex-alpha: 8.0.2_postcss@8.4.6 + postcss-color-rebeccapurple: 7.0.2_postcss@8.4.6 + postcss-custom-media: 8.0.0_postcss@8.4.6 + postcss-custom-properties: 12.1.4_postcss@8.4.6 + postcss-custom-selectors: 6.0.0_postcss@8.4.6 + postcss-dir-pseudo-class: 6.0.3_postcss@8.4.6 + postcss-double-position-gradients: 3.0.4_postcss@8.4.6 + postcss-env-function: 4.0.4_postcss@8.4.6 + postcss-focus-visible: 6.0.3_postcss@8.4.6 + postcss-focus-within: 5.0.3_postcss@8.4.6 + postcss-font-variant: 5.0.0_postcss@8.4.6 + postcss-gap-properties: 3.0.2_postcss@8.4.6 + postcss-image-set-function: 4.0.5_postcss@8.4.6 + postcss-initial: 4.0.1_postcss@8.4.6 + postcss-lab-function: 4.0.3_postcss@8.4.6 + postcss-logical: 5.0.3_postcss@8.4.6 + postcss-media-minmax: 5.0.0_postcss@8.4.6 + postcss-nesting: 10.1.2_postcss@8.4.6 + postcss-opacity-percentage: 1.1.2 + postcss-overflow-shorthand: 3.0.2_postcss@8.4.6 + postcss-page-break: 3.0.4_postcss@8.4.6 + postcss-place: 7.0.3_postcss@8.4.6 + postcss-pseudo-class-any-link: 7.1.0_postcss@8.4.6 + postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.6 + postcss-selector-not: 5.0.0_postcss@8.4.6 + dev: true + + /postcss-pseudo-class-any-link/7.1.0_postcss@8.4.6: + resolution: {integrity: sha512-l7sAkLmm3bYq8wt8/0r/dn6o9mVCPq7MOiNrb/Xi2zBlw/+w1V2jKFo/3IijKHfJ92SwDqkVLPwQfGO3xxUdAw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.4 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /postcss-reduce-initial/5.0.2_postcss@8.4.5: + /postcss-reduce-initial/5.0.2_postcss@8.4.6: resolution: {integrity: sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -7048,34 +7106,34 @@ packages: dependencies: browserslist: 4.19.1 caniuse-api: 3.0.0 - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-reduce-transforms/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==} + /postcss-reduce-transforms/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-yDnTUab5i7auHiNwdcL1f+pBnqQFf+7eC4cbC7D8Lc1FkvNZhtpkdad+9U4wDdFb84haupMf0rA/Zc5LcTe/3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 dev: true - /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.5: + /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.6: resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 dev: true - /postcss-selector-not/5.0.0_postcss@8.4.5: + /postcss-selector-not/5.0.0_postcss@8.4.6: resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==} peerDependencies: postcss: ^8.1.0 dependencies: balanced-match: 1.0.2 - postcss: 8.4.5 + postcss: 8.4.6 dev: true /postcss-selector-parser/6.0.9: @@ -7086,25 +7144,24 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-svgo/5.0.3_postcss@8.4.5: + /postcss-svgo/5.0.3_postcss@8.4.6: resolution: {integrity: sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.5 + postcss: 8.4.6 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors/5.0.2_postcss@8.4.5: - resolution: {integrity: sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==} + /postcss-unique-selectors/5.0.3_postcss@8.4.6: + resolution: {integrity: sha512-V5tX2hadSSn+miVCluuK1IDGy+7jAXSOfRZ2DQ+s/4uQZb/orDYBjH0CHgFrXsRw78p4QTuEFA9kI6C956UnHQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - alphanum-sort: 1.0.2 - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true @@ -7112,8 +7169,8 @@ packages: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: true - /postcss/8.4.5: - resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==} + /postcss/8.4.6: + resolution: {integrity: sha512-OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.2.0 @@ -7136,14 +7193,14 @@ packages: engines: {node: '>=4'} dev: true - /prettier-plugin-svelte/2.6.0_prettier@2.5.1+svelte@3.46.2: + /prettier-plugin-svelte/2.6.0_prettier@2.5.1+svelte@3.46.3: resolution: {integrity: sha512-NPSRf6Y5rufRlBleok/pqg4+1FyGsL0zYhkYP6hnueeL1J/uCm3OfOZPsLX4zqD9VAdcXfyEL2PYqGv8ZoOSfA==} peerDependencies: prettier: ^1.16.4 || ^2.0.0 svelte: ^3.2.0 dependencies: prettier: 2.5.1 - svelte: 3.46.2 + svelte: 3.46.3 dev: true /prettier/2.5.1: @@ -7211,6 +7268,12 @@ packages: engines: {node: '>=10'} dev: true + /randombytes/2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + dependencies: + safe-buffer: 5.2.1 + dev: true + /rc/1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true @@ -7308,7 +7371,7 @@ packages: rc: 1.2.8 dev: true - /relay-compiler/12.0.0_graphql@16.2.0: + /relay-compiler/12.0.0_graphql@16.3.0: resolution: {integrity: sha512-SWqeSQZ+AMU/Cr7iZsHi1e78Z7oh00I5SvR092iCJq79aupqJ6Ds+I1Pz/Vzo5uY5PY0jvC4rBJXzlIN5g9boQ==} hasBin: true peerDependencies: @@ -7325,7 +7388,7 @@ packages: fb-watchman: 2.0.1 fbjs: 3.0.2 glob: 7.2.0 - graphql: 16.2.0 + graphql: 16.3.0 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -7404,8 +7467,8 @@ packages: url: 0.10.3 dev: true - /resolve/1.21.1: - resolution: {integrity: sha512-lfEImVbnolPuaSZuLQ52cAxPBHeI77sPwCOWRdy12UG/CNa8an7oBHH1R+Fp1/mUqSJi4c8TIP6FOIPSZAUrEQ==} + /resolve/1.22.0: + resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} hasBin: true dependencies: is-core-module: 2.8.1 @@ -7454,8 +7517,21 @@ packages: glob: 7.2.0 dev: true - /rollup/2.66.0: - resolution: {integrity: sha512-L6mKOkdyP8HK5kKJXaiWG7KZDumPJjuo1P+cfyHOJPNNTK3Moe7zCH5+fy7v8pVmHXtlxorzaBjvkBMB23s98g==} + /rollup-plugin-terser/7.0.2: + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + peerDependencies: + rollup: ^2.0.0 + dependencies: + '@babel/code-frame': 7.16.7 + jest-worker: 26.6.2 + serialize-javascript: 4.0.0 + terser: 5.10.0 + transitivePeerDependencies: + - acorn + dev: true + + /rollup/2.66.1: + resolution: {integrity: sha512-crSgLhSkLMnKr4s9iZ/1qJCplgAgrRY+igWv8KhG/AjKOJ0YX/WpmANyn8oxrw+zenF3BXWDLa7Xl/QZISH+7w==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -7512,9 +7588,9 @@ packages: rimraf: 2.7.1 dev: true - /sass/1.49.0: - resolution: {integrity: sha512-TVwVdNDj6p6b4QymJtNtRS2YtLJ/CqZriGg0eIAbAKMlN8Xy6kbv33FsEZSF7FufFFM705SQviHjjThfaQ4VNw==} - engines: {node: '>=8.9.0'} + /sass/1.49.7: + resolution: {integrity: sha512-13dml55EMIR2rS4d/RDHHP0sXMY3+30e1TKsyXaSz3iLWVoDWEoboY8WzJd5JMnxrRHffKO3wq2mpJ0jxRJiEQ==} + engines: {node: '>=12.0.0'} hasBin: true dependencies: chokidar: 3.5.3 @@ -7566,6 +7642,12 @@ packages: upper-case-first: 2.0.2 dev: true + /serialize-javascript/4.0.0: + resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + dependencies: + randombytes: 2.1.0 + dev: true + /set-blocking/2.0.0: resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} dev: true @@ -7638,7 +7720,7 @@ packages: hasBin: true dependencies: node-fetch: 2.6.7 - sass: 1.49.0 + sass: 1.49.7 yargs: 16.2.0 transitivePeerDependencies: - encoding @@ -7894,25 +7976,25 @@ packages: engines: {node: '>=8'} dev: true - /stylehacks/5.0.1_postcss@8.4.5: - resolution: {integrity: sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==} + /stylehacks/5.0.2_postcss@8.4.6: + resolution: {integrity: sha512-114zeJdOpTrbQYRD4OU5UWJ99LKUaqCPJTU1HQ/n3q3BwmllFN8kHENaLnOeqVq6AhXrWfxHNZTl33iJ4oy3cQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.19.1 - postcss: 8.4.5 + postcss: 8.4.6 postcss-selector-parser: 6.0.9 dev: true - /subscriptions-transport-ws/0.11.0_graphql@16.2.0: + /subscriptions-transport-ws/0.11.0_graphql@16.3.0: resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} peerDependencies: graphql: ^15.7.2 || ^16.0.0 dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 - graphql: 16.2.0 + graphql: 16.3.0 iterall: 1.3.0 symbol-observable: 1.2.0 ws: 7.5.6 @@ -7945,8 +8027,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /svelte-check/2.3.0_7ff82f86d2b584ac3c0682d6a10f68b9: - resolution: {integrity: sha512-SBKdJyUmxzPmJf/ZPqDSQOoa9JzOcgEpV7u3UaYcgVn7fA0veZ3FA5JgLU8KYtf84Gp6guBVcrC7XKLjJa5SXQ==} + /svelte-check/2.4.1_d5eca2c0d9133f686108b018fa7bac55: + resolution: {integrity: sha512-xhf3ShP5rnRwBokrgTBJ/0cO9QIc1DAVu1NWNRTfCDsDBNjGmkS3HgitgUadRuoMKj1+irZR/yHJ+Uqobnkbrw==} hasBin: true peerDependencies: svelte: ^3.24.0 @@ -7958,8 +8040,8 @@ packages: picocolors: 1.0.0 sade: 1.8.1 source-map: 0.7.3 - svelte: 3.46.2 - svelte-preprocess: 4.10.2_608c594ab12bc3595290e63e403d651b + svelte: 3.46.3 + svelte-preprocess: 4.10.2_8ad9ba7d678a7e4906317692d003ce22 typescript: 4.5.5 transitivePeerDependencies: - '@babel/core' @@ -7974,15 +8056,15 @@ packages: - sugarss dev: true - /svelte-hmr/0.14.9_svelte@3.46.2: + /svelte-hmr/0.14.9_svelte@3.46.3: resolution: {integrity: sha512-bKE9+4qb4sAnA+TKHiYurUl970rjA0XmlP9TEP7K/ncyWz3m81kA4HOgmlZK/7irGK7gzZlaPDI3cmf8fp/+tg==} peerDependencies: svelte: '>=3.19.0' dependencies: - svelte: 3.46.2 + svelte: 3.46.3 dev: true - /svelte-preprocess/4.10.2_608c594ab12bc3595290e63e403d651b: + /svelte-preprocess/4.10.2_8ad9ba7d678a7e4906317692d003ce22: resolution: {integrity: sha512-aPpkCreSo8EL/y8kJSa1trhiX0oyAtTjlNNM7BNjRAsMJ8Yy2LtqHt0zyd4pQPXt+D4PzbO3qTjjio3kwOxDlA==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -8027,20 +8109,20 @@ packages: '@types/sass': 1.43.1 detect-indent: 6.1.0 magic-string: 0.25.7 - postcss: 8.4.5 + postcss: 8.4.6 postcss-load-config: 3.1.1 sorcery: 0.10.0 strip-indent: 3.0.0 - svelte: 3.46.2 + svelte: 3.46.3 typescript: 4.5.5 dev: true - /svelte/3.46.2: - resolution: {integrity: sha512-RXSAtYNefe01Sb1lXtZ2I+gzn3t/h/59hoaRNeRrm8IkMIu6BSiAkbpi41xb+C44x54YKnbk9+dtfs3pM4hECA==} + /svelte/3.46.3: + resolution: {integrity: sha512-mTOXvv74CVQqJHqoIZDprVfRKVVmYNadXP0VKnOEA54223kLGCr1nMrifS4Zx29qMt/xRB38Eq1D7dDH/fM8fQ==} engines: {node: '>= 8'} dev: true - /svelte2tsx/0.4.14_svelte@3.46.2+typescript@4.5.5: + /svelte2tsx/0.4.14_svelte@3.46.3+typescript@4.5.5: resolution: {integrity: sha512-udF0Z/DA98OfjPFBU1GBJRpYHEvsxA8ozwYVN08AOWMnQyxoSyWWlYspiq2m9xAjLo/pWnhec9z1d6jc9umqjA==} peerDependencies: svelte: ^3.24 @@ -8048,7 +8130,7 @@ packages: dependencies: dedent-js: 1.0.1 pascal-case: 3.1.2 - svelte: 3.46.2 + svelte: 3.46.3 typescript: 4.5.5 dev: true @@ -8091,8 +8173,8 @@ packages: - encoding dev: true - /tailwindcss/3.0.15_ef48b3b8837f8a23677bffe8f9cd866d: - resolution: {integrity: sha512-bT2iy7FtjwgsXik4ZoJnHXR+SRCiGR1W95fVqpLZebr64m4ahwUwRbIAc5w5+2fzr1YF4Ct2eI7dojMRRl8sVQ==} + /tailwindcss/3.0.18_833e1018ad0d7954aa80c53675939269: + resolution: {integrity: sha512-ihPTpEyA5ANgZbwKlgrbfnzOp9R5vDHFWmqxB1PT8NwOGCOFVVMl+Ps1cQQ369acaqqf1BEF77roCwK0lvNmTw==} engines: {node: '>=12.13.0'} hasBin: true peerDependencies: @@ -8100,7 +8182,7 @@ packages: postcss: ^8.0.9 dependencies: arg: 5.0.1 - autoprefixer: 10.4.2_postcss@8.4.5 + autoprefixer: 10.4.2_postcss@8.4.6 chalk: 4.1.2 chokidar: 3.5.3 color-name: 1.1.4 @@ -8113,18 +8195,33 @@ packages: is-glob: 4.0.3 normalize-path: 3.0.0 object-hash: 2.2.0 - postcss: 8.4.5 - postcss-js: 4.0.0_postcss@8.4.5 + postcss: 8.4.6 + postcss-js: 4.0.0_postcss@8.4.6 postcss-load-config: 3.1.1 - postcss-nested: 5.0.6_postcss@8.4.5 + postcss-nested: 5.0.6_postcss@8.4.6 postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 - resolve: 1.21.1 + resolve: 1.22.0 transitivePeerDependencies: - ts-node dev: true + /terser/5.10.0: + resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} + engines: {node: '>=10'} + hasBin: true + peerDependencies: + acorn: ^8.5.0 + peerDependenciesMeta: + acorn: + optional: true + dependencies: + commander: 2.20.3 + source-map: 0.7.3 + source-map-support: 0.5.21 + dev: true + /text-extensions/1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} @@ -8214,7 +8311,7 @@ packages: resolution: {integrity: sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==} dev: true - /ts-node/10.4.0_9d6cd740eceb93d711351e2e9548d1bd: + /ts-node/10.4.0_43d2036524ce97aa8076ce68340fa9ec: resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==} hasBin: true peerDependencies: @@ -8233,7 +8330,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 17.0.10 + '@types/node': 17.0.14 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -8340,8 +8437,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /undici/4.12.2: - resolution: {integrity: sha512-RZj6SbkQFs5O/pJCboGEo6l5DTCe3Zg4r/8Z/0/2qnIv08+s6zL4akohOPMYWKc3mzwv15WTvsfMWaafZcvYoQ==} + /undici/4.13.0: + resolution: {integrity: sha512-8lk8S/f2V0VUNGf2scU2b+KI2JSzEQLdCyRNRF3XmHu+5jectlSDaPSBCXAHFaUlt1rzngzOBVDgJS9/Gue/KA==} engines: {node: '>=12.18'} dev: true @@ -8393,17 +8490,24 @@ packages: querystring: 0.2.0 dev: true - /urql/2.0.6_graphql@16.2.0: - resolution: {integrity: sha512-ovK9mx7YxD/CKUwVZGbEDBzZjbCcNsr1990nIhDCKe3Ij/0gNcIa+0EIyXKceOPuYDYKavIoaNQV2kOZjQxFcw==} + /urql/2.1.2_graphql@16.3.0: + resolution: {integrity: sha512-9DuFgr3L5HBivJ6ftxkco1/0BV2gMCdsWDDIub0MCSiVnF4AYWZK0g5WEoOTpzo1TZyA58uj5YITtHybHXK5UA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 react: '>= 16.8.0' dependencies: - '@urql/core': 2.3.6_graphql@16.2.0 - graphql: 16.2.0 + '@urql/core': 2.4.1_graphql@16.3.0 + graphql: 16.3.0 + use-sync-external-store: 1.0.0-rc.0 wonka: 4.0.15 dev: true + /use-sync-external-store/1.0.0-rc.0: + resolution: {integrity: sha512-0U9Xlc2QDFzSGMB0DvcJQL0+DIdxDPJC7mnZlYFbl7wrSrPMcs89X5TVkNB6Dzg618m8lZop+U+J6ow3vq9RAQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0-rc + dev: true + /util-deprecate/1.0.2: resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} @@ -8444,9 +8548,9 @@ packages: optional: true dependencies: esbuild: 0.13.15 - postcss: 8.4.5 - resolve: 1.21.1 - rollup: 2.66.0 + postcss: 8.4.6 + resolve: 1.22.0 + rollup: 2.66.1 optionalDependencies: fsevents: 2.3.2 dev: true diff --git a/svelte.config.js b/svelte.config.js index f6887e1f9..68822978b 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,9 +1,10 @@ import sveltePreprocess from 'svelte-preprocess'; import adapterNode from '@sveltejs/adapter-node'; import adapterStatic from '@sveltejs/adapter-static'; +import { terser } from 'rollup-plugin-terser'; const mode = process.env.NODE_ENV || 'development'; -const dev = mode === 'development'; +const dev = mode === 'development' || process.env.RUNTIME === 'development'; process.env.TAILWIND_MODE = dev ? 'watch' : 'build'; /** @type {import('@sveltejs/kit').Config} */ @@ -106,7 +107,15 @@ const config = { return 'vendor'; } } - } + }, + plugins: [ + terser({ + format: { + comments: false + }, + compress: false + }) + ] } } },