Setup e2e package with app template
This commit is contained in:
parent
74174c4763
commit
7ab001ecd6
17 changed files with 125391 additions and 177 deletions
4
packages/e2e/.eslintrc
Normal file
4
packages/e2e/.eslintrc
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"root": true,
|
||||
"extends": ["saleor"]
|
||||
}
|
20
packages/e2e/.graphqlrc.yml
Normal file
20
packages/e2e/.graphqlrc.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
schema: graphql/schema.graphql
|
||||
documents: [graphql/**/*.graphql, src/**/*.ts, src/**/*.tsx]
|
||||
extensions:
|
||||
codegen:
|
||||
overwrite: true
|
||||
generates:
|
||||
generated/graphql.ts:
|
||||
config:
|
||||
dedupeFragments: true
|
||||
plugins:
|
||||
- typescript
|
||||
- typescript-operations
|
||||
- urql-introspection
|
||||
- typescript-urql:
|
||||
documentVariablePrefix: "Untyped"
|
||||
fragmentVariablePrefix: "Untyped"
|
||||
- typed-document-node
|
||||
generated/schema.graphql:
|
||||
plugins:
|
||||
- schema-ast
|
72846
packages/e2e/generated/graphql.ts
Normal file
72846
packages/e2e/generated/graphql.ts
Normal file
File diff suppressed because it is too large
Load diff
22579
packages/e2e/generated/schema.graphql
Normal file
22579
packages/e2e/generated/schema.graphql
Normal file
File diff suppressed because it is too large
Load diff
0
packages/e2e/graphql/fragments/.gitkeep
Normal file
0
packages/e2e/graphql/fragments/.gitkeep
Normal file
0
packages/e2e/graphql/mutations/.gitkeep
Normal file
0
packages/e2e/graphql/mutations/.gitkeep
Normal file
5
packages/e2e/graphql/mutations/Authorize.graphql
Normal file
5
packages/e2e/graphql/mutations/Authorize.graphql
Normal file
|
@ -0,0 +1,5 @@
|
|||
mutation Authorize($email: String!, $password: String!) {
|
||||
tokenCreate(email: $email, password: $password) {
|
||||
token
|
||||
}
|
||||
}
|
10
packages/e2e/graphql/mutations/UninstallApp.graphql
Normal file
10
packages/e2e/graphql/mutations/UninstallApp.graphql
Normal file
|
@ -0,0 +1,10 @@
|
|||
mutation UninstallApp($appId: ID!) {
|
||||
appDelete(id: $appId) {
|
||||
app {
|
||||
id
|
||||
}
|
||||
errors {
|
||||
message
|
||||
}
|
||||
}
|
||||
}
|
0
packages/e2e/graphql/queries/.gitkeep
Normal file
0
packages/e2e/graphql/queries/.gitkeep
Normal file
10
packages/e2e/graphql/queries/FetchAllApps.graphql
Normal file
10
packages/e2e/graphql/queries/FetchAllApps.graphql
Normal file
|
@ -0,0 +1,10 @@
|
|||
query FetchAllApps {
|
||||
apps {
|
||||
edges {
|
||||
node {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
9
packages/e2e/graphql/queries/FetchAppDetails.graphql
Normal file
9
packages/e2e/graphql/queries/FetchAppDetails.graphql
Normal file
|
@ -0,0 +1,9 @@
|
|||
query FetchAppDetails {
|
||||
app {
|
||||
id
|
||||
privateMetadata {
|
||||
key
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
29625
packages/e2e/graphql/schema.graphql
Normal file
29625
packages/e2e/graphql/schema.graphql
Normal file
File diff suppressed because it is too large
Load diff
0
packages/e2e/graphql/subscriptions/.gitkeep
Normal file
0
packages/e2e/graphql/subscriptions/.gitkeep
Normal file
43
packages/e2e/package.json
Normal file
43
packages/e2e/package.json
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "saleor-app-template",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
"build": "pnpm generate && next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint",
|
||||
"fetch-schema": "curl https://raw.githubusercontent.com/saleor/saleor/${npm_package_saleor_schemaVersion}/saleor/graphql/schema.graphql > graphql/schema.graphql",
|
||||
"generate": "graphql-codegen",
|
||||
"test": "vitest"
|
||||
},
|
||||
"saleor": {
|
||||
"schemaVersion": "3.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"@urql/exchange-auth": "^1.0.0",
|
||||
"@vitejs/plugin-react": "^3.0.1",
|
||||
"graphql": "^16.6.0",
|
||||
"graphql-tag": "^2.12.6",
|
||||
"jsdom": "^20.0.3",
|
||||
"urql": "^3.0.3",
|
||||
"vite": "^4.0.4",
|
||||
"vitest": "^0.27.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@graphql-codegen/cli": "2.13.3",
|
||||
"@graphql-codegen/introspection": "2.2.1",
|
||||
"@graphql-codegen/typed-document-node": "^2.3.3",
|
||||
"@graphql-codegen/typescript": "2.7.3",
|
||||
"@graphql-codegen/typescript-operations": "2.5.3",
|
||||
"@graphql-codegen/typescript-urql": "^3.7.0",
|
||||
"@graphql-codegen/urql-introspection": "2.2.1",
|
||||
"@graphql-typed-document-node/core": "^3.1.1",
|
||||
"@testing-library/react": "^13.4.0",
|
||||
"@testing-library/react-hooks": "^8.0.1",
|
||||
"@types/node": "^18.11.18",
|
||||
"eslint": "8.31.0",
|
||||
"typescript": "4.9.4",
|
||||
"eslint-config-saleor": "workspace:*"
|
||||
}
|
||||
}
|
20
packages/e2e/tsconfig.json
Normal file
20
packages/e2e/tsconfig.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
13
packages/e2e/vitest.config.ts
Normal file
13
packages/e2e/vitest.config.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import react from "@vitejs/plugin-react";
|
||||
import { defineConfig } from "vitest/config";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
test: {
|
||||
passWithNoTests: true,
|
||||
environment: "jsdom",
|
||||
setupFiles: "./src/setup-tests.ts",
|
||||
css: false,
|
||||
},
|
||||
});
|
384
pnpm-lock.yaml
384
pnpm-lock.yaml
|
@ -1612,6 +1612,76 @@ importers:
|
|||
specifier: 4.8.4
|
||||
version: 4.8.4
|
||||
|
||||
packages/e2e:
|
||||
dependencies:
|
||||
'@urql/exchange-auth':
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.0(graphql@16.6.0)
|
||||
'@vitejs/plugin-react':
|
||||
specifier: ^3.0.1
|
||||
version: 3.1.0(vite@4.1.4)
|
||||
graphql:
|
||||
specifier: ^16.6.0
|
||||
version: 16.6.0
|
||||
graphql-tag:
|
||||
specifier: ^2.12.6
|
||||
version: 2.12.6(graphql@16.6.0)
|
||||
jsdom:
|
||||
specifier: ^20.0.3
|
||||
version: 20.0.3
|
||||
urql:
|
||||
specifier: ^3.0.3
|
||||
version: 3.0.3(graphql@16.6.0)(react@18.2.0)
|
||||
vite:
|
||||
specifier: ^4.0.4
|
||||
version: 4.1.4(@types/node@18.13.0)
|
||||
vitest:
|
||||
specifier: ^0.27.1
|
||||
version: 0.27.3(jsdom@20.0.3)
|
||||
devDependencies:
|
||||
'@graphql-codegen/cli':
|
||||
specifier: 2.13.3
|
||||
version: 2.13.3(@babel/core@7.21.4)(@types/node@18.13.0)(graphql@16.6.0)
|
||||
'@graphql-codegen/introspection':
|
||||
specifier: 2.2.1
|
||||
version: 2.2.1(graphql@16.6.0)
|
||||
'@graphql-codegen/typed-document-node':
|
||||
specifier: ^2.3.3
|
||||
version: 2.3.13(graphql@16.6.0)
|
||||
'@graphql-codegen/typescript':
|
||||
specifier: 2.7.3
|
||||
version: 2.7.3(graphql@16.6.0)
|
||||
'@graphql-codegen/typescript-operations':
|
||||
specifier: 2.5.3
|
||||
version: 2.5.3(graphql@16.6.0)
|
||||
'@graphql-codegen/typescript-urql':
|
||||
specifier: ^3.7.0
|
||||
version: 3.7.3(graphql-tag@2.12.6)(graphql@16.6.0)
|
||||
'@graphql-codegen/urql-introspection':
|
||||
specifier: 2.2.1
|
||||
version: 2.2.1(graphql@16.6.0)
|
||||
'@graphql-typed-document-node/core':
|
||||
specifier: ^3.1.1
|
||||
version: 3.2.0(graphql@16.6.0)
|
||||
'@testing-library/react':
|
||||
specifier: ^13.4.0
|
||||
version: 13.4.0(react-dom@18.2.0)(react@18.2.0)
|
||||
'@testing-library/react-hooks':
|
||||
specifier: ^8.0.1
|
||||
version: 8.0.1(@types/react@18.0.27)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@types/node':
|
||||
specifier: ^18.11.18
|
||||
version: 18.13.0
|
||||
eslint:
|
||||
specifier: 8.31.0
|
||||
version: 8.31.0
|
||||
eslint-config-saleor:
|
||||
specifier: workspace:*
|
||||
version: link:../eslint-config-saleor
|
||||
typescript:
|
||||
specifier: 4.9.4
|
||||
version: 4.9.4
|
||||
|
||||
packages/eslint-config-saleor:
|
||||
dependencies:
|
||||
'@saleor/app-sdk':
|
||||
|
@ -1806,7 +1876,7 @@ packages:
|
|||
engines: {node: '>=6.0.0'}
|
||||
dependencies:
|
||||
'@jridgewell/gen-mapping': 0.1.1
|
||||
'@jridgewell/trace-mapping': 0.3.17
|
||||
'@jridgewell/trace-mapping': 0.3.18
|
||||
|
||||
/@ampproject/remapping@2.2.1:
|
||||
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
|
||||
|
@ -1821,13 +1891,13 @@ packages:
|
|||
peerDependencies:
|
||||
graphql: '*'
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/generator': 7.20.14
|
||||
'@babel/parser': 7.20.15
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/generator': 7.21.4
|
||||
'@babel/parser': 7.21.4
|
||||
'@babel/runtime': 7.20.13
|
||||
'@babel/traverse': 7.20.13
|
||||
'@babel/types': 7.20.7
|
||||
babel-preset-fbjs: 3.4.0(@babel/core@7.20.12)
|
||||
'@babel/traverse': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
babel-preset-fbjs: 3.4.0(@babel/core@7.21.4)
|
||||
chalk: 4.1.2
|
||||
fb-watchman: 2.0.2
|
||||
fbjs: 3.0.4
|
||||
|
@ -1865,10 +1935,6 @@ packages:
|
|||
dependencies:
|
||||
'@babel/highlight': 7.18.6
|
||||
|
||||
/@babel/compat-data@7.20.14:
|
||||
resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
/@babel/compat-data@7.21.4:
|
||||
resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
@ -1938,7 +2004,7 @@ packages:
|
|||
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.20.12):
|
||||
|
@ -1947,9 +2013,9 @@ packages:
|
|||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.20.14
|
||||
'@babel/compat-data': 7.21.4
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-validator-option': 7.18.6
|
||||
'@babel/helper-validator-option': 7.21.0
|
||||
browserslist: 4.21.5
|
||||
lru-cache: 5.1.1
|
||||
semver: 6.3.0
|
||||
|
@ -1967,16 +2033,16 @@ packages:
|
|||
lru-cache: 5.1.1
|
||||
semver: 6.3.0
|
||||
|
||||
/@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.20.12):
|
||||
/@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-annotate-as-pure': 7.18.6
|
||||
'@babel/helper-environment-visitor': 7.18.9
|
||||
'@babel/helper-function-name': 7.19.0
|
||||
'@babel/helper-function-name': 7.21.0
|
||||
'@babel/helper-member-expression-to-functions': 7.20.7
|
||||
'@babel/helper-optimise-call-expression': 7.18.6
|
||||
'@babel/helper-replace-supers': 7.20.7
|
||||
|
@ -1990,13 +2056,6 @@ packages:
|
|||
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
/@babel/helper-function-name@7.19.0:
|
||||
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/template': 7.20.7
|
||||
'@babel/types': 7.20.7
|
||||
|
||||
/@babel/helper-function-name@7.21.0:
|
||||
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
@ -2008,21 +2067,15 @@ packages:
|
|||
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
|
||||
/@babel/helper-member-expression-to-functions@7.20.7:
|
||||
resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
dev: true
|
||||
|
||||
/@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.7
|
||||
|
||||
/@babel/helper-module-imports@7.21.4:
|
||||
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
@ -2034,13 +2087,13 @@ packages:
|
|||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-environment-visitor': 7.18.9
|
||||
'@babel/helper-module-imports': 7.18.6
|
||||
'@babel/helper-module-imports': 7.21.4
|
||||
'@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.20.13
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/traverse': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -2063,7 +2116,7 @@ packages:
|
|||
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
dev: true
|
||||
|
||||
/@babel/helper-plugin-utils@7.20.2:
|
||||
|
@ -2078,8 +2131,8 @@ packages:
|
|||
'@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.13
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/traverse': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
@ -2088,20 +2141,20 @@ packages:
|
|||
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
|
||||
/@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.7
|
||||
'@babel/types': 7.21.4
|
||||
dev: true
|
||||
|
||||
/@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.7
|
||||
'@babel/types': 7.21.4
|
||||
|
||||
/@babel/helper-string-parser@7.19.4:
|
||||
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
|
||||
|
@ -2111,10 +2164,6 @@ packages:
|
|||
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
/@babel/helper-validator-option@7.18.6:
|
||||
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
/@babel/helper-validator-option@7.21.0:
|
||||
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
@ -2124,8 +2173,8 @@ packages:
|
|||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/template': 7.20.7
|
||||
'@babel/traverse': 7.20.13
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/traverse': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -2152,7 +2201,7 @@ packages:
|
|||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/types': 7.21.4
|
||||
|
||||
/@babel/parser@7.21.4:
|
||||
resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
|
||||
|
@ -2161,49 +2210,49 @@ packages:
|
|||
dependencies:
|
||||
'@babel/types': 7.21.4
|
||||
|
||||
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.20.12)
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.4)
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.20.14
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/compat-data': 7.21.4
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.4)
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12):
|
||||
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
|
@ -2217,16 +2266,6 @@ packages:
|
|||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.12):
|
||||
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
@ -2235,58 +2274,57 @@ packages:
|
|||
dependencies:
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12):
|
||||
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-block-scoping@7.20.15(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-block-scoping@7.20.15(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-classes@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-classes@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-annotate-as-pure': 7.18.6
|
||||
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
|
||||
'@babel/helper-environment-visitor': 7.18.9
|
||||
'@babel/helper-function-name': 7.19.0
|
||||
'@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
|
||||
|
@ -2296,134 +2334,134 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/template': 7.20.7
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.4)
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/helper-function-name': 7.19.0
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
|
||||
'@babel/helper-function-name': 7.21.0
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/helper-module-transforms': 7.20.11
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-module-transforms': 7.21.2
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-simple-access': 7.20.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-replace-supers': 7.20.7
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-parameters@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-parameters@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
|
@ -2445,48 +2483,48 @@ packages:
|
|||
'@babel/core': 7.20.12
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
|
||||
/@babel/plugin-transform-react-jsx@7.20.13(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-react-jsx@7.20.13(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-annotate-as-pure': 7.18.6
|
||||
'@babel/helper-module-imports': 7.18.6
|
||||
'@babel/helper-module-imports': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/types': 7.21.4
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-spread@7.20.7(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.12):
|
||||
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
|
@ -2509,13 +2547,13 @@ packages:
|
|||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@babel/generator': 7.20.14
|
||||
'@babel/generator': 7.21.4
|
||||
'@babel/helper-environment-visitor': 7.18.9
|
||||
'@babel/helper-function-name': 7.19.0
|
||||
'@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.20.15
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/parser': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
debug: 4.3.4
|
||||
globals: 11.12.0
|
||||
transitivePeerDependencies:
|
||||
|
@ -2773,7 +2811,7 @@ packages:
|
|||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/helper-module-imports': 7.18.6
|
||||
'@babel/helper-module-imports': 7.21.4
|
||||
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/runtime': 7.20.13
|
||||
'@emotion/hash': 0.9.0
|
||||
|
@ -3047,7 +3085,7 @@ packages:
|
|||
dependencies:
|
||||
ajv: 6.12.6
|
||||
debug: 4.3.4
|
||||
espree: 9.4.1
|
||||
espree: 9.5.1
|
||||
globals: 13.20.0
|
||||
ignore: 5.2.4
|
||||
import-fresh: 3.3.0
|
||||
|
@ -3894,10 +3932,10 @@ packages:
|
|||
peerDependencies:
|
||||
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
|
||||
dependencies:
|
||||
'@babel/parser': 7.20.15
|
||||
'@babel/parser': 7.21.4
|
||||
'@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.4)
|
||||
'@babel/traverse': 7.20.13
|
||||
'@babel/types': 7.20.7
|
||||
'@babel/traverse': 7.21.4
|
||||
'@babel/types': 7.21.4
|
||||
'@graphql-tools/utils': 9.2.1(graphql@16.6.0)
|
||||
graphql: 16.6.0
|
||||
tslib: 2.5.0
|
||||
|
@ -4245,15 +4283,15 @@ packages:
|
|||
engines: {node: '>=6.0.0'}
|
||||
dependencies:
|
||||
'@jridgewell/set-array': 1.1.2
|
||||
'@jridgewell/sourcemap-codec': 1.4.14
|
||||
'@jridgewell/sourcemap-codec': 1.4.15
|
||||
|
||||
/@jridgewell/gen-mapping@0.3.2:
|
||||
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
dependencies:
|
||||
'@jridgewell/set-array': 1.1.2
|
||||
'@jridgewell/sourcemap-codec': 1.4.14
|
||||
'@jridgewell/trace-mapping': 0.3.17
|
||||
'@jridgewell/sourcemap-codec': 1.4.15
|
||||
'@jridgewell/trace-mapping': 0.3.18
|
||||
|
||||
/@jridgewell/gen-mapping@0.3.3:
|
||||
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
|
||||
|
@ -4277,12 +4315,6 @@ packages:
|
|||
/@jridgewell/sourcemap-codec@1.4.15:
|
||||
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
||||
|
||||
/@jridgewell/trace-mapping@0.3.17:
|
||||
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
|
||||
dependencies:
|
||||
'@jridgewell/resolve-uri': 3.1.0
|
||||
'@jridgewell/sourcemap-codec': 1.4.14
|
||||
|
||||
/@jridgewell/trace-mapping@0.3.18:
|
||||
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
|
||||
dependencies:
|
||||
|
@ -7089,7 +7121,6 @@ packages:
|
|||
vite: 4.1.4(@types/node@18.13.0)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@vitest/coverage-c8@0.28.4(jsdom@20.0.3):
|
||||
resolution: {integrity: sha512-btelLBxaWhHnywXRQxDlrvPhGdnuIaD3XulsxcZRIcnpLPbFu39dNTT0IYu2QWP2ZZrV0AmNtdLIfD4c77zMAg==}
|
||||
|
@ -7740,38 +7771,38 @@ packages:
|
|||
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
|
||||
dev: true
|
||||
|
||||
/babel-preset-fbjs@3.4.0(@babel/core@7.20.12):
|
||||
/babel-preset-fbjs@3.4.0(@babel/core@7.21.4):
|
||||
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/core': 7.20.12
|
||||
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-block-scoping': 7.20.15(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-classes': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-react-jsx': 7.20.13(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-spread': 7.20.7(@babel/core@7.20.12)
|
||||
'@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.20.12)
|
||||
'@babel/core': 7.21.4
|
||||
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4)
|
||||
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-block-scoping': 7.20.15(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-classes': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-react-jsx': 7.20.13(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.4)
|
||||
'@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.4)
|
||||
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -10142,7 +10173,6 @@ packages:
|
|||
acorn: 8.8.2
|
||||
acorn-jsx: 5.3.2(acorn@8.8.2)
|
||||
eslint-visitor-keys: 3.4.0
|
||||
dev: true
|
||||
|
||||
/esprima@4.0.1:
|
||||
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
|
||||
|
@ -16185,7 +16215,7 @@ packages:
|
|||
resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==}
|
||||
engines: {node: '>=10.12.0'}
|
||||
dependencies:
|
||||
'@jridgewell/trace-mapping': 0.3.17
|
||||
'@jridgewell/trace-mapping': 0.3.18
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
convert-source-map: 1.9.0
|
||||
dev: true
|
||||
|
@ -16243,7 +16273,7 @@ packages:
|
|||
picocolors: 1.0.0
|
||||
source-map: 0.6.1
|
||||
source-map-support: 0.5.21
|
||||
vite: 4.1.1(@types/node@18.13.0)
|
||||
vite: 4.1.4(@types/node@18.13.0)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- less
|
||||
|
@ -16266,7 +16296,7 @@ packages:
|
|||
picocolors: 1.0.0
|
||||
source-map: 0.6.1
|
||||
source-map-support: 0.5.21
|
||||
vite: 4.1.1(@types/node@18.13.0)
|
||||
vite: 4.1.4(@types/node@18.13.0)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- less
|
||||
|
@ -16399,7 +16429,7 @@ packages:
|
|||
tinybench: 2.3.1
|
||||
tinypool: 0.3.1
|
||||
tinyspy: 1.1.1
|
||||
vite: 4.1.1(@types/node@18.13.0)
|
||||
vite: 4.1.4(@types/node@18.13.0)
|
||||
transitivePeerDependencies:
|
||||
- less
|
||||
- sass
|
||||
|
@ -16448,7 +16478,7 @@ packages:
|
|||
tinybench: 2.3.1
|
||||
tinypool: 0.3.1
|
||||
tinyspy: 1.1.1
|
||||
vite: 4.1.1(@types/node@18.13.0)
|
||||
vite: 4.1.4(@types/node@18.13.0)
|
||||
vite-node: 0.27.3(@types/node@18.13.0)
|
||||
why-is-node-running: 2.2.2
|
||||
transitivePeerDependencies:
|
||||
|
@ -16504,7 +16534,7 @@ packages:
|
|||
tinybench: 2.3.1
|
||||
tinypool: 0.3.1
|
||||
tinyspy: 1.1.1
|
||||
vite: 4.1.1(@types/node@18.13.0)
|
||||
vite: 4.1.4(@types/node@18.13.0)
|
||||
vite-node: 0.28.4(@types/node@18.13.0)
|
||||
why-is-node-running: 2.2.2
|
||||
transitivePeerDependencies:
|
||||
|
|
Loading…
Reference in a new issue