Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.

chore: migrate to monorepo (#33)

* migrate to monorepo

* add some gitattributes to improve the idff

* fix action warnings

* move readme into the lsp folder

* move changelog

* remove example

* make it work

* update readme

+2 -1
.changeset/config.json
···
"changelog": "../scripts/changelog.js",
"commit": false,
"access": "public",
-
"baseBranch": "main"
+
"baseBranch": "main",
+
"ignore": ["example"]
}
+3
.gitattributes
···
+
* text=auto
+
./**/*.generated.ts linguist-generated
+
./**/*.graphql linguist-generated
+47
.github/workflows/ci.yaml
···
+
name: CI
+
+
on:
+
pull_request:
+
push:
+
branches: main
+
+
jobs:
+
check:
+
name: Checks
+
runs-on: ubuntu-latest
+
timeout-minutes: 10
+
steps:
+
- name: Checkout Repo
+
uses: actions/checkout@v3
+
with:
+
fetch-depth: 0
+
+
- name: Setup Node
+
uses: actions/setup-node@v3
+
with:
+
node-version: '18'
+
+
- name: Setup pnpm
+
uses: pnpm/action-setup@v2.2.4
+
with:
+
version: 7
+
run_install: false
+
+
- name: Get pnpm store directory
+
id: pnpm-store
+
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
+
+
- name: Use pnpm store
+
uses: actions/cache@v3
+
id: pnpm-cache
+
with:
+
path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}
+
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
+
restore-keys: |
+
${{ runner.os }}-pnpm-
+
+
- name: Install Dependencies
+
run: pnpm install --frozen-lockfile --prefer-offline
+
+
- name: Build
+
run: pnpm --filter @0no-co/graphqlsp run build
+2 -2
.github/workflows/release.yaml
···
node-version: 18
- name: Setup pnpm
-
uses: pnpm/action-setup@v2.2.2
+
uses: pnpm/action-setup@v2.2.4
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-store
-
run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
+
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Use pnpm store
uses: actions/cache@v3
.npmignore packages/graphqlsp/.npmignore
CHANGELOG.md packages/graphqlsp/CHANGELOG.md
+1 -1
LICENSE packages/graphqlsp/LICENSE
···
MIT License
-
Copyright (c) 2022 Jovi De Croock
+
Copyright (c) 0no.co
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+4 -11
README.md
···
## Local development
-
Run `yarn` in both `/` as well as `/example`.
-
-
Open two terminal tabs, one where you run the build command which is `yarn tsc` and one
-
intended to open our `/example`, most of the debugging will happen through setting breakpoints.
+
Run `pnpm i` at the root. Open `packages/example` by running `code packages/example` or if you want to leverage
+
breakpoints do it with the `TSS_DEBUG_BRK=9559` prefix. When you make changes in `packages/graphqlsp` all you need
+
to do is run `pnpm i` in your other editor and restart the `TypeScript server` for the changes to apply.
-
Run `TSS_DEBUG_BRK=9559 code example` and ensure that the TypeScript used is the one from the workspace
-
the `.vscode` folder should ensure that but sometimes it fails. When we use `TSS_DEBUG_BRK` the plugin
-
won't run until we attach the debugger from our main editor.
-
-
After making changes you'll have to re-open said editor or restart the TypeScript server and re-attach the
-
debugger. Breakpoints have to be set in the transpiled JS-code hence using `tsc` currently so the code is a
-
bit easier to navigate.
+
> Ensure that both instances of your editor are using the Workspace Version of TypeScript
+1 -1
example/.vscode/settings.json packages/example/.vscode/settings.json
···
{
"typescript.tsdk": "node_modules/typescript/lib"
-
}
+
}
+4 -3
example/package.json packages/example/package.json
···
{
"name": "example",
+
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
···
"author": "",
"license": "ISC",
"dependencies": {
-
"@urql/core": "^2.6.1",
-
"graphql": "^16.5.0"
+
"@urql/core": "^3.0.0",
+
"graphql": "^16.6.0"
},
"devDependencies": {
"typescript": "^5.0.0",
-
"plugin": "file:.."
+
"@0no-co/graphqlsp": "file:../graphqlsp"
}
}
example/schema.graphql packages/example/schema.graphql
+105 -57
example/src/Pokemon.generated.ts packages/example/src/Pokemon.generated.ts
···
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
-
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
+
export type Exact<T extends { [key: string]: unknown }> = {
+
[K in keyof T]: T[K];
+
};
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
+
[SubKey in K]?: Maybe<T[SubKey]>;
+
};
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
+
[SubKey in K]: Maybe<T[SubKey]>;
+
};
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string;
···
Float: number;
};
+
/** Elemental property associated with either a Pokémon or one of their moves. */
+
export type PokemonType =
+
| 'Grass'
+
| 'Poison'
+
| 'Fire'
+
| 'Flying'
+
| 'Water'
+
| 'Bug'
+
| 'Normal'
+
| 'Electric'
+
| 'Ground'
+
| 'Fairy'
+
| 'Fighting'
+
| 'Psychic'
+
| 'Rock'
+
| 'Steel'
+
| 'Ice'
+
| 'Ghost'
+
| 'Dragon'
+
| 'Dark';
+
/** Move a Pokémon can perform with the associated damage and type. */
export type Attack = {
__typename?: 'Attack';
-
damage?: Maybe<Scalars['Int']>;
name?: Maybe<Scalars['String']>;
type?: Maybe<PokemonType>;
-
};
-
-
export type AttacksConnection = {
-
__typename?: 'AttacksConnection';
-
fast?: Maybe<Array<Maybe<Attack>>>;
-
special?: Maybe<Array<Maybe<Attack>>>;
+
damage?: Maybe<Scalars['Int']>;
};
/** Requirement that prevents an evolution through regular means of levelling up. */
···
name?: Maybe<Scalars['String']>;
};
+
export type PokemonDimension = {
+
__typename?: 'PokemonDimension';
+
minimum?: Maybe<Scalars['String']>;
+
maximum?: Maybe<Scalars['String']>;
+
};
+
+
export type AttacksConnection = {
+
__typename?: 'AttacksConnection';
+
fast?: Maybe<Array<Maybe<Attack>>>;
+
special?: Maybe<Array<Maybe<Attack>>>;
+
};
+
export type Pokemon = {
__typename?: 'Pokemon';
-
attacks?: Maybe<AttacksConnection>;
+
id: Scalars['ID'];
+
name: Scalars['String'];
classification?: Maybe<Scalars['String']>;
+
types?: Maybe<Array<Maybe<PokemonType>>>;
+
resistant?: Maybe<Array<Maybe<PokemonType>>>;
+
weaknesses?: Maybe<Array<Maybe<PokemonType>>>;
evolutionRequirements?: Maybe<Array<Maybe<EvolutionRequirement>>>;
-
evolutions?: Maybe<Array<Maybe<Pokemon>>>;
+
weight?: Maybe<PokemonDimension>;
+
height?: Maybe<PokemonDimension>;
+
attacks?: Maybe<AttacksConnection>;
/** Likelihood of an attempt to catch a Pokémon to fail. */
fleeRate?: Maybe<Scalars['Float']>;
-
height?: Maybe<PokemonDimension>;
-
id: Scalars['ID'];
/** Maximum combat power a Pokémon may achieve at max level. */
maxCP?: Maybe<Scalars['Int']>;
/** Maximum health points a Pokémon may achieve at max level. */
maxHP?: Maybe<Scalars['Int']>;
-
name: Scalars['String'];
-
resistant?: Maybe<Array<Maybe<PokemonType>>>;
-
types?: Maybe<Array<Maybe<PokemonType>>>;
-
weaknesses?: Maybe<Array<Maybe<PokemonType>>>;
-
weight?: Maybe<PokemonDimension>;
-
};
-
-
export type PokemonDimension = {
-
__typename?: 'PokemonDimension';
-
maximum?: Maybe<Scalars['String']>;
-
minimum?: Maybe<Scalars['String']>;
+
evolutions?: Maybe<Array<Maybe<Pokemon>>>;
};
-
/** Elemental property associated with either a Pokémon or one of their moves. */
-
export type PokemonType =
-
| 'Bug'
-
| 'Dark'
-
| 'Dragon'
-
| 'Electric'
-
| 'Fairy'
-
| 'Fighting'
-
| 'Fire'
-
| 'Flying'
-
| 'Ghost'
-
| 'Grass'
-
| 'Ground'
-
| 'Ice'
-
| 'Normal'
-
| 'Poison'
-
| 'Psychic'
-
| 'Rock'
-
| 'Steel'
-
| 'Water';
-
export type Query = {
__typename?: 'Query';
+
/** List out all Pokémon, optionally in pages */
+
pokemons?: Maybe<Array<Maybe<Pokemon>>>;
/** Get a single Pokémon by its ID, a three character long identifier padded with zeroes */
pokemon?: Maybe<Pokemon>;
-
/** List out all Pokémon, optionally in pages */
-
pokemons?: Maybe<Array<Maybe<Pokemon>>>;
};
+
export type QueryPokemonsArgs = {
+
limit?: InputMaybe<Scalars['Int']>;
+
skip?: InputMaybe<Scalars['Int']>;
+
};
export type QueryPokemonArgs = {
id: Scalars['ID'];
};
+
export type FieldsFragment = {
+
__typename?: 'Pokemon';
+
classification?: string | null;
+
};
-
export type QueryPokemonsArgs = {
-
limit?: InputMaybe<Scalars['Int']>;
-
skip?: InputMaybe<Scalars['Int']>;
+
export type PokemonFieldsFragment = {
+
__typename?: 'Pokemon';
+
id: string;
+
name: string;
};
-
export type FieldsFragment = { __typename?: 'Pokemon', attacks?: { __typename?: 'AttacksConnection', fast?: Array<{ __typename?: 'Attack', damage?: number | null } | null> | null } | null };
-
-
export type PokemonFieldsFragment = { __typename?: 'Pokemon', id: string, name: string };
-
-
export const FieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"fields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Pokemon"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"attacks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"fast"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"damage"}}]}}]}}]}}]} as unknown as DocumentNode<FieldsFragment, unknown>;
-
export const PokemonFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pokemonFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Pokemon"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]} as unknown as DocumentNode<PokemonFieldsFragment, unknown>;
+
export const FieldsFragmentDoc = {
+
kind: 'Document',
+
definitions: [
+
{
+
kind: 'FragmentDefinition',
+
name: { kind: 'Name', value: 'fields' },
+
typeCondition: {
+
kind: 'NamedType',
+
name: { kind: 'Name', value: 'Pokemon' },
+
},
+
selectionSet: {
+
kind: 'SelectionSet',
+
selections: [
+
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
+
],
+
},
+
},
+
],
+
} as unknown as DocumentNode<FieldsFragment, unknown>;
+
export const PokemonFieldsFragmentDoc = {
+
kind: 'Document',
+
definitions: [
+
{
+
kind: 'FragmentDefinition',
+
name: { kind: 'Name', value: 'pokemonFields' },
+
typeCondition: {
+
kind: 'NamedType',
+
name: { kind: 'Name', value: 'Pokemon' },
+
},
+
selectionSet: {
+
kind: 'SelectionSet',
+
selections: [
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
+
],
+
},
+
},
+
],
+
} as unknown as DocumentNode<PokemonFieldsFragment, unknown>;
+2 -2
example/src/Pokemon.ts packages/example/src/Pokemon.ts
···
fragment fields on Pokemon {
classification
}
-
` as typeof import('./Pokemon.generated').FieldsFragmentDoc
+
` as typeof import('./Pokemon.generated').FieldsFragmentDoc;
export const PokemonFields = gql`
fragment pokemonFields on Pokemon {
id
name
}
-
` as typeof import('./Pokemon.generated').PokemonFieldsFragmentDoc
+
` as typeof import('./Pokemon.generated').PokemonFieldsFragmentDoc;
example/src/index.generated.ts packages/example/src/index.generated.ts
+2 -1
example/src/index.ts packages/example/src/index.ts
···
id
name
__typename
+
...pokemonFields
}
}
···
});
client
-
.query(PokemonsQuery)
+
.query(PokemonsQuery, {})
.toPromise()
.then(result => {
result.data?.pokemons;
-109
example/tsconfig.json
···
-
{
-
"compilerOptions": {
-
"plugins": [
-
{
-
"name": "plugin",
-
"schema": "https://trygql.formidable.dev/graphql/basic-pokedex"
-
}
-
],
-
/* Visit https://aka.ms/tsconfig to read more about this file */
-
-
/* Projects */
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
-
-
/* Language and Environment */
-
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
-
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
-
-
/* Modules */
-
"module": "commonjs" /* Specify what module code is generated. */,
-
// "rootDir": "./", /* Specify the root folder within your source files. */
-
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
-
// "resolveJsonModule": true, /* Enable importing .json files. */
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
-
-
/* JavaScript Support */
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
-
-
/* Emit */
-
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
-
// "outDir": "./", /* Specify an output folder for all emitted files. */
-
// "removeComments": true, /* Disable emitting comments. */
-
// "noEmit": true, /* Disable emitting files from a compilation. */
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
-
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
-
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
-
-
/* Interop Constraints */
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
-
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
-
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
-
-
/* Type Checking */
-
"strict": true /* Enable all strict type-checking options. */,
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
-
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
-
-
/* Completeness */
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
-
}
-
}
-1591
example/yarn.lock
···
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-
# yarn lockfile v1
-
-
-
"@ampproject/remapping@^2.2.0":
-
version "2.2.1"
-
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
-
integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
-
dependencies:
-
"@jridgewell/gen-mapping" "^0.3.0"
-
"@jridgewell/trace-mapping" "^0.3.9"
-
-
"@ardatan/relay-compiler@12.0.0":
-
version "12.0.0"
-
resolved "https://registry.yarnpkg.com/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz#2e4cca43088e807adc63450e8cab037020e91106"
-
integrity sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==
-
dependencies:
-
"@babel/core" "^7.14.0"
-
"@babel/generator" "^7.14.0"
-
"@babel/parser" "^7.14.0"
-
"@babel/runtime" "^7.0.0"
-
"@babel/traverse" "^7.14.0"
-
"@babel/types" "^7.0.0"
-
babel-preset-fbjs "^3.4.0"
-
chalk "^4.0.0"
-
fb-watchman "^2.0.0"
-
fbjs "^3.0.0"
-
glob "^7.1.1"
-
immutable "~3.7.6"
-
invariant "^2.2.4"
-
nullthrows "^1.1.1"
-
relay-runtime "12.0.0"
-
signedsource "^1.0.0"
-
yargs "^15.3.1"
-
-
"@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39"
-
integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==
-
dependencies:
-
"@babel/highlight" "^7.18.6"
-
-
"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f"
-
integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==
-
-
"@babel/core@^7.14.0":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659"
-
integrity sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==
-
dependencies:
-
"@ampproject/remapping" "^2.2.0"
-
"@babel/code-frame" "^7.21.4"
-
"@babel/generator" "^7.21.4"
-
"@babel/helper-compilation-targets" "^7.21.4"
-
"@babel/helper-module-transforms" "^7.21.2"
-
"@babel/helpers" "^7.21.0"
-
"@babel/parser" "^7.21.4"
-
"@babel/template" "^7.20.7"
-
"@babel/traverse" "^7.21.4"
-
"@babel/types" "^7.21.4"
-
convert-source-map "^1.7.0"
-
debug "^4.1.0"
-
gensync "^1.0.0-beta.2"
-
json5 "^2.2.2"
-
semver "^6.3.0"
-
-
"@babel/generator@^7.14.0", "@babel/generator@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc"
-
integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==
-
dependencies:
-
"@babel/types" "^7.21.4"
-
"@jridgewell/gen-mapping" "^0.3.2"
-
"@jridgewell/trace-mapping" "^0.3.17"
-
jsesc "^2.5.1"
-
-
"@babel/helper-annotate-as-pure@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
-
integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
-
dependencies:
-
"@babel/types" "^7.18.6"
-
-
"@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656"
-
integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==
-
dependencies:
-
"@babel/compat-data" "^7.21.4"
-
"@babel/helper-validator-option" "^7.21.0"
-
browserslist "^4.21.3"
-
lru-cache "^5.1.1"
-
semver "^6.3.0"
-
-
"@babel/helper-create-class-features-plugin@^7.18.6":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz#3a017163dc3c2ba7deb9a7950849a9586ea24c18"
-
integrity sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==
-
dependencies:
-
"@babel/helper-annotate-as-pure" "^7.18.6"
-
"@babel/helper-environment-visitor" "^7.18.9"
-
"@babel/helper-function-name" "^7.21.0"
-
"@babel/helper-member-expression-to-functions" "^7.21.0"
-
"@babel/helper-optimise-call-expression" "^7.18.6"
-
"@babel/helper-replace-supers" "^7.20.7"
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
-
"@babel/helper-split-export-declaration" "^7.18.6"
-
-
"@babel/helper-environment-visitor@^7.18.9":
-
version "7.18.9"
-
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
-
integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
-
-
"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.21.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4"
-
integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==
-
dependencies:
-
"@babel/template" "^7.20.7"
-
"@babel/types" "^7.21.0"
-
-
"@babel/helper-hoist-variables@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
-
integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
-
dependencies:
-
"@babel/types" "^7.18.6"
-
-
"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5"
-
integrity sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==
-
dependencies:
-
"@babel/types" "^7.21.0"
-
-
"@babel/helper-module-imports@^7.18.6":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af"
-
integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==
-
dependencies:
-
"@babel/types" "^7.21.4"
-
-
"@babel/helper-module-transforms@^7.21.2":
-
version "7.21.2"
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2"
-
integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==
-
dependencies:
-
"@babel/helper-environment-visitor" "^7.18.9"
-
"@babel/helper-module-imports" "^7.18.6"
-
"@babel/helper-simple-access" "^7.20.2"
-
"@babel/helper-split-export-declaration" "^7.18.6"
-
"@babel/helper-validator-identifier" "^7.19.1"
-
"@babel/template" "^7.20.7"
-
"@babel/traverse" "^7.21.2"
-
"@babel/types" "^7.21.2"
-
-
"@babel/helper-optimise-call-expression@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
-
integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
-
dependencies:
-
"@babel/types" "^7.18.6"
-
-
"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0":
-
version "7.20.2"
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
-
integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
-
-
"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
-
integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
-
dependencies:
-
"@babel/helper-environment-visitor" "^7.18.9"
-
"@babel/helper-member-expression-to-functions" "^7.20.7"
-
"@babel/helper-optimise-call-expression" "^7.18.6"
-
"@babel/template" "^7.20.7"
-
"@babel/traverse" "^7.20.7"
-
"@babel/types" "^7.20.7"
-
-
"@babel/helper-simple-access@^7.20.2":
-
version "7.20.2"
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
-
integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
-
dependencies:
-
"@babel/types" "^7.20.2"
-
-
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
-
version "7.20.0"
-
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
-
integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
-
dependencies:
-
"@babel/types" "^7.20.0"
-
-
"@babel/helper-split-export-declaration@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
-
integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
-
dependencies:
-
"@babel/types" "^7.18.6"
-
-
"@babel/helper-string-parser@^7.19.4":
-
version "7.19.4"
-
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
-
integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-
-
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
-
version "7.19.1"
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
-
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-
-
"@babel/helper-validator-option@^7.21.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
-
integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==
-
-
"@babel/helpers@^7.21.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e"
-
integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==
-
dependencies:
-
"@babel/template" "^7.20.7"
-
"@babel/traverse" "^7.21.0"
-
"@babel/types" "^7.21.0"
-
-
"@babel/highlight@^7.18.6":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
-
integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
-
dependencies:
-
"@babel/helper-validator-identifier" "^7.18.6"
-
chalk "^2.0.0"
-
js-tokens "^4.0.0"
-
-
"@babel/parser@^7.14.0", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17"
-
integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==
-
-
"@babel/plugin-proposal-class-properties@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
-
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
-
dependencies:
-
"@babel/helper-create-class-features-plugin" "^7.18.6"
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
-
integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
-
dependencies:
-
"@babel/compat-data" "^7.20.5"
-
"@babel/helper-compilation-targets" "^7.20.7"
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
-
"@babel/plugin-transform-parameters" "^7.20.7"
-
-
"@babel/plugin-syntax-class-properties@^7.0.0":
-
version "7.12.13"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
-
integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.12.13"
-
-
"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107"
-
integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2"
-
integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
-
version "7.8.3"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
-
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.8.0"
-
-
"@babel/plugin-transform-arrow-functions@^7.0.0":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551"
-
integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
-
integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-transform-block-scoping@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02"
-
integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-transform-classes@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665"
-
integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==
-
dependencies:
-
"@babel/helper-annotate-as-pure" "^7.18.6"
-
"@babel/helper-compilation-targets" "^7.20.7"
-
"@babel/helper-environment-visitor" "^7.18.9"
-
"@babel/helper-function-name" "^7.21.0"
-
"@babel/helper-optimise-call-expression" "^7.18.6"
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/helper-replace-supers" "^7.20.7"
-
"@babel/helper-split-export-declaration" "^7.18.6"
-
globals "^11.1.0"
-
-
"@babel/plugin-transform-computed-properties@^7.0.0":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa"
-
integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/template" "^7.20.7"
-
-
"@babel/plugin-transform-destructuring@^7.0.0":
-
version "7.21.3"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401"
-
integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-transform-flow-strip-types@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5"
-
integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/plugin-syntax-flow" "^7.18.6"
-
-
"@babel/plugin-transform-for-of@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz#964108c9988de1a60b4be2354a7d7e245f36e86e"
-
integrity sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-transform-function-name@^7.0.0":
-
version "7.18.9"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
-
integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
-
dependencies:
-
"@babel/helper-compilation-targets" "^7.18.9"
-
"@babel/helper-function-name" "^7.18.9"
-
"@babel/helper-plugin-utils" "^7.18.9"
-
-
"@babel/plugin-transform-literals@^7.0.0":
-
version "7.18.9"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
-
integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.9"
-
-
"@babel/plugin-transform-member-expression-literals@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
-
integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-transform-modules-commonjs@^7.0.0":
-
version "7.21.2"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz#6ff5070e71e3192ef2b7e39820a06fb78e3058e7"
-
integrity sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==
-
dependencies:
-
"@babel/helper-module-transforms" "^7.21.2"
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/helper-simple-access" "^7.20.2"
-
-
"@babel/plugin-transform-object-super@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
-
integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
"@babel/helper-replace-supers" "^7.18.6"
-
-
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7":
-
version "7.21.3"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db"
-
integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
-
"@babel/plugin-transform-property-literals@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
-
integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-transform-react-display-name@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415"
-
integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-transform-react-jsx@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz#656b42c2fdea0a6d8762075d58ef9d4e3c4ab8a2"
-
integrity sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==
-
dependencies:
-
"@babel/helper-annotate-as-pure" "^7.18.6"
-
"@babel/helper-module-imports" "^7.18.6"
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/plugin-syntax-jsx" "^7.18.6"
-
"@babel/types" "^7.21.0"
-
-
"@babel/plugin-transform-shorthand-properties@^7.0.0":
-
version "7.18.6"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
-
integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.6"
-
-
"@babel/plugin-transform-spread@^7.0.0":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
-
integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.20.2"
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
-
-
"@babel/plugin-transform-template-literals@^7.0.0":
-
version "7.18.9"
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
-
integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
-
dependencies:
-
"@babel/helper-plugin-utils" "^7.18.9"
-
-
"@babel/runtime@^7.0.0":
-
version "7.21.0"
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
-
integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
-
dependencies:
-
regenerator-runtime "^0.13.11"
-
-
"@babel/template@^7.20.7":
-
version "7.20.7"
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
-
integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
-
dependencies:
-
"@babel/code-frame" "^7.18.6"
-
"@babel/parser" "^7.20.7"
-
"@babel/types" "^7.20.7"
-
-
"@babel/traverse@^7.14.0", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36"
-
integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==
-
dependencies:
-
"@babel/code-frame" "^7.21.4"
-
"@babel/generator" "^7.21.4"
-
"@babel/helper-environment-visitor" "^7.18.9"
-
"@babel/helper-function-name" "^7.21.0"
-
"@babel/helper-hoist-variables" "^7.18.6"
-
"@babel/helper-split-export-declaration" "^7.18.6"
-
"@babel/parser" "^7.21.4"
-
"@babel/types" "^7.21.4"
-
debug "^4.1.0"
-
globals "^11.1.0"
-
-
"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4":
-
version "7.21.4"
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4"
-
integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==
-
dependencies:
-
"@babel/helper-string-parser" "^7.19.4"
-
"@babel/helper-validator-identifier" "^7.19.1"
-
to-fast-properties "^2.0.0"
-
-
"@graphql-codegen/core@^2.6.8":
-
version "2.6.8"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.6.8.tgz#00c4011e3619ddbc6af5e41b2f254d6f6759556e"
-
integrity sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.1"
-
"@graphql-tools/schema" "^9.0.0"
-
"@graphql-tools/utils" "^9.1.1"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/plugin-helpers@^3.1.1", "@graphql-codegen/plugin-helpers@^3.1.2":
-
version "3.1.2"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz#69a2e91178f478ea6849846ade0a59a844d34389"
-
integrity sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==
-
dependencies:
-
"@graphql-tools/utils" "^9.0.0"
-
change-case-all "1.0.15"
-
common-tags "1.8.2"
-
import-from "4.0.0"
-
lodash "~4.17.0"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/schema-ast@^2.6.1":
-
version "2.6.1"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-2.6.1.tgz#8ba1b38827c034b51ecd3ce88622c2ae6cd3fe1a"
-
integrity sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.2"
-
"@graphql-tools/utils" "^9.0.0"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/typed-document-node@^2.3.10":
-
version "2.3.13"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/typed-document-node/-/typed-document-node-2.3.13.tgz#bbfb8e376d6680e05509b5d13089add74b6ff3fd"
-
integrity sha512-vt1hvBAbYTYUCXblks9KYwR5Ho16hWQljid5xgx77jeVufj5PjnWrOjJfEFKFx17VOM4CKHP8ryoeT4NyjYNWw==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.2"
-
"@graphql-codegen/visitor-plugin-common" "2.13.8"
-
auto-bind "~4.0.0"
-
change-case-all "1.0.15"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/typescript-operations@^2.5.10":
-
version "2.5.13"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz#f286c37f9c023356aacaa983ebd32e9e021a05ca"
-
integrity sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.2"
-
"@graphql-codegen/typescript" "^2.8.8"
-
"@graphql-codegen/visitor-plugin-common" "2.13.8"
-
auto-bind "~4.0.0"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/typescript@^2.8.5", "@graphql-codegen/typescript@^2.8.8":
-
version "2.8.8"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.8.8.tgz#8c3b9153e334db43c65f8f31ced69b4c60d14861"
-
integrity sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.2"
-
"@graphql-codegen/schema-ast" "^2.6.1"
-
"@graphql-codegen/visitor-plugin-common" "2.13.8"
-
auto-bind "~4.0.0"
-
tslib "~2.4.0"
-
-
"@graphql-codegen/visitor-plugin-common@2.13.8":
-
version "2.13.8"
-
resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz#09bc6317b227e5a278f394f4cef0d6c2d1910597"
-
integrity sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==
-
dependencies:
-
"@graphql-codegen/plugin-helpers" "^3.1.2"
-
"@graphql-tools/optimize" "^1.3.0"
-
"@graphql-tools/relay-operation-optimizer" "^6.5.0"
-
"@graphql-tools/utils" "^9.0.0"
-
auto-bind "~4.0.0"
-
change-case-all "1.0.15"
-
dependency-graph "^0.11.0"
-
graphql-tag "^2.11.0"
-
parse-filepath "^1.0.2"
-
tslib "~2.4.0"
-
-
"@graphql-tools/merge@8.4.0":
-
version "8.4.0"
-
resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.4.0.tgz#47fbe5c4b6764276dc35bd19c4e7d3c46d3dc0fc"
-
integrity sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==
-
dependencies:
-
"@graphql-tools/utils" "9.2.1"
-
tslib "^2.4.0"
-
-
"@graphql-tools/optimize@^1.3.0":
-
version "1.3.1"
-
resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.3.1.tgz#29407991478dbbedc3e7deb8c44f46acb4e9278b"
-
integrity sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==
-
dependencies:
-
tslib "^2.4.0"
-
-
"@graphql-tools/relay-operation-optimizer@^6.5.0":
-
version "6.5.17"
-
resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.17.tgz#4e4e2675d696a2a31f106b09ed436c43f7976f37"
-
integrity sha512-hHPEX6ccRF3+9kfVz0A3In//Dej7QrHOLGZEokBmPDMDqn9CS7qUjpjyGzclbOX0tRBtLfuFUZ68ABSac3P1nA==
-
dependencies:
-
"@ardatan/relay-compiler" "12.0.0"
-
"@graphql-tools/utils" "9.2.1"
-
tslib "^2.4.0"
-
-
"@graphql-tools/schema@^9.0.0":
-
version "9.0.17"
-
resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.17.tgz#d731e9899465f88d5b9bf69e607ec465bb88b062"
-
integrity sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==
-
dependencies:
-
"@graphql-tools/merge" "8.4.0"
-
"@graphql-tools/utils" "9.2.1"
-
tslib "^2.4.0"
-
value-or-promise "1.0.12"
-
-
"@graphql-tools/utils@9.2.1", "@graphql-tools/utils@^9.0.0", "@graphql-tools/utils@^9.1.1":
-
version "9.2.1"
-
resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-9.2.1.tgz#1b3df0ef166cfa3eae706e3518b17d5922721c57"
-
integrity sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==
-
dependencies:
-
"@graphql-typed-document-node/core" "^3.1.1"
-
tslib "^2.4.0"
-
-
"@graphql-typed-document-node/core@^3.1.1":
-
version "3.2.0"
-
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
-
integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
-
-
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
-
version "0.3.3"
-
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
-
integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
-
dependencies:
-
"@jridgewell/set-array" "^1.0.1"
-
"@jridgewell/sourcemap-codec" "^1.4.10"
-
"@jridgewell/trace-mapping" "^0.3.9"
-
-
"@jridgewell/resolve-uri@3.1.0":
-
version "3.1.0"
-
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
-
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-
-
"@jridgewell/set-array@^1.0.1":
-
version "1.1.2"
-
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
-
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-
-
"@jridgewell/sourcemap-codec@1.4.14":
-
version "1.4.14"
-
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
-
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-
-
"@jridgewell/sourcemap-codec@^1.4.10":
-
version "1.4.15"
-
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
-
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-
-
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
-
version "0.3.18"
-
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
-
integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
-
dependencies:
-
"@jridgewell/resolve-uri" "3.1.0"
-
"@jridgewell/sourcemap-codec" "1.4.14"
-
-
"@urql/core@^2.6.1":
-
version "2.6.1"
-
resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.6.1.tgz#c10ee972c5e81df6d7bf1e778ef1b5d30e2906e5"
-
integrity sha512-gYrEHy3tViJhwIhauK6MIf2Qp09QTsgNHZRd0n71rS+hF6gdwjspf1oKljl4m25+272cJF7fPjBUGmjaiEr7Kg==
-
dependencies:
-
"@graphql-typed-document-node/core" "^3.1.1"
-
wonka "^4.0.14"
-
-
ansi-regex@^5.0.1:
-
version "5.0.1"
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
-
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-
-
ansi-styles@^3.2.1:
-
version "3.2.1"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
-
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
-
dependencies:
-
color-convert "^1.9.0"
-
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
-
version "4.3.0"
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
-
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
-
dependencies:
-
color-convert "^2.0.1"
-
-
asap@~2.0.3:
-
version "2.0.6"
-
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
-
integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
-
-
auto-bind@~4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb"
-
integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==
-
-
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
-
version "7.0.0-beta.0"
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf"
-
integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==
-
-
babel-preset-fbjs@^3.4.0:
-
version "3.4.0"
-
resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c"
-
integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==
-
dependencies:
-
"@babel/plugin-proposal-class-properties" "^7.0.0"
-
"@babel/plugin-proposal-object-rest-spread" "^7.0.0"
-
"@babel/plugin-syntax-class-properties" "^7.0.0"
-
"@babel/plugin-syntax-flow" "^7.0.0"
-
"@babel/plugin-syntax-jsx" "^7.0.0"
-
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
-
"@babel/plugin-transform-arrow-functions" "^7.0.0"
-
"@babel/plugin-transform-block-scoped-functions" "^7.0.0"
-
"@babel/plugin-transform-block-scoping" "^7.0.0"
-
"@babel/plugin-transform-classes" "^7.0.0"
-
"@babel/plugin-transform-computed-properties" "^7.0.0"
-
"@babel/plugin-transform-destructuring" "^7.0.0"
-
"@babel/plugin-transform-flow-strip-types" "^7.0.0"
-
"@babel/plugin-transform-for-of" "^7.0.0"
-
"@babel/plugin-transform-function-name" "^7.0.0"
-
"@babel/plugin-transform-literals" "^7.0.0"
-
"@babel/plugin-transform-member-expression-literals" "^7.0.0"
-
"@babel/plugin-transform-modules-commonjs" "^7.0.0"
-
"@babel/plugin-transform-object-super" "^7.0.0"
-
"@babel/plugin-transform-parameters" "^7.0.0"
-
"@babel/plugin-transform-property-literals" "^7.0.0"
-
"@babel/plugin-transform-react-display-name" "^7.0.0"
-
"@babel/plugin-transform-react-jsx" "^7.0.0"
-
"@babel/plugin-transform-shorthand-properties" "^7.0.0"
-
"@babel/plugin-transform-spread" "^7.0.0"
-
"@babel/plugin-transform-template-literals" "^7.0.0"
-
babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0"
-
-
balanced-match@^1.0.0:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
-
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-
-
brace-expansion@^1.1.7:
-
version "1.1.11"
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
-
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
-
dependencies:
-
balanced-match "^1.0.0"
-
concat-map "0.0.1"
-
-
browserslist@^4.21.3:
-
version "4.21.5"
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7"
-
integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==
-
dependencies:
-
caniuse-lite "^1.0.30001449"
-
electron-to-chromium "^1.4.284"
-
node-releases "^2.0.8"
-
update-browserslist-db "^1.0.10"
-
-
bser@2.1.1:
-
version "2.1.1"
-
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
-
integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
-
dependencies:
-
node-int64 "^0.4.0"
-
-
camel-case@^4.1.2:
-
version "4.1.2"
-
resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
-
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
-
dependencies:
-
pascal-case "^3.1.2"
-
tslib "^2.0.3"
-
-
camelcase@^5.0.0:
-
version "5.3.1"
-
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
-
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-
caniuse-lite@^1.0.30001449:
-
version "1.0.30001478"
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001478.tgz#0ef8a1cf8b16be47a0f9fc4ecfc952232724b32a"
-
integrity sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw==
-
-
capital-case@^1.0.4:
-
version "1.0.4"
-
resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669"
-
integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==
-
dependencies:
-
no-case "^3.0.4"
-
tslib "^2.0.3"
-
upper-case-first "^2.0.2"
-
-
chalk@^2.0.0:
-
version "2.4.2"
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
-
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
-
dependencies:
-
ansi-styles "^3.2.1"
-
escape-string-regexp "^1.0.5"
-
supports-color "^5.3.0"
-
-
chalk@^4.0.0:
-
version "4.1.2"
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
-
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
-
dependencies:
-
ansi-styles "^4.1.0"
-
supports-color "^7.1.0"
-
-
change-case-all@1.0.15:
-
version "1.0.15"
-
resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.15.tgz#de29393167fc101d646cd76b0ef23e27d09756ad"
-
integrity sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==
-
dependencies:
-
change-case "^4.1.2"
-
is-lower-case "^2.0.2"
-
is-upper-case "^2.0.2"
-
lower-case "^2.0.2"
-
lower-case-first "^2.0.2"
-
sponge-case "^1.0.1"
-
swap-case "^2.0.2"
-
title-case "^3.0.3"
-
upper-case "^2.0.2"
-
upper-case-first "^2.0.2"
-
-
change-case@^4.1.2:
-
version "4.1.2"
-
resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12"
-
integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==
-
dependencies:
-
camel-case "^4.1.2"
-
capital-case "^1.0.4"
-
constant-case "^3.0.4"
-
dot-case "^3.0.4"
-
header-case "^2.0.4"
-
no-case "^3.0.4"
-
param-case "^3.0.4"
-
pascal-case "^3.1.2"
-
path-case "^3.0.4"
-
sentence-case "^3.0.4"
-
snake-case "^3.0.4"
-
tslib "^2.0.3"
-
-
cliui@^6.0.0:
-
version "6.0.0"
-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
-
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
-
dependencies:
-
string-width "^4.2.0"
-
strip-ansi "^6.0.0"
-
wrap-ansi "^6.2.0"
-
-
color-convert@^1.9.0:
-
version "1.9.3"
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
-
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
-
dependencies:
-
color-name "1.1.3"
-
-
color-convert@^2.0.1:
-
version "2.0.1"
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
-
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
-
dependencies:
-
color-name "~1.1.4"
-
-
color-name@1.1.3:
-
version "1.1.3"
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
-
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
-
color-name@~1.1.4:
-
version "1.1.4"
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
-
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-
-
common-tags@1.8.2:
-
version "1.8.2"
-
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6"
-
integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==
-
-
concat-map@0.0.1:
-
version "0.0.1"
-
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
-
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
-
-
constant-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1"
-
integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==
-
dependencies:
-
no-case "^3.0.4"
-
tslib "^2.0.3"
-
upper-case "^2.0.2"
-
-
convert-source-map@^1.7.0:
-
version "1.9.0"
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
-
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
-
-
cross-fetch@^3.1.5:
-
version "3.1.5"
-
resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f"
-
integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==
-
dependencies:
-
node-fetch "2.6.7"
-
-
debug@^4.1.0:
-
version "4.3.4"
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
-
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
-
dependencies:
-
ms "2.1.2"
-
-
decamelize@^1.2.0:
-
version "1.2.0"
-
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
-
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
-
-
dependency-graph@^0.11.0:
-
version "0.11.0"
-
resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27"
-
integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==
-
-
dot-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
-
integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
-
dependencies:
-
no-case "^3.0.4"
-
tslib "^2.0.3"
-
-
electron-to-chromium@^1.4.284:
-
version "1.4.359"
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.359.tgz#5c4d13cb08032469fcd6bd36457915caa211356b"
-
integrity sha512-OoVcngKCIuNXtZnsYoqlCvr0Cf3NIPzDIgwUfI9bdTFjXCrr79lI0kwQstLPZ7WhCezLlGksZk/BFAzoXC7GDw==
-
-
emoji-regex@^8.0.0:
-
version "8.0.0"
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
-
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-
escalade@^3.1.1:
-
version "3.1.1"
-
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
-
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
-
-
escape-string-regexp@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
-
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
-
-
fb-watchman@^2.0.0:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
-
integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==
-
dependencies:
-
bser "2.1.1"
-
-
fbjs-css-vars@^1.0.0:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8"
-
integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
-
-
fbjs@^3.0.0:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.4.tgz#e1871c6bd3083bac71ff2da868ad5067d37716c6"
-
integrity sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==
-
dependencies:
-
cross-fetch "^3.1.5"
-
fbjs-css-vars "^1.0.0"
-
loose-envify "^1.0.0"
-
object-assign "^4.1.0"
-
promise "^7.1.1"
-
setimmediate "^1.0.5"
-
ua-parser-js "^0.7.30"
-
-
find-up@^4.1.0:
-
version "4.1.0"
-
resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
-
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
-
dependencies:
-
locate-path "^5.0.0"
-
path-exists "^4.0.0"
-
-
fs.realpath@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
-
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-
-
gensync@^1.0.0-beta.2:
-
version "1.0.0-beta.2"
-
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
-
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-
-
get-caller-file@^2.0.1:
-
version "2.0.5"
-
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
-
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-
-
glob@^7.1.1:
-
version "7.2.3"
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
-
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
-
dependencies:
-
fs.realpath "^1.0.0"
-
inflight "^1.0.4"
-
inherits "2"
-
minimatch "^3.1.1"
-
once "^1.3.0"
-
path-is-absolute "^1.0.0"
-
-
globals@^11.1.0:
-
version "11.12.0"
-
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
-
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-
graphql-language-service@^5.0.6:
-
version "5.1.3"
-
resolved "https://registry.yarnpkg.com/graphql-language-service/-/graphql-language-service-5.1.3.tgz#6e2333dca9d739b5c6e545c9758e9f3c70a11324"
-
integrity sha512-01KZLExoF53i8a2Jhgt+nVGsm9O2+jmDdwms4THSxCY+gU9FukF6X4pPLO2Gk7qZ6CVcInM8+IQx/ph4AOTOLA==
-
dependencies:
-
nullthrows "^1.0.0"
-
vscode-languageserver-types "^3.17.1"
-
-
graphql-tag@^2.11.0:
-
version "2.12.6"
-
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1"
-
integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==
-
dependencies:
-
tslib "^2.1.0"
-
-
graphql@^16.5.0:
-
version "16.6.0"
-
resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.6.0.tgz#c2dcffa4649db149f6282af726c8c83f1c7c5fdb"
-
integrity sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==
-
-
has-flag@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
-
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
-
-
has-flag@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
-
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-
-
header-case@^2.0.4:
-
version "2.0.4"
-
resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063"
-
integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==
-
dependencies:
-
capital-case "^1.0.4"
-
tslib "^2.0.3"
-
-
immutable@~3.7.6:
-
version "3.7.6"
-
resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b"
-
integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==
-
-
import-from@4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2"
-
integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==
-
-
inflight@^1.0.4:
-
version "1.0.6"
-
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
-
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
-
dependencies:
-
once "^1.3.0"
-
wrappy "1"
-
-
inherits@2:
-
version "2.0.4"
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
-
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-
invariant@^2.2.4:
-
version "2.2.4"
-
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
-
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
-
dependencies:
-
loose-envify "^1.0.0"
-
-
is-absolute@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576"
-
integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
-
dependencies:
-
is-relative "^1.0.0"
-
is-windows "^1.0.1"
-
-
is-fullwidth-code-point@^3.0.0:
-
version "3.0.0"
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
-
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-
-
is-lower-case@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-2.0.2.tgz#1c0884d3012c841556243483aa5d522f47396d2a"
-
integrity sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==
-
dependencies:
-
tslib "^2.0.3"
-
-
is-relative@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
-
integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
-
dependencies:
-
is-unc-path "^1.0.0"
-
-
is-unc-path@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d"
-
integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
-
dependencies:
-
unc-path-regex "^0.1.2"
-
-
is-upper-case@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-2.0.2.tgz#f1105ced1fe4de906a5f39553e7d3803fd804649"
-
integrity sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==
-
dependencies:
-
tslib "^2.0.3"
-
-
is-windows@^1.0.1:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
-
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
-
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
-
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-
jsesc@^2.5.1:
-
version "2.5.2"
-
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
-
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-
json5@^2.2.2:
-
version "2.2.3"
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
-
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
-
-
locate-path@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
-
integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
-
dependencies:
-
p-locate "^4.1.0"
-
-
lodash@~4.17.0:
-
version "4.17.21"
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
-
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-
-
loose-envify@^1.0.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
-
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
-
dependencies:
-
js-tokens "^3.0.0 || ^4.0.0"
-
-
lower-case-first@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-2.0.2.tgz#64c2324a2250bf7c37c5901e76a5b5309301160b"
-
integrity sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==
-
dependencies:
-
tslib "^2.0.3"
-
-
lower-case@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
-
integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
-
dependencies:
-
tslib "^2.0.3"
-
-
lru-cache@^5.1.1:
-
version "5.1.1"
-
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
-
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
-
dependencies:
-
yallist "^3.0.2"
-
-
map-cache@^0.2.0:
-
version "0.2.2"
-
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
-
integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
-
-
minimatch@^3.1.1:
-
version "3.1.2"
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
-
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
-
dependencies:
-
brace-expansion "^1.1.7"
-
-
ms@2.1.2:
-
version "2.1.2"
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
-
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-
no-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
-
integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
-
dependencies:
-
lower-case "^2.0.2"
-
tslib "^2.0.3"
-
-
node-fetch@2.6.7:
-
version "2.6.7"
-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
-
integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
-
dependencies:
-
whatwg-url "^5.0.0"
-
-
node-fetch@^2.0.0:
-
version "2.6.9"
-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6"
-
integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==
-
dependencies:
-
whatwg-url "^5.0.0"
-
-
node-int64@^0.4.0:
-
version "0.4.0"
-
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
-
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-
-
node-releases@^2.0.8:
-
version "2.0.10"
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f"
-
integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==
-
-
nullthrows@^1.0.0, nullthrows@^1.1.1:
-
version "1.1.1"
-
resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1"
-
integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
-
-
object-assign@^4.1.0:
-
version "4.1.1"
-
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
-
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
-
-
once@^1.3.0:
-
version "1.4.0"
-
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
-
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
-
dependencies:
-
wrappy "1"
-
-
p-limit@^2.2.0:
-
version "2.3.0"
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
-
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
-
dependencies:
-
p-try "^2.0.0"
-
-
p-locate@^4.1.0:
-
version "4.1.0"
-
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
-
integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
-
dependencies:
-
p-limit "^2.2.0"
-
-
p-try@^2.0.0:
-
version "2.2.0"
-
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
-
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-
param-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
-
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
-
dependencies:
-
dot-case "^3.0.4"
-
tslib "^2.0.3"
-
-
parse-filepath@^1.0.2:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
-
integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==
-
dependencies:
-
is-absolute "^1.0.0"
-
map-cache "^0.2.0"
-
path-root "^0.1.1"
-
-
pascal-case@^3.1.2:
-
version "3.1.2"
-
resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
-
integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
-
dependencies:
-
no-case "^3.0.4"
-
tslib "^2.0.3"
-
-
path-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f"
-
integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==
-
dependencies:
-
dot-case "^3.0.4"
-
tslib "^2.0.3"
-
-
path-exists@^4.0.0:
-
version "4.0.0"
-
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
-
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-
-
path-is-absolute@^1.0.0:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
-
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
-
-
path-root-regex@^0.1.0:
-
version "0.1.2"
-
resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
-
integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==
-
-
path-root@^0.1.1:
-
version "0.1.1"
-
resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
-
integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==
-
dependencies:
-
path-root-regex "^0.1.0"
-
-
picocolors@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
-
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
-
-
"plugin@file:..":
-
version "0.1.0"
-
dependencies:
-
"@graphql-codegen/core" "^2.6.8"
-
"@graphql-codegen/typed-document-node" "^2.3.10"
-
"@graphql-codegen/typescript" "^2.8.5"
-
"@graphql-codegen/typescript-operations" "^2.5.10"
-
graphql-language-service "^5.0.6"
-
node-fetch "^2.0.0"
-
-
promise@^7.1.1:
-
version "7.3.1"
-
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
-
integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
-
dependencies:
-
asap "~2.0.3"
-
-
regenerator-runtime@^0.13.11:
-
version "0.13.11"
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
-
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-
-
relay-runtime@12.0.0:
-
version "12.0.0"
-
resolved "https://registry.yarnpkg.com/relay-runtime/-/relay-runtime-12.0.0.tgz#1e039282bdb5e0c1b9a7dc7f6b9a09d4f4ff8237"
-
integrity sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==
-
dependencies:
-
"@babel/runtime" "^7.0.0"
-
fbjs "^3.0.0"
-
invariant "^2.2.4"
-
-
require-directory@^2.1.1:
-
version "2.1.1"
-
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
-
integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
-
-
require-main-filename@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
-
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-
-
semver@^6.3.0:
-
version "6.3.0"
-
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
-
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-
sentence-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f"
-
integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==
-
dependencies:
-
no-case "^3.0.4"
-
tslib "^2.0.3"
-
upper-case-first "^2.0.2"
-
-
set-blocking@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
-
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
-
-
setimmediate@^1.0.5:
-
version "1.0.5"
-
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
-
integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
-
-
signedsource@^1.0.0:
-
version "1.0.0"
-
resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a"
-
integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==
-
-
snake-case@^3.0.4:
-
version "3.0.4"
-
resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c"
-
integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==
-
dependencies:
-
dot-case "^3.0.4"
-
tslib "^2.0.3"
-
-
sponge-case@^1.0.1:
-
version "1.0.1"
-
resolved "https://registry.yarnpkg.com/sponge-case/-/sponge-case-1.0.1.tgz#260833b86453883d974f84854cdb63aecc5aef4c"
-
integrity sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==
-
dependencies:
-
tslib "^2.0.3"
-
-
string-width@^4.1.0, string-width@^4.2.0:
-
version "4.2.3"
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
-
dependencies:
-
emoji-regex "^8.0.0"
-
is-fullwidth-code-point "^3.0.0"
-
strip-ansi "^6.0.1"
-
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
-
version "6.0.1"
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
-
dependencies:
-
ansi-regex "^5.0.1"
-
-
supports-color@^5.3.0:
-
version "5.5.0"
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
-
dependencies:
-
has-flag "^3.0.0"
-
-
supports-color@^7.1.0:
-
version "7.2.0"
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
-
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
-
dependencies:
-
has-flag "^4.0.0"
-
-
swap-case@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-2.0.2.tgz#671aedb3c9c137e2985ef51c51f9e98445bf70d9"
-
integrity sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==
-
dependencies:
-
tslib "^2.0.3"
-
-
title-case@^3.0.3:
-
version "3.0.3"
-
resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982"
-
integrity sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==
-
dependencies:
-
tslib "^2.0.3"
-
-
to-fast-properties@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
-
integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
-
-
tr46@~0.0.3:
-
version "0.0.3"
-
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
-
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
-
-
tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0:
-
version "2.5.0"
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
-
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
-
-
tslib@~2.4.0:
-
version "2.4.1"
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
-
integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
-
-
typescript@^5.0.0:
-
version "5.0.4"
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b"
-
integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==
-
-
ua-parser-js@^0.7.30:
-
version "0.7.35"
-
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.35.tgz#8bda4827be4f0b1dda91699a29499575a1f1d307"
-
integrity sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==
-
-
unc-path-regex@^0.1.2:
-
version "0.1.2"
-
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
-
integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==
-
-
update-browserslist-db@^1.0.10:
-
version "1.0.10"
-
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
-
integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
-
dependencies:
-
escalade "^3.1.1"
-
picocolors "^1.0.0"
-
-
upper-case-first@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324"
-
integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==
-
dependencies:
-
tslib "^2.0.3"
-
-
upper-case@^2.0.2:
-
version "2.0.2"
-
resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a"
-
integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==
-
dependencies:
-
tslib "^2.0.3"
-
-
value-or-promise@1.0.12:
-
version "1.0.12"
-
resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c"
-
integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==
-
-
vscode-languageserver-types@^3.17.1:
-
version "3.17.3"
-
resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz#72d05e47b73be93acb84d6e311b5786390f13f64"
-
integrity sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==
-
-
webidl-conversions@^3.0.0:
-
version "3.0.1"
-
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
-
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
-
-
whatwg-url@^5.0.0:
-
version "5.0.0"
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
-
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
-
dependencies:
-
tr46 "~0.0.3"
-
webidl-conversions "^3.0.0"
-
-
which-module@^2.0.0:
-
version "2.0.0"
-
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
-
integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
-
-
wonka@^4.0.14:
-
version "4.0.15"
-
resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89"
-
integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==
-
-
wrap-ansi@^6.2.0:
-
version "6.2.0"
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
-
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
-
dependencies:
-
ansi-styles "^4.0.0"
-
string-width "^4.1.0"
-
strip-ansi "^6.0.0"
-
-
wrappy@1:
-
version "1.0.2"
-
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
-
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
-
-
y18n@^4.0.0:
-
version "4.0.3"
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
-
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
-
-
yallist@^3.0.2:
-
version "3.1.1"
-
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
-
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-
-
yargs-parser@^18.1.2:
-
version "18.1.3"
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
-
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
-
dependencies:
-
camelcase "^5.0.0"
-
decamelize "^1.2.0"
-
-
yargs@^15.3.1:
-
version "15.4.1"
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
-
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
-
dependencies:
-
cliui "^6.0.0"
-
decamelize "^1.2.0"
-
find-up "^4.1.0"
-
get-caller-file "^2.0.1"
-
require-directory "^2.1.1"
-
require-main-filename "^2.0.0"
-
set-blocking "^2.0.0"
-
string-width "^4.2.0"
-
which-module "^2.0.0"
-
y18n "^4.0.0"
-
yargs-parser "^18.1.2"
+2 -31
package.json
···
{
-
"name": "@0no-co/graphqlsp",
+
"name": "graphqlsp",
"version": "0.2.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"scripts": {
-
"build": "rollup -c ./scripts/build.mjs",
-
"prepare": "husky install",
-
"prepublishOnly": "pnpm build"
+
"prepare": "husky install"
},
-
"repository": {
-
"type": "git",
-
"url": "git+https://github.com/0no-co/GraphQLSP.git"
-
},
-
"keywords": [
-
"GraphQL",
-
"TypeScript",
-
"LSP",
-
"Typed-document-node"
-
],
-
"author": "0no.co <hi@0no.co>",
-
"license": "MIT",
-
"bugs": {
-
"url": "https://github.com/0no-co/GraphQLSP/issues"
-
},
-
"homepage": "https://github.com/0no-co/GraphQLSP#readme",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
···
"@changesets/get-github-info": "^0.5.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
-
"@types/node": "^18.15.11",
-
"@types/node-fetch": "^2.6.3",
"dotenv": "^16.0.3",
-
"graphql": "^16.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"typescript": "^5.0.0"
-
},
-
"dependencies": {
-
"@graphql-codegen/core": "^2.6.8",
-
"@graphql-codegen/typed-document-node": "^2.3.10",
-
"@graphql-codegen/typescript": "^2.8.5",
-
"@graphql-codegen/typescript-operations": "^2.5.10",
-
"graphql-language-service": "^5.0.6",
-
"node-fetch": "^2.0.0"
}
}
+19
packages/example/tsconfig.json
···
+
{
+
"compilerOptions": {
+
"plugins": [
+
{
+
"name": "@0no-co/graphqlsp",
+
"schema": "https://trygql.formidable.dev/graphql/basic-pokedex"
+
}
+
],
+
/* Language and Environment */
+
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
+
/* Modules */
+
"module": "commonjs" /* Specify what module code is generated. */,
+
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
+
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
+
/* Type Checking */
+
"strict": true /* Enable all strict type-checking options. */,
+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
+
}
+
}
+45
packages/graphqlsp/README.md
···
+
# GraphQLSP
+
+
This is a TypeScript LSP Plugin that will recognise documents in your
+
TypeScript code and help you out with hover-information, diagnostics,
+
auto-complete and automatically generating [Typed-Document-nodes](https://the-guild.dev/graphql/codegen/plugins/typescript/typed-document-node)
+
+
## Features
+
+
- Hover information showing the decriptions of fields
+
- Diagnostics for adding fields that don't exist, are deprecated, missmatched argument types, ...
+
- Auto-complete inside your editor for fields
+
- When you save it will generate `typed-document-nodes` for your documents and cast them to the correct type
+
+
## Installation
+
+
```sh
+
npm install -D @0no-co/graphqlsp
+
```
+
+
## Usage
+
+
Go to your `tsconfig.json` and add
+
+
```json
+
{
+
"compilerOptions": {
+
"plugins": [
+
{
+
"name": "@0no-co/graphqlsp",
+
"schema": "./schema.graphql"
+
}
+
]
+
}
+
}
+
```
+
+
now restart your TS-server and you should be good to go
+
+
## Local development
+
+
Run `pnpm i` at the root. Open `packages/example` by running `code packages/example` or if you want to leverage
+
breakpoints do it with the `TSS_DEBUG_BRK=9559` prefix. When you make changes in `packages/graphqlsp` all you need
+
to do is run `pnpm i` in your other editor and restart the `TypeScript server` for the changes to apply.
+
+
> Ensure that both instances of your editor are using the Workspace Version of TypeScript
+58
packages/graphqlsp/package.json
···
+
{
+
"name": "@0no-co/graphqlsp",
+
"version": "0.1.0",
+
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
+
"main": "./dist/index.js",
+
"module": "./dist/index.module.js",
+
"scripts": {
+
"build": "rollup -c ../../scripts/build.mjs",
+
"prepublishOnly": "pnpm build"
+
},
+
"repository": {
+
"type": "git",
+
"url": "git+https://github.com/0no-co/GraphQLSP.git"
+
},
+
"keywords": [
+
"GraphQL",
+
"TypeScript",
+
"LSP",
+
"Typed-document-node"
+
],
+
"author": "0no.co <hi@0no.co>",
+
"license": "MIT",
+
"bugs": {
+
"url": "https://github.com/0no-co/GraphQLSP/issues"
+
},
+
"homepage": "https://github.com/0no-co/GraphQLSP#readme",
+
"prettier": {
+
"singleQuote": true,
+
"arrowParens": "avoid",
+
"trailingComma": "es5"
+
},
+
"lint-staged": {
+
"*.{js,ts,json,md}": "prettier --write"
+
},
+
"devDependencies": {
+
"@changesets/cli": "^2.26.1",
+
"@changesets/get-github-info": "^0.5.2",
+
"@rollup/plugin-terser": "^0.4.1",
+
"@rollup/plugin-typescript": "^11.1.0",
+
"@types/node": "^18.15.11",
+
"@types/node-fetch": "^2.6.3",
+
"dotenv": "^16.0.3",
+
"graphql": "^16.6.0",
+
"husky": "^8.0.3",
+
"lint-staged": "^13.2.1",
+
"prettier": "^2.8.7",
+
"rollup": "^3.20.2",
+
"typescript": "^5.0.0"
+
},
+
"dependencies": {
+
"@graphql-codegen/core": "^2.6.8",
+
"@graphql-codegen/typed-document-node": "^2.3.10",
+
"@graphql-codegen/typescript": "^2.8.5",
+
"@graphql-codegen/typescript-operations": "^2.5.10",
+
"graphql-language-service": "^5.0.6",
+
"node-fetch": "^2.0.0"
+
}
+
}
+199 -266
pnpm-lock.yaml
···
lockfileVersion: '6.0'
-
dependencies:
-
'@graphql-codegen/core':
-
specifier: ^2.6.8
-
version: 2.6.8(graphql@16.5.0)
-
'@graphql-codegen/typed-document-node':
-
specifier: ^2.3.10
-
version: 2.3.10(graphql@16.5.0)
-
'@graphql-codegen/typescript':
-
specifier: ^2.8.5
-
version: 2.8.5(graphql@16.5.0)
-
'@graphql-codegen/typescript-operations':
-
specifier: ^2.5.10
-
version: 2.5.10(graphql@16.5.0)
-
graphql-language-service:
-
specifier: ^5.0.6
-
version: 5.0.6(graphql@16.5.0)
-
node-fetch:
-
specifier: ^2.0.0
-
version: 2.6.7
+
importers:
+
+
.:
+
devDependencies:
+
'@changesets/cli':
+
specifier: ^2.26.1
+
version: 2.26.1
+
'@changesets/get-github-info':
+
specifier: ^0.5.2
+
version: 0.5.2
+
'@rollup/plugin-terser':
+
specifier: ^0.4.1
+
version: 0.4.1(rollup@3.20.2)
+
'@rollup/plugin-typescript':
+
specifier: ^11.1.0
+
version: 11.1.0(rollup@3.20.2)(typescript@5.0.4)
+
dotenv:
+
specifier: ^16.0.3
+
version: 16.0.3
+
husky:
+
specifier: ^8.0.3
+
version: 8.0.3
+
lint-staged:
+
specifier: ^13.2.1
+
version: 13.2.1
+
prettier:
+
specifier: ^2.8.7
+
version: 2.8.7
+
rollup:
+
specifier: ^3.20.2
+
version: 3.20.2
+
typescript:
+
specifier: ^5.0.0
+
version: 5.0.4
+
+
packages/example:
+
dependencies:
+
'@urql/core':
+
specifier: ^3.0.0
+
version: 3.2.2(graphql@16.6.0)
+
graphql:
+
specifier: ^16.6.0
+
version: 16.6.0
+
devDependencies:
+
'@0no-co/graphqlsp':
+
specifier: file:../graphqlsp
+
version: file:packages/graphqlsp(graphql@16.6.0)
+
typescript:
+
specifier: ^5.0.0
+
version: 5.0.4
-
devDependencies:
-
'@changesets/cli':
-
specifier: ^2.26.1
-
version: 2.26.1
-
'@changesets/get-github-info':
-
specifier: ^0.5.2
-
version: 0.5.2
-
'@rollup/plugin-terser':
-
specifier: ^0.4.1
-
version: 0.4.1(rollup@3.20.2)
-
'@rollup/plugin-typescript':
-
specifier: ^11.1.0
-
version: 11.1.0(rollup@3.20.2)(typescript@5.0.4)
-
'@types/node':
-
specifier: ^18.15.11
-
version: 18.15.11
-
'@types/node-fetch':
-
specifier: ^2.6.3
-
version: 2.6.3
-
dotenv:
-
specifier: ^16.0.3
-
version: 16.0.3
-
graphql:
-
specifier: ^16.5.0
-
version: 16.5.0
-
husky:
-
specifier: ^8.0.3
-
version: 8.0.3
-
lint-staged:
-
specifier: ^13.2.1
-
version: 13.2.1
-
prettier:
-
specifier: ^2.8.7
-
version: 2.8.7
-
rollup:
-
specifier: ^3.20.2
-
version: 3.20.2
-
typescript:
-
specifier: ^5.0.0
-
version: 5.0.4
+
packages/graphqlsp:
+
dependencies:
+
'@graphql-codegen/core':
+
specifier: ^2.6.8
+
version: 2.6.8(graphql@16.6.0)
+
'@graphql-codegen/typed-document-node':
+
specifier: ^2.3.10
+
version: 2.3.10(graphql@16.6.0)
+
'@graphql-codegen/typescript':
+
specifier: ^2.8.5
+
version: 2.8.5(graphql@16.6.0)
+
'@graphql-codegen/typescript-operations':
+
specifier: ^2.5.10
+
version: 2.5.10(graphql@16.6.0)
+
graphql-language-service:
+
specifier: ^5.0.6
+
version: 5.0.6(graphql@16.6.0)
+
node-fetch:
+
specifier: ^2.0.0
+
version: 2.6.7
+
devDependencies:
+
'@changesets/cli':
+
specifier: ^2.26.1
+
version: 2.26.1
+
'@changesets/get-github-info':
+
specifier: ^0.5.2
+
version: 0.5.2
+
'@rollup/plugin-terser':
+
specifier: ^0.4.1
+
version: 0.4.1(rollup@3.20.2)
+
'@rollup/plugin-typescript':
+
specifier: ^11.1.0
+
version: 11.1.0(rollup@3.20.2)(typescript@5.0.4)
+
'@types/node':
+
specifier: ^18.15.11
+
version: 18.15.11
+
'@types/node-fetch':
+
specifier: ^2.6.3
+
version: 2.6.3
+
dotenv:
+
specifier: ^16.0.3
+
version: 16.0.3
+
graphql:
+
specifier: ^16.6.0
+
version: 16.6.0
+
husky:
+
specifier: ^8.0.3
+
version: 8.0.3
+
lint-staged:
+
specifier: ^13.2.1
+
version: 13.2.1
+
prettier:
+
specifier: ^2.8.7
+
version: 2.8.7
+
rollup:
+
specifier: ^3.20.2
+
version: 3.20.2
+
typescript:
+
specifier: ^5.0.0
+
version: 5.0.4
packages:
···
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.15
-
dev: false
-
/@ardatan/relay-compiler@12.0.0(graphql@16.5.0):
+
/@ardatan/relay-compiler@12.0.0(graphql@16.6.0):
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==}
hasBin: true
peerDependencies:
···
fb-watchman: 2.0.2
fbjs: 3.0.4
glob: 7.2.3
-
graphql: 16.5.0
+
graphql: 16.6.0
immutable: 3.7.6
invariant: 2.2.4
nullthrows: 1.1.1
···
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
/@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
···
/@babel/compat-data@7.20.5:
resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==}
engines: {node: '>=6.9.0'}
-
dev: false
/@babel/core@7.20.5:
resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==}
···
semver: 6.3.0
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/generator@7.20.5:
resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==}
···
'@babel/types': 7.20.5
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
-
dev: false
/@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.5):
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
···
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
semver: 6.3.0
-
dev: false
/@babel/helper-create-class-features-plugin@7.20.5(@babel/core@7.20.5):
resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==}
···
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
-
dev: false
/@babel/helper-function-name@7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
···
dependencies:
'@babel/template': 7.18.10
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-member-expression-to-functions@7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-module-transforms@7.20.2:
resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==}
···
'@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
-
dev: false
/@babel/helper-replace-supers@7.19.1:
resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
···
'@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/helper-simple-access@7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
-
dev: false
/@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
···
/@babel/helper-validator-option@7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
-
dev: false
/@babel/helpers@7.20.6:
resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==}
···
'@babel/types': 7.20.5
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
···
hasBin: true
dependencies:
'@babel/types': 7.20.5
-
dev: false
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
···
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.20.5):
resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==}
···
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.5)
'@babel/plugin-transform-parameters': 7.20.5(@babel/core@7.20.5)
-
dev: false
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-block-scoping@7.20.5(@babel/core@7.20.5):
resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-classes@7.20.2(@babel/core@7.20.5):
resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==}
···
globals: 11.12.0
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-destructuring@7.20.2(@babel/core@7.20.5):
resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.20.5):
resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
···
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.20.5)
-
dev: false
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.5):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
···
'@babel/helper-compilation-targets': 7.20.0(@babel/core@7.20.5)
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.20.5):
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
···
'@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
···
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/plugin-transform-parameters@7.20.5(@babel/core@7.20.5):
resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.5):
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
···
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.5)
'@babel/types': 7.20.5
-
dev: false
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.20.5):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
···
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
-
dev: false
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
···
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.20.2
-
dev: false
/@babel/runtime@7.20.6:
resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==}
···
'@babel/code-frame': 7.18.6
'@babel/parser': 7.20.5
'@babel/types': 7.20.5
-
dev: false
/@babel/traverse@7.20.5:
resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
···
globals: 11.12.0
transitivePeerDependencies:
- supports-color
-
dev: false
/@babel/types@7.20.5:
resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
···
'@babel/helper-string-parser': 7.19.4
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
-
dev: false
/@changesets/apply-release-plan@6.1.3:
resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==}
···
prettier: 2.8.7
dev: true
-
/@graphql-codegen/core@2.6.8(graphql@16.5.0):
+
/@graphql-codegen/core@2.6.8(graphql@16.6.0):
resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==}
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': 3.1.1(graphql@16.5.0)
-
'@graphql-tools/schema': 9.0.12(graphql@16.5.0)
-
'@graphql-tools/utils': 9.1.3(graphql@16.5.0)
-
graphql: 16.5.0
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-tools/schema': 9.0.12(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/@graphql-codegen/plugin-helpers@3.1.1(graphql@16.5.0):
+
/@graphql-codegen/plugin-helpers@3.1.1(graphql@16.6.0):
resolution: {integrity: sha512-+V1WK4DUhejVSbkZrAsyv9gA4oQABVrtEUkT7vWq7gSf7Ln6OEM59lDUDsjp5wpLPTBIDJANbAe3qEd+iCB3Ow==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-tools/utils': 8.13.1(graphql@16.5.0)
+
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
change-case-all: 1.0.15
common-tags: 1.8.2
-
graphql: 16.5.0
+
graphql: 16.6.0
import-from: 4.0.0
lodash: 4.17.21
tslib: 2.4.1
-
dev: false
-
/@graphql-codegen/schema-ast@2.6.0(graphql@16.5.0):
+
/@graphql-codegen/schema-ast@2.6.0(graphql@16.6.0):
resolution: {integrity: sha512-6wDVX/mKLXaJ3JwSflRsDJa6/+uEJ0Lg3mOQp3Ao2/jw1mijqAKjYgh1e1rcG+vzXpEmk29TC2ujsqAkKqzgMA==}
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': 3.1.1(graphql@16.5.0)
-
'@graphql-tools/utils': 8.13.1(graphql@16.5.0)
-
graphql: 16.5.0
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/@graphql-codegen/typed-document-node@2.3.10(graphql@16.5.0):
+
/@graphql-codegen/typed-document-node@2.3.10(graphql@16.6.0):
resolution: {integrity: sha512-FcEKubvEl2bHZG2N7u0AwioRYQmhBDRb/JXNBoNXjv9hg32juwejbilS9WWxgcxS13nPj14byEPfHs6GDrKZLw==}
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': 3.1.1(graphql@16.5.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.5.0)
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
-
/@graphql-codegen/typescript-operations@2.5.10(graphql@16.5.0):
+
/@graphql-codegen/typescript-operations@2.5.10(graphql@16.6.0):
resolution: {integrity: sha512-N5H7JhcMRzjM2KdvCitqkOd4hphzD9q3NVWGLvBe3Xgqx5Cs3Y4GUcCJbRolSXdQcYBVgZpLZrUe/qoxwYyfeg==}
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': 3.1.1(graphql@16.5.0)
-
'@graphql-codegen/typescript': 2.8.5(graphql@16.5.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.5.0)
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-codegen/typescript': 2.8.5(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
auto-bind: 4.0.0
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
-
/@graphql-codegen/typescript@2.8.5(graphql@16.5.0):
+
/@graphql-codegen/typescript@2.8.5(graphql@16.6.0):
resolution: {integrity: sha512-5w3zNlnNKM9tI5ZRbhESmsJ4G16rSiFmNQX6Ot56fmcYUC6bnAt5fqvSqs2C+8fVGIIjeWuwjQA5Xn1VkaLY8A==}
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.5.0)
-
'@graphql-codegen/schema-ast': 2.6.0(graphql@16.5.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.5.0)
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-codegen/schema-ast': 2.6.0(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
auto-bind: 4.0.0
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
-
/@graphql-codegen/visitor-plugin-common@2.13.5(graphql@16.5.0):
+
/@graphql-codegen/visitor-plugin-common@2.13.5(graphql@16.6.0):
resolution: {integrity: sha512-OV/mGnSvB/WkEqFu/3bPkAPDNRGRB3xONww5+06CObl383yGrasqM04shYYK4cpcCn9PVWFe8u0SLSEeGmMVrg==}
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': 3.1.1(graphql@16.5.0)
-
'@graphql-tools/optimize': 1.3.1(graphql@16.5.0)
-
'@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.5.0)
-
'@graphql-tools/utils': 8.13.1(graphql@16.5.0)
+
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+
'@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.6.0)
+
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
-
graphql: 16.5.0
-
graphql-tag: 2.12.6(graphql@16.5.0)
+
graphql: 16.6.0
+
graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
-
/@graphql-tools/merge@8.3.14(graphql@16.5.0):
+
/@graphql-tools/merge@8.3.14(graphql@16.6.0):
resolution: {integrity: sha512-zV0MU1DnxJLIB0wpL4N3u21agEiYFsjm6DI130jqHpwF0pR9HkF+Ni65BNfts4zQelP0GjkHltG+opaozAJ1NA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
'@graphql-tools/utils': 9.1.3(graphql@16.5.0)
-
graphql: 16.5.0
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/@graphql-tools/optimize@1.3.1(graphql@16.5.0):
+
/@graphql-tools/optimize@1.3.1(graphql@16.6.0):
resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/@graphql-tools/relay-operation-optimizer@6.5.14(graphql@16.5.0):
+
/@graphql-tools/relay-operation-optimizer@6.5.14(graphql@16.6.0):
resolution: {integrity: sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
'@ardatan/relay-compiler': 12.0.0(graphql@16.5.0)
-
'@graphql-tools/utils': 9.1.3(graphql@16.5.0)
-
graphql: 16.5.0
+
'@ardatan/relay-compiler': 12.0.0(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
+
graphql: 16.6.0
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
-
dev: false
-
/@graphql-tools/schema@9.0.12(graphql@16.5.0):
+
/@graphql-tools/schema@9.0.12(graphql@16.6.0):
resolution: {integrity: sha512-DmezcEltQai0V1y96nwm0Kg11FDS/INEFekD4nnVgzBqawvznWqK6D6bujn+cw6kivoIr3Uq//QmU/hBlBzUlQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
'@graphql-tools/merge': 8.3.14(graphql@16.5.0)
-
'@graphql-tools/utils': 9.1.3(graphql@16.5.0)
-
graphql: 16.5.0
+
'@graphql-tools/merge': 8.3.14(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
+
graphql: 16.6.0
tslib: 2.4.1
value-or-promise: 1.0.11
-
dev: false
-
/@graphql-tools/utils@8.13.1(graphql@16.5.0):
+
/@graphql-tools/utils@8.13.1(graphql@16.6.0):
resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/@graphql-tools/utils@9.1.3(graphql@16.5.0):
+
/@graphql-tools/utils@9.1.3(graphql@16.6.0):
resolution: {integrity: sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
-
graphql: 16.5.0
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
/@jridgewell/gen-mapping@0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
···
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
-
dev: false
/@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
···
/@types/semver@6.2.3:
resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==}
dev: true
+
+
/@urql/core@3.2.2(graphql@16.6.0):
+
resolution: {integrity: sha512-i046Cz8cZ4xIzGMTyHZrbdgzcFMcKD7+yhCAH5FwWBRjcKrc+RjEOuR9X5AMuBvr8c6IAaE92xAqa4wmlGfWTQ==}
+
peerDependencies:
+
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+
dependencies:
+
graphql: 16.6.0
+
wonka: 6.3.1
+
dev: false
/acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
···
/asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
-
dev: false
/astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
···
/auto-bind@4.0.0:
resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==}
engines: {node: '>=8'}
-
dev: false
/available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
···
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
-
dev: false
/babel-preset-fbjs@3.4.0(@babel/core@7.20.5):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
···
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
-
dev: false
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
-
dev: false
/better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
···
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
-
dev: false
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
···
electron-to-chromium: 1.4.284
node-releases: 2.0.6
update-browserslist-db: 1.0.10(browserslist@4.21.4)
-
dev: false
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
node-int64: 0.4.0
-
dev: false
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
···
dependencies:
pascal-case: 3.1.2
tslib: 2.4.1
-
dev: false
/camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
···
/caniuse-lite@1.0.30001436:
resolution: {integrity: sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==}
-
dev: false
/capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
···
no-case: 3.0.4
tslib: 2.4.1
upper-case-first: 2.0.2
-
dev: false
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
···
title-case: 3.0.3
upper-case: 2.0.2
upper-case-first: 2.0.2
-
dev: false
/change-case@4.1.2:
resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==}
···
sentence-case: 3.0.4
snake-case: 3.0.4
tslib: 2.4.1
-
dev: false
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
···
/common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
-
dev: false
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
-
dev: false
/constant-case@3.0.4:
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
···
no-case: 3.0.4
tslib: 2.4.1
upper-case: 2.0.2
-
dev: false
/convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
-
dev: false
/cross-fetch@3.1.5:
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
···
node-fetch: 2.6.7
transitivePeerDependencies:
- encoding
-
dev: false
/cross-spawn@5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
···
/dependency-graph@0.11.0:
resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
engines: {node: '>= 0.6.0'}
-
dev: false
/detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
···
dependencies:
no-case: 3.0.4
tslib: 2.4.1
-
dev: false
/dotenv@16.0.3:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
···
/electron-to-chromium@1.4.284:
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
-
dev: false
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
···
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
-
dev: false
/fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
-
dev: false
/fbjs@3.0.4:
resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==}
···
ua-parser-js: 0.7.32
transitivePeerDependencies:
- encoding
-
dev: false
/fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
···
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
-
dev: false
/fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
···
/gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
-
dev: false
/get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
···
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
-
dev: false
/globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
-
dev: false
/globalthis@1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
···
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
-
/graphql-language-service@5.0.6(graphql@16.5.0):
+
/graphql-language-service@5.0.6(graphql@16.6.0):
resolution: {integrity: sha512-FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg==}
hasBin: true
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
dependencies:
-
graphql: 16.5.0
+
graphql: 16.6.0
nullthrows: 1.1.1
vscode-languageserver-types: 3.17.2
-
dev: false
-
/graphql-tag@2.12.6(graphql@16.5.0):
+
/graphql-tag@2.12.6(graphql@16.6.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.5.0
+
graphql: 16.6.0
tslib: 2.4.1
-
dev: false
-
/graphql@16.5.0:
-
resolution: {integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==}
+
/graphql@16.6.0:
+
resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
/hard-rejection@2.1.0:
···
dependencies:
capital-case: 1.0.4
tslib: 2.4.1
-
dev: false
/hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
···
/immutable@3.7.6:
resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==}
engines: {node: '>=0.8.0'}
-
dev: false
/import-from@4.0.0:
resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==}
engines: {node: '>=12.2'}
-
dev: false
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
···
dependencies:
once: 1.4.0
wrappy: 1.0.2
-
dev: false
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
-
dev: false
/internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
···
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
-
dev: false
/is-absolute@1.0.0:
resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
···
dependencies:
is-relative: 1.0.0
is-windows: 1.0.2
-
dev: false
/is-array-buffer@3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
···
resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
dependencies:
tslib: 2.4.1
-
dev: false
/is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
···
engines: {node: '>=0.10.0'}
dependencies:
is-unc-path: 1.0.0
-
dev: false
/is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
···
engines: {node: '>=0.10.0'}
dependencies:
unc-path-regex: 0.1.2
-
dev: false
/is-upper-case@2.0.2:
resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==}
dependencies:
tslib: 2.4.1
-
dev: false
/is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
···
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
-
dev: false
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
···
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
engines: {node: '>=6'}
hasBin: true
-
dev: false
/jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
···
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
-
dev: false
/log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
···
hasBin: true
dependencies:
js-tokens: 4.0.0
-
dev: false
/lower-case-first@2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
tslib: 2.4.1
-
dev: false
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.4.1
-
dev: false
/lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
···
/map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
-
dev: false
/map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
···
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
-
dev: false
/minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
···
dependencies:
lower-case: 2.0.2
tslib: 2.4.1
-
dev: false
/node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
···
/node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
-
dev: false
/node-releases@2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
-
dev: false
/normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
···
/nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
-
dev: false
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
-
dev: false
/object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
···
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
-
dev: false
/onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
···
dependencies:
dot-case: 3.0.4
tslib: 2.4.1
-
dev: false
/parse-filepath@1.0.2:
resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
···
is-absolute: 1.0.0
map-cache: 0.2.2
path-root: 0.1.1
-
dev: false
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
···
dependencies:
no-case: 3.0.4
tslib: 2.4.1
-
dev: false
/path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
dot-case: 3.0.4
tslib: 2.4.1
-
dev: false
/path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
···
/path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
-
dev: false
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
···
/path-root-regex@0.1.2:
resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
engines: {node: '>=0.10.0'}
-
dev: false
/path-root@0.1.1:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
dependencies:
path-root-regex: 0.1.2
-
dev: false
/path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
···
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
-
dev: false
/picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
···
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
asap: 2.0.6
-
dev: false
/pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
···
invariant: 2.2.4
transitivePeerDependencies:
- encoding
-
dev: false
/require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
···
/semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
-
dev: false
/sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
···
no-case: 3.0.4
tslib: 2.4.1
upper-case-first: 2.0.2
-
dev: false
/serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
···
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
-
dev: false
/shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
···
/signedsource@1.0.0:
resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==}
-
dev: false
/slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
···
dependencies:
dot-case: 3.0.4
tslib: 2.4.1
-
dev: false
/source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
···
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
dependencies:
tslib: 2.4.1
-
dev: false
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
···
resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
dependencies:
tslib: 2.4.1
-
dev: false
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
···
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
tslib: 2.4.1
-
dev: false
/tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
···
/to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
-
dev: false
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
···
/ua-parser-js@0.7.32:
resolution: {integrity: sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==}
-
dev: false
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
···
/unc-path-regex@0.1.2:
resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
engines: {node: '>=0.10.0'}
-
dev: false
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
···
browserslist: 4.21.4
escalade: 3.1.1
picocolors: 1.0.0
-
dev: false
/upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
tslib: 2.4.1
-
dev: false
/upper-case@2.0.2:
resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
dependencies:
tslib: 2.4.1
-
dev: false
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
···
/value-or-promise@1.0.11:
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
engines: {node: '>=12'}
-
dev: false
/vscode-languageserver-types@3.17.2:
resolution: {integrity: sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==}
-
dev: false
/wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
···
isexe: 2.0.0
dev: true
+
/wonka@6.3.1:
+
resolution: {integrity: sha512-nJyGPcjuBiaLFn8QAlrHd+QjV9AlPO7snOWAhgx6aX0nQLMV6Wi0nqfrkmsXIH0efngbDOroOz2QyLnZMF16Hw==}
+
dev: false
+
/wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
···
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
-
dev: false
/y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
···
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
dev: true
+
+
file:packages/graphqlsp(graphql@16.6.0):
+
resolution: {directory: packages/graphqlsp, type: directory}
+
id: file:packages/graphqlsp
+
name: '@0no-co/graphqlsp'
+
version: 0.1.0
+
dependencies:
+
'@graphql-codegen/core': 2.6.8(graphql@16.6.0)
+
'@graphql-codegen/typed-document-node': 2.3.10(graphql@16.6.0)
+
'@graphql-codegen/typescript': 2.8.5(graphql@16.6.0)
+
'@graphql-codegen/typescript-operations': 2.5.10(graphql@16.6.0)
+
graphql-language-service: 5.0.6(graphql@16.6.0)
+
node-fetch: 2.6.7
+
transitivePeerDependencies:
+
- encoding
+
- graphql
+
- supports-color
+
dev: true
+2
pnpm-workspace.yaml
···
+
packages:
+
- 'packages/*'
src/cursor.ts packages/graphqlsp/src/cursor.ts
src/getSchema.ts packages/graphqlsp/src/getSchema.ts
+4 -8
src/index.ts packages/graphqlsp/src/index.ts
···
kindModifiers: 'declare',
sortText: suggestion.sortText || '0',
labelDetails: {
-
detail:
-
suggestion.documentation ||
-
suggestion.labelDetails?.detail ||
-
suggestion.type?.toString(),
-
description:
-
suggestion.labelDetails?.description ||
-
suggestion.documentation,
+
detail: suggestion.type
+
? ' ' + suggestion.type?.toString()
+
: undefined,
+
description: suggestion.documentation,
},
})),
...spreadSuggestions.map(suggestion => ({
···
kindModifiers: 'declare',
sortText: '0',
labelDetails: {
-
detail: suggestion.documentation,
description: suggestion.documentation,
},
})),
src/resolve.ts packages/graphqlsp/src/resolve.ts
src/token.ts packages/graphqlsp/src/token.ts
src/types/generate.ts packages/graphqlsp/src/types/generate.ts
src/utils.ts packages/graphqlsp/src/utils.ts
tsconfig.json packages/graphqlsp/tsconfig.json