Compare commits

...

12 Commits

Author SHA1 Message Date
Pilou
61ee739f88 Merge pull request #1053 from nhost/changeset-release/main
chore: update versions
2022-10-19 22:08:50 +02:00
github-actions[bot]
65b7995dda chore: update versions 2022-10-19 20:01:09 +00:00
Pilou
30b23eb7a2 Merge pull request #1052 from nhost/fix/no-initial-auth-error
fix: 🐛 Do not create an authentication error when starting with no refresh token
2022-10-19 21:59:09 +02:00
Pierre-Louis Mercereau
4e083bcf25 refactor: don't use Promise.resolve 2022-10-19 21:44:13 +02:00
Pierre-Louis Mercereau
6b9d163e82 fix: 🐛 No authentication error on start with no token 2022-10-19 21:32:30 +02:00
Pilou
35a6dc6d89 Merge pull request #1046 from nhost/chore/bump-hasura-auth-0.15.0
chore: 🤖 bump auth to 0.15.0 and storage to 0.2.5
2022-10-18 15:04:59 +02:00
Pierre-Louis Mercereau
c80f4a28f8 chore: 🤖 bump auth to 0.15.0 and storage to 0.2.5 2022-10-18 14:06:21 +02:00
Pilou
c03f8d996a Merge pull request #1045 from nhost/docs/custom-claims-json-columns
docs: custom claims limitation on json columns
2022-10-18 13:30:10 +02:00
Pierre-Louis Mercereau
7f3472963f docs: custom claims limitation on json columns 2022-10-18 12:13:08 +02:00
Pilou
e283ed1884 Merge pull request #1044 from nhost/chore/remove-react-auth
chore: 🤖 remove @nhost/react-auth
2022-10-18 11:50:39 +02:00
Pierre-Louis Mercereau
93ad06fcc3 Merge branch 'main' into chore/remove-react-auth 2022-10-18 11:50:08 +02:00
Pierre-Louis Mercereau
182d29bc2c chore: 🤖 remove @nhost/react-auth 2022-10-18 09:43:14 +02:00
40 changed files with 154 additions and 1128 deletions

View File

@@ -66,6 +66,10 @@ auth:
Your custom claim will be automatically prefixed with `x-hasura-`, therefore, the example above results in a custom permission variable named `x-hasura-organisation-id`.
### Limitation on JSON/JSONB columns
JSON columns cannot be used in custom claims, with the exception of the `users.metadata` column.
## Roles
Every GraphQL request is resolved based on a **single role**. Roles are added in the Hasura Console when selecting a table and clicking **Permisisons**.

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -1,4 +1,4 @@
# Docker image versions used in the cloud
hasura: v2.10.1
auth: 0.13.2
storage: 0.2.4
auth: 0.15.0
storage: 0.2.5

View File

@@ -1,5 +1,11 @@
# @nhost/apollo
## 0.5.32
### Patch Changes
- @nhost/nhost-js@1.5.2
## 0.5.31
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/apollo",
"version": "0.5.31",
"version": "0.5.32",
"description": "Nhost Apollo Client library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @nhost/core
## 0.9.1
### Patch Changes
- 6b9d163e: Do not create an authentication error when starting with no refresh token
## 0.9.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/core",
"version": "0.9.0",
"version": "0.9.1",
"description": "Nhost core client library",
"license": "MIT",
"keywords": [

View File

@@ -24,7 +24,6 @@ import {
INVALID_PHONE_NUMBER_ERROR,
NETWORK_ERROR_CODE,
NO_MFA_TICKET_ERROR,
NO_REFRESH_TOKEN,
VALIDATION_ERROR_CODE
} from '../errors'
import { nhostApiClient } from '../hasura-auth'
@@ -133,10 +132,16 @@ export const createAuthMachine = ({
invoke: {
id: 'importRefreshToken',
src: 'importRefreshToken',
onDone: {
actions: ['saveSession', 'reportTokenChanged'],
target: 'signedIn'
},
onDone: [
{
cond: 'hasSession',
actions: ['saveSession', 'reportTokenChanged'],
target: 'signedIn'
},
{
target: 'signedOut'
}
],
onError: [
{
cond: 'shouldRetryImportToken',
@@ -891,13 +896,12 @@ export const createAuthMachine = ({
return { session, error: null }
} catch (exception) {
error = (exception as { error: ErrorPayload }).error
return Promise.reject<NhostSessionResponse>({ error })
}
}
if (!error) {
error = NO_REFRESH_TOKEN
if (error) {
return Promise.reject<NhostSessionResponse>({ error, session: null })
}
return Promise.reject<NhostSessionResponse>({ error })
return { error: null, session: null }
}
},
delays: {

View File

@@ -188,6 +188,7 @@ export interface Typegen0 {
reportSignedOut:
| 'SIGNOUT'
| 'done.invoke.authenticateUserWithPassword'
| 'done.invoke.importRefreshToken'
| 'done.invoke.passwordlessEmail'
| 'done.invoke.passwordlessSms'
| 'done.invoke.signUpEmailPassword'
@@ -296,6 +297,7 @@ export interface Typegen0 {
hasRefreshToken: ''
hasSession:
| 'SESSION_UPDATE'
| 'done.invoke.importRefreshToken'
| 'done.invoke.signUpEmailPassword'
| 'done.invoke.signUpSecurityKey'
isAnonymous: 'SIGNED_IN'

View File

@@ -21,6 +21,37 @@ import fakeUser from './helpers/mocks/user'
import server from './helpers/server'
import CustomClientStorage from './helpers/storage'
describe(`Token refresh behaviour on first start`, () => {
let authMachine: AuthMachine
let authService: InterpreterFrom<AuthMachine>
beforeAll(() => {
server.listen({ onUnhandledRequest: 'error' })
authMachine = createAuthMachine({
backendUrl: BASE_URL,
clientUrl: 'http://localhost:3000',
refreshIntervalTime: 1,
autoSignIn: true
})
authService = interpret(authMachine)
})
afterAll(() => server.close())
afterEach(() => {
server.resetHandlers()
authService.stop()
})
test('should start with the right state when no refresh token is given', async () => {
authService.start()
const state = await waitFor(authService, (state) =>
state.matches({ authentication: { signedOut: 'noErrors' } })
)
expect(state.context.errors).toEqual({})
})
})
describe(`Time based token refresh`, () => {
const initialToken = faker.datatype.uuid()
const initialExpiration = faker.date.future()

View File

@@ -1,5 +1,12 @@
# @nhost/hasura-auth-js
## 1.6.1
### Patch Changes
- Updated dependencies [6b9d163e]
- @nhost/core@0.9.1
## 1.6.0
### Minor Changes

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/hasura-auth-js",
"version": "1.6.0",
"version": "1.6.1",
"description": "Hasura-auth client",
"license": "MIT",
"keywords": [

View File

@@ -1,12 +1,19 @@
# @nhost/hasura-storage-js
## 0.7.1
### Patch Changes
- Updated dependencies [6b9d163e]
- @nhost/core@0.9.1
## 0.7.0
### Patch Changes
- ba785da1: Bump dependencies versions
- Updated dependencies [13c41fe6] [ba785da1] [3ced63ab]
- Updated dependencies
- Updated dependencies
- @nhost/core@0.9.0
## 0.6.2

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/hasura-storage-js",
"version": "0.7.0",
"version": "0.7.1",
"description": "Hasura-storage client",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,14 @@
# @nhost/nextjs
## 1.8.1
### Patch Changes
- Updated dependencies [6b9d163e]
- @nhost/core@0.9.1
- @nhost/react@0.14.1
- @nhost/nhost-js@1.5.2
## 1.8.0
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/nextjs",
"version": "1.8.0",
"version": "1.8.1",
"description": "Nhost NextJS library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @nhost/nhost-js
## 1.5.2
### Patch Changes
- @nhost/hasura-auth-js@1.6.1
- @nhost/hasura-storage-js@0.7.1
## 1.5.1
### Patch Changes

View File

@@ -5,9 +5,9 @@ services:
environment:
hasura_graphql_enable_remote_schema_permissions: false
auth:
image: nhost/hasura-auth:0.13.2
image: nhost/hasura-auth:0.15.0
storage:
image: nhost/hasura-storage:0.2.4
image: nhost/hasura-storage:0.2.5
auth:
access_control:
email:

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/nhost-js",
"version": "1.5.1",
"version": "1.5.2",
"description": "Nhost JavaScript SDK",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @nhost/react-apollo
## 4.8.1
### Patch Changes
- @nhost/react@0.14.1
- @nhost/apollo@0.5.32
## 4.8.0
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/react-apollo",
"version": "4.8.0",
"version": "4.8.1",
"description": "Nhost React Apollo client",
"license": "MIT",
"keywords": [

View File

@@ -1,7 +0,0 @@
module.exports = {
extends: '../../config/.eslintrc.js',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname
}
}

View File

@@ -1,309 +0,0 @@
# @nhost/react-auth
## 3.6.0
### Patch Changes
- ba785da1: Bump dependencies versions
- Updated dependencies [13c41fe6] [ba785da1] [6da44bf8]
- @nhost/hasura-auth-js@1.6.0
- @nhost/react@0.14.0
## 3.5.6
### Patch Changes
- Updated dependencies [739a3c45]
- Updated dependencies [739a3c45]
- @nhost/react@0.13.0
- @nhost/hasura-auth-js@1.5.0
## 3.5.5
### Patch Changes
- @nhost/hasura-auth-js@1.4.3
- @nhost/react@0.12.5
## 3.5.4
### Patch Changes
- Updated dependencies [a47ce291]
- @nhost/hasura-auth-js@1.4.2
- @nhost/react@0.12.4
## 3.5.3
### Patch Changes
- @nhost/react@0.12.3
## 3.5.2
### Patch Changes
- @nhost/react@0.12.2
## 3.5.1
### Patch Changes
- Updated dependencies [93cc6920]
- @nhost/hasura-auth-js@1.4.1
- @nhost/react@0.12.1
## 3.5.0
### Patch Changes
- 10beea72: Fix React Native build: Export `package.json` for all npm packages.
- Updated dependencies [18ac56d0]
- Updated dependencies [10beea72]
- Updated dependencies [84ba29dd]
- @nhost/hasura-auth-js@1.4.0
- @nhost/react@0.12.0
## 3.4.2
### Patch Changes
- @nhost/hasura-auth-js@1.3.4
- @nhost/react@0.11.2
## 3.4.1
### Patch Changes
- @nhost/hasura-auth-js@1.3.3
- @nhost/react@0.11.1
## 3.4.0
### Patch Changes
- Updated dependencies [4f928756]
- @nhost/react@0.11.0
## 3.3.0
### Patch Changes
- Updated dependencies [f9854b15]
- Updated dependencies [f9854b15]
- @nhost/react@0.10.0
- @nhost/hasura-auth-js@1.3.2
## 3.2.2
### Patch Changes
- dbc10e62: fixed `exports` field to support imports in a server-side environment
- Updated dependencies [dbc10e62]
- @nhost/hasura-auth-js@1.3.1
- @nhost/react@0.9.2
## 3.2.1
### Patch Changes
- @nhost/react@0.9.1
## 3.2.0
### Patch Changes
- Updated dependencies [6f0a3005]
- Updated dependencies [6f0a3005]
- @nhost/hasura-auth-js@1.3.0
- @nhost/react@0.9.0
## 3.1.0
### Patch Changes
- Updated dependencies [c1613394]
- Updated dependencies [c1613394]
- @nhost/react@0.8.0
- @nhost/hasura-auth-js@1.2.0
## 3.0.11
### Patch Changes
- Updated dependencies [08a37aae]
- @nhost/react@0.7.13
- @nhost/hasura-auth-js@1.1.14
## 3.0.10
### Patch Changes
- ebad0936: reverted ESM related changes
- Updated dependencies [ebad0936]
- @nhost/hasura-auth-js@1.1.13
- @nhost/react@0.7.12
## 3.0.9
### Patch Changes
- 1b37b9f6: fix: ESM import path fixes
- Updated dependencies [1b37b9f6]
- @nhost/hasura-auth-js@1.1.12
- @nhost/react@0.7.11
## 3.0.8
### Patch Changes
- 78341491: fix: Next.js and React issues with ESM packages
chore: Updated output bundle names
- Updated dependencies [78341491]
- @nhost/hasura-auth-js@1.1.11
- @nhost/react@0.7.10
## 3.0.7
### Patch Changes
- bc11c9e5: chore: Changed copy script to support Windows
fix: Fixed warnings about unknown globals occurring while building the packages
- 2b2f8e91: fix: ESM related issues in Node environments
chore: Improved the way different formats are exposed via `exports` field in package.js
- Updated dependencies [bc11c9e5]
- Updated dependencies [2b2f8e91]
- @nhost/hasura-auth-js@1.1.10
- @nhost/react@0.7.9
## 3.0.6
### Patch Changes
- Updated dependencies [7c8f0926]
- Updated dependencies [7c8f0926]
- Updated dependencies [7c8f0926]
- @nhost/hasura-auth-js@1.1.9
- @nhost/react@0.7.8
## 3.0.5
### Patch Changes
- @nhost/hasura-auth-js@1.1.8
- @nhost/react@0.7.7
## 3.0.4
### Patch Changes
- @nhost/hasura-auth-js@1.1.7
- @nhost/react@0.7.6
## 3.0.3
### Patch Changes
- Updated dependencies [9d32314]
- Updated dependencies [9d32314]
- Updated dependencies [236ce72]
- Updated dependencies [e094e68]
- Updated dependencies [236ce72]
- @nhost/react@0.7.5
- @nhost/hasura-auth-js@1.1.6
## 3.0.2
### Patch Changes
- Updated dependencies [2887ce0]
- @nhost/react@0.7.4
## 3.0.1
### Patch Changes
- 584976d: - publishable directory structure changes (ESM, CJS and UMD included in the output)
- build system improvements
- fixed some bundling concerns (https://github.com/nhost/nhost/issues/428)
- Updated dependencies [584976d]
- @nhost/hasura-auth-js@1.1.5
- @nhost/react@0.7.3
## 3.0.0
### Major Changes
- 744fd69: Use `@nhost/react` instead of `@nhost/react-auth`
This major release allows to use the latest Nhost authentication state mechanism. It wraps and exports `NhostReactProvider` as `NhostAuthProvider` and `useNhostAuth` from `@nhost/react`.
In order to use it, you need to install `@nhost/react` as it is now a peer dependency:
```
npm install @nhost/react
# or
yarn add @nhost/react
```
It is however recommended to switch to `@nhost/react` and to remove this package from your dependencies.
### Minor Changes
- 744fd69: Unify vanilla, react and next APIs so they can work together
React and NextJS libraries now works together with `@nhost/nhost-js`. It also means the Nhost client needs to be initiated before passing it to the React provider.
See the [React](https://docs.nhost.io/reference/react#configuration) and [NextJS](https://docs.nhost.io/reference/nextjs/configuration) configuration documentation for additional information.
## 2.0.11
### Patch Changes
- @nhost/nhost-js@0.3.13
## 2.0.10
### Patch Changes
- Updated dependencies [8f7643a]
- @nhost/nhost-js@0.3.12
## 2.0.9
### Patch Changes
- @nhost/nhost-js@0.3.11
## 2.0.8
### Patch Changes
- 38f0093: Correct Nhost context type
`const { user } = useNhostAuth()`: user type was `null`. It is now `User | null`.
## 2.0.7
### Patch Changes
- c8f2488: optimize npm packages: only include the `dist` directory, and introduce the `exports` field in package.json as per Vite's recommendations.
- Updated dependencies [c8f2488]
- @nhost/nhost-js@0.3.10
## 2.0.6
### Patch Changes
- Updated dependencies [2e1c055]
- @nhost/nhost-js@0.3.9
## 2.0.5
### Patch Changes
- 03562af: Build in CommonJS and ESM instead of UMD and ESM as the UMD bundle generated by the default Vite lib build mode doesn't work with NodeJS
- Updated dependencies [03562af]
- @nhost/nhost-js@0.3.8
## 2.0.4
### Patch Changes
- @nhost/nhost-js@0.3.7

View File

@@ -1,19 +0,0 @@
# ⚠️ This package is deprecated
Use the new [`@nhost/react`](https://github.com/nhost/nhost/tree/main/packages/react) package instead.
# Nhost React Auth
For easy usage of Auth with [Nhost](https://nhost.io).
## Install
`$ npm install @nhost/react-auth @nhost/react`
or
`$ yarn add @nhost/react-auth @nhost/react`
## Documentation
[https://docs.nhost.io/reference/supporting-libraries/react-auth](https://docs.nhost.io/reference/supporting-libraries/react-auth)

View File

@@ -1,75 +0,0 @@
{
"name": "@nhost/react-auth",
"version": "3.6.0",
"description": "Nhost React client",
"license": "MIT",
"keywords": [
"nhost",
"hasura",
"storage",
"auth",
"authentication",
"graphql",
"postgresql",
"realtime",
"react"
],
"author": "Nhost",
"homepage": "https://nhost.io",
"bugs": "https://github.com/nhost/nhost/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/nhost/nhost.git"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"umd",
"README.md"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"node": "./dist/index.cjs.js",
"default": "./dist/index.esm.js"
},
"require": "./dist/index.cjs.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite build --config ../../config/vite.react.dev.config.js",
"build": "run-p build:lib build:umd",
"build:lib": "vite build --config ../../config/vite.react.config.js",
"build:umd": "vite build --config ../../config/vite.react.umd.config.js",
"test": "vitest run --config ../../config/vite.react.config.js",
"test:watch": "vitest --config ../../config/vite.react.config.js",
"test:coverage": "vitest run --coverage --config ../../config/vite.lib.config.js",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"verify": "run-p prettier lint",
"verify:fix": "run-p prettier:fix lint:fix"
},
"dependencies": {
"@nhost/hasura-auth-js": "workspace:*"
},
"peerDependencies": {
"@nhost/react": "workspace:*",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@nhost/react": "workspace:*",
"@types/react": "^17.0.49",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}

View File

@@ -1,19 +0,0 @@
import { createContext } from 'react'
import type { User } from '@nhost/hasura-auth-js'
import { NhostReactProvider, useNhostAuth } from '@nhost/react'
type NhostContext = {
isLoading: boolean
isAuthenticated: boolean
user: User | null
}
export const AuthContext = createContext<NhostContext>({
user: null,
isLoading: true,
isAuthenticated: false
})
export { NhostReactProvider as NhostAuthProvider }
export { useNhostAuth }

View File

@@ -1,7 +0,0 @@
import { describe, expect, it } from 'vitest'
describe('tests', () => {
it('should have more tests', () => {
expect(true).toBeTruthy()
})
})

View File

@@ -1,4 +0,0 @@
{
"extends": "../../config/react-library.tsconfig.json",
"include": ["src"]
}

View File

@@ -1,5 +1,14 @@
# @nhost/react
## 0.14.1
### Patch Changes
- Updated dependencies [6b9d163e]
- @nhost/core@0.9.1
- @nhost/hasura-storage-js@0.7.1
- @nhost/nhost-js@1.5.2
## 0.14.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/react",
"version": "0.14.0",
"version": "0.14.1",
"description": "Nhost React library",
"license": "MIT",
"keywords": [

View File

@@ -1,5 +1,13 @@
# @nhost/vue
## 0.5.1
### Patch Changes
- Updated dependencies [6b9d163e]
- @nhost/core@0.9.1
- @nhost/nhost-js@1.5.2
## 0.5.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/vue",
"version": "0.5.0",
"version": "0.5.1",
"description": "Nhost Vue library",
"license": "MIT",
"keywords": [

657
pnpm-lock.yaml generated
View File

@@ -324,77 +324,6 @@ importers:
ws: 8.9.0
xstate: 4.33.6
examples/react-apollo-crm:
specifiers:
'@apollo/client': ^3.7.0
'@graphql-codegen/cli': ^2.12.0
'@graphql-codegen/introspection': ^2.2.1
'@graphql-codegen/typescript': ^2.7.3
'@graphql-codegen/typescript-operations': ^2.5.3
'@graphql-codegen/typescript-react-apollo': ^3.3.3
'@headlessui/react': ^1.7.3
'@heroicons/react': ^1.0.6
'@nhost/nhost-js': '*'
'@nhost/react': '*'
'@nhost/react-apollo': '*'
'@tailwindcss/forms': ^0.5.3
'@types/express': ^4.17.13
'@types/jest': ^26.0.24
'@types/node': ^12.20.55
'@types/react': ^17.0.49
'@types/react-dom': ^17.0.17
'@vitejs/plugin-react': ^1.3.2
autoprefixer: ^10.4.8
classnames: ^2.3.1
date-fns: ^2.29.2
express: ^4.18.1
graphql: 15.7.2
graphql-tag: ^2.12.6
graphql-ws: ^5.10.1
postcss: ^8.4.16
pretty-bytes: ^5.6.0
react: ^17.0.2
react-dom: ^17.0.2
react-router-dom: ^6.3.0
tailwindcss: ^3.1.8
typescript: ^4.8.2
vite: ^2.9.15
dependencies:
'@apollo/client': 3.7.0_ff64czod6ifp3kuofb6aeca3ci
'@headlessui/react': 1.7.3_sfoxds7t5ydpegc3knd667wn6m
'@heroicons/react': 1.0.6_react@17.0.2
'@nhost/nhost-js': link:../../packages/nhost-js
'@nhost/react': link:../../packages/react
'@nhost/react-apollo': link:../../packages/react-apollo
'@tailwindcss/forms': 0.5.3_tailwindcss@3.1.8
classnames: 2.3.1
date-fns: 2.29.3
graphql: 15.7.2
graphql-tag: 2.12.6_graphql@15.7.2
graphql-ws: 5.11.2_graphql@15.7.2
pretty-bytes: 5.6.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m
tailwindcss: 3.1.8_postcss@8.4.17
devDependencies:
'@graphql-codegen/cli': 2.13.6_wytw6bwfy5zyq75cqw6zdpb7dy
'@graphql-codegen/introspection': 2.2.1_graphql@15.7.2
'@graphql-codegen/typescript': 2.7.4_graphql@15.7.2
'@graphql-codegen/typescript-operations': 2.5.4_graphql@15.7.2
'@graphql-codegen/typescript-react-apollo': 3.3.4_uiakrmibzyjojycqgq5qw35buq
'@types/express': 4.17.13
'@types/jest': 26.0.24
'@types/node': 12.20.55
'@types/react': 17.0.50
'@types/react-dom': 17.0.17
'@vitejs/plugin-react': 1.3.2
autoprefixer: 10.4.12_postcss@8.4.17
express: 4.18.2
postcss: 8.4.17
typescript: 4.8.3
vite: 2.9.15
examples/vue-apollo:
specifiers:
'@apollo/client': ^3.6.9
@@ -713,21 +642,6 @@ importers:
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
packages/react-auth:
specifiers:
'@nhost/hasura-auth-js': workspace:*
'@nhost/react': workspace:*
'@types/react': ^17.0.49
react: ^17.0.2
react-dom: ^17.0.2
dependencies:
'@nhost/hasura-auth-js': link:../hasura-auth-js
devDependencies:
'@nhost/react': link:../react
'@types/react': 17.0.50
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
packages/stripe-graphql-js:
specifiers:
'@graphql-yoga/node': ^2.13.13
@@ -1170,43 +1084,6 @@ packages:
zen-observable-ts: 1.2.5
dev: false
/@apollo/client/3.7.0_ff64czod6ifp3kuofb6aeca3ci:
resolution: {integrity: sha512-hp4OvrH1ZIQACRYcIrh/C0WFnY7IM7G6nlTpC8DSTEWxfZQ2kvpvDY0I/hYmCs0oAVrg26g3ANEdOzGWTcYbPg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
optional: true
react:
optional: true
react-dom:
optional: true
subscriptions-transport-ws:
optional: true
dependencies:
'@graphql-typed-document-node/core': 3.1.1_graphql@15.7.2
'@wry/context': 0.7.0
'@wry/equality': 0.5.2
'@wry/trie': 0.3.1
graphql: 15.7.2
graphql-tag: 2.12.6_graphql@15.7.2
graphql-ws: 5.11.2_graphql@15.7.2
hoist-non-react-statics: 3.3.2
optimism: 0.16.1
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
response-iterator: 0.2.6
symbol-observable: 4.0.0
ts-invariant: 0.10.3
tslib: 2.4.0
zen-observable-ts: 1.2.5
dev: false
/@ardatan/relay-compiler/12.0.0_graphql@15.7.2:
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==}
hasBin: true
@@ -4907,62 +4784,6 @@ packages:
- utf-8-validate
dev: true
/@graphql-codegen/cli/2.13.6_wytw6bwfy5zyq75cqw6zdpb7dy:
resolution: {integrity: sha512-3Q7/aRFPJnd7Zd+gMM/cymUYdaS8dHc+7D6kkEDhYo/rVDusnPMdBkYQ9XUT4UIqE7TZ+gX3yedBsqOeyJyg1Q==}
hasBin: true
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@babel/generator': 7.19.5
'@babel/template': 7.18.10
'@babel/types': 7.19.4
'@graphql-codegen/core': 2.6.2_graphql@15.7.2
'@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.7.2
'@graphql-tools/apollo-engine-loader': 7.3.6_graphql@15.7.2
'@graphql-tools/code-file-loader': 7.3.1_graphql@15.7.2
'@graphql-tools/git-loader': 7.2.1_graphql@15.7.2
'@graphql-tools/github-loader': 7.3.6_graphql@15.7.2
'@graphql-tools/graphql-file-loader': 7.5.0_graphql@15.7.2
'@graphql-tools/json-file-loader': 7.4.1_graphql@15.7.2
'@graphql-tools/load': 7.7.1_graphql@15.7.2
'@graphql-tools/prisma-loader': 7.2.8_bfbzlyf4yvvirqkmq7pjtghvd4
'@graphql-tools/url-loader': 7.13.3_bfbzlyf4yvvirqkmq7pjtghvd4
'@graphql-tools/utils': 8.12.0_graphql@15.7.2
'@whatwg-node/fetch': 0.3.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 7.0.1
cosmiconfig-typescript-loader: 4.1.1_7wuzw5pjwvum7qwf3ijuzdfxyy
debounce: 1.2.1
detect-indent: 6.1.0
graphql: 15.7.2
graphql-config: 4.3.6_wytw6bwfy5zyq75cqw6zdpb7dy
inquirer: 8.2.2
is-glob: 4.0.3
json-to-pretty-yaml: 1.2.2
listr2: 4.0.5
log-symbols: 4.1.0
mkdirp: 1.0.4
shell-quote: 1.7.3
string-env-interpolation: 1.0.1
ts-log: 2.2.4
tslib: 2.4.0
yaml: 1.10.2
yargs: 17.4.1
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
- '@types/node'
- bufferutil
- encoding
- enquirer
- supports-color
- ts-node
- typescript
- utf-8-validate
dev: true
/@graphql-codegen/core/2.6.2_graphql@15.7.2:
resolution: {integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==}
peerDependencies:
@@ -4975,20 +4796,6 @@ packages:
tslib: 2.4.0
dev: true
/@graphql-codegen/introspection/2.2.1_graphql@15.7.2:
resolution: {integrity: sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.7.2
'@graphql-codegen/visitor-plugin-common': 2.12.2_graphql@15.7.2
graphql: 15.7.2
tslib: 2.4.0
transitivePeerDependencies:
- encoding
- supports-color
dev: true
/@graphql-codegen/plugin-helpers/2.7.1_graphql@15.7.2:
resolution: {integrity: sha512-wpEShhwbQp8pqXolnSCNaj0pU91LbuBvYHpYqm96TUqyeKQYAYRVmw3JIt0g8UQpKYhg8lYIDwWdcINOYqkGLg==}
peerDependencies:
@@ -5047,24 +4854,6 @@ packages:
- supports-color
dev: true
/@graphql-codegen/typescript-react-apollo/3.3.4_uiakrmibzyjojycqgq5qw35buq:
resolution: {integrity: sha512-ATmrj5SJAGqH2bqaYIkHYeHb3Qkvnk8fwFeD5fr8EZqp87pu86xqr5gbjVpS23e01DRRfrHO4vT++j5m/wbdEA==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-tag: ^2.0.0
dependencies:
'@graphql-codegen/plugin-helpers': 2.7.1_graphql@15.7.2
'@graphql-codegen/visitor-plugin-common': 2.12.2_graphql@15.7.2
auto-bind: 4.0.0
change-case-all: 1.0.14
graphql: 15.7.2
graphql-tag: 2.12.6_graphql@15.7.2
tslib: 2.4.0
transitivePeerDependencies:
- encoding
- supports-color
dev: true
/@graphql-codegen/typescript-react-query/4.0.2_graphql@15.7.2:
resolution: {integrity: sha512-KShk0GXgIx8LYSxZYLB+Np52hSdzVsE1Q8/TCNp08JVRbGyTYSuPiHH6Irk+3l+nzVNKLeQJw2ZLB9Oyixuk9Q==}
peerDependencies:
@@ -5296,39 +5085,6 @@ packages:
tslib: 2.4.0
dev: true
/@graphql-tools/prisma-loader/7.2.8_bfbzlyf4yvvirqkmq7pjtghvd4:
resolution: {integrity: sha512-GeMZe3QHdLlsTmRn4dE/yB2lSR4RF9kmyeNGLMKmTQLzHxT5kjjDTmX00T5F1RO5fh+5jPwIVCMw+MQxB7nXpA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@graphql-tools/url-loader': 7.13.3_bfbzlyf4yvvirqkmq7pjtghvd4
'@graphql-tools/utils': 8.9.0_graphql@15.7.2
'@types/js-yaml': 4.0.5
'@types/json-stable-stringify': 1.0.34
'@types/jsonwebtoken': 8.5.9
chalk: 4.1.2
debug: 4.3.4
dotenv: 16.0.2
graphql: 15.7.2
graphql-request: 4.2.0_graphql@15.7.2
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
isomorphic-fetch: 3.0.0
js-yaml: 4.1.0
json-stable-stringify: 1.0.1
jsonwebtoken: 8.5.1
lodash: 4.17.21
scuid: 1.1.0
tslib: 2.4.0
yaml-ast-parser: 0.0.43
transitivePeerDependencies:
- '@types/node'
- bufferutil
- encoding
- supports-color
- utf-8-validate
dev: true
/@graphql-tools/prisma-loader/7.2.8_graphql@15.7.2:
resolution: {integrity: sha512-GeMZe3QHdLlsTmRn4dE/yB2lSR4RF9kmyeNGLMKmTQLzHxT5kjjDTmX00T5F1RO5fh+5jPwIVCMw+MQxB7nXpA==}
peerDependencies:
@@ -5432,34 +5188,6 @@ packages:
tslib: 2.4.0
value-or-promise: 1.0.11
/@graphql-tools/url-loader/7.13.3_bfbzlyf4yvvirqkmq7pjtghvd4:
resolution: {integrity: sha512-92z2HJd+Ae2wlZH0kFb20aSxX8CkJDcYyUtbtBNSadu5rKzkiYQPlihfRJFJs4zmDdV+DSmmGvQtDuAKLV+iNg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
'@graphql-tools/delegate': 8.8.1_graphql@15.7.2
'@graphql-tools/utils': 8.9.0_graphql@15.7.2
'@graphql-tools/wrap': 8.5.1_graphql@15.7.2
'@n1ru4l/graphql-live-query': 0.10.0_graphql@15.7.2
'@types/ws': 8.5.3
'@whatwg-node/fetch': 0.2.6
dset: 3.1.2
extract-files: 11.0.0
graphql: 15.7.2
graphql-ws: 5.11.2_graphql@15.7.2
isomorphic-ws: 5.0.0_ws@8.9.0
meros: 1.2.0_@types+node@12.20.55
tslib: 2.4.0
value-or-promise: 1.0.11
ws: 8.9.0
transitivePeerDependencies:
- '@types/node'
- bufferutil
- encoding
- utf-8-validate
dev: true
/@graphql-tools/url-loader/7.13.3_graphql@15.7.2:
resolution: {integrity: sha512-92z2HJd+Ae2wlZH0kFb20aSxX8CkJDcYyUtbtBNSadu5rKzkiYQPlihfRJFJs4zmDdV+DSmmGvQtDuAKLV+iNg==}
peerDependencies:
@@ -5620,25 +5348,6 @@ packages:
dependencies:
'@hapi/hoek': 9.3.0
/@headlessui/react/1.7.3_sfoxds7t5ydpegc3knd667wn6m:
resolution: {integrity: sha512-LGp06SrGv7BMaIQlTs8s2G06moqkI0cb0b8stgq7KZ3xcHdH3qMP+cRyV7qe5x4XEW/IGY48BW4fLesD6NQLng==}
engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
/@heroicons/react/1.0.6_react@17.0.2:
resolution: {integrity: sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==}
peerDependencies:
react: '>= 16'
dependencies:
react: 17.0.2
dev: false
/@humanwhocodes/config-array/0.10.7:
resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==}
engines: {node: '>=10.10.0'}
@@ -5927,17 +5636,6 @@ packages:
- supports-color
dev: true
/@jest/types/26.6.2:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
'@types/node': 18.7.18
'@types/yargs': 15.0.14
chalk: 4.1.2
dev: true
/@jest/types/27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -7258,15 +6956,6 @@ packages:
defer-to-connect: 1.1.3
dev: false
/@tailwindcss/forms/0.5.3_tailwindcss@3.1.8:
resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
mini-svg-data-uri: 1.4.4
tailwindcss: 3.1.8_postcss@8.4.17
dev: false
/@tanstack/match-sorter-utils/8.1.1:
resolution: {integrity: sha512-IdmEekEYxQsoLOR0XQyw3jD1GujBpRRYaGJYQUw1eOT1eUugWxdc7jomh1VQ1EKHcdwDLpLaCz/8y4KraU4T9A==}
engines: {node: '>=12'}
@@ -7566,13 +7255,6 @@ packages:
'@types/istanbul-lib-report': 3.0.0
dev: true
/@types/jest/26.0.24:
resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==}
dependencies:
jest-diff: 26.6.2
pretty-format: 26.6.2
dev: true
/@types/jest/27.5.2:
resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==}
dependencies:
@@ -7685,12 +7367,6 @@ packages:
/@types/range-parser/1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
/@types/react-dom/17.0.17:
resolution: {integrity: sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==}
dependencies:
'@types/react': 17.0.50
dev: true
/@types/react-dom/18.0.6:
resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==}
dependencies:
@@ -7717,14 +7393,6 @@ packages:
'@types/history': 4.7.11
'@types/react': 18.0.21
/@types/react/17.0.50:
resolution: {integrity: sha512-ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
csstype: 3.1.0
dev: true
/@types/react/18.0.21:
resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==}
dependencies:
@@ -7829,12 +7497,6 @@ packages:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
/@types/yargs/15.0.14:
resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: true
/@types/yargs/16.0.4:
resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
dependencies:
@@ -8643,13 +8305,6 @@ packages:
dependencies:
tslib: 2.4.0
/@wry/context/0.7.0:
resolution: {integrity: sha512-LcDAiYWRtwAoSOArfk7cuYvFXytxfVrdX7yxoUmK7pPITLk5jYh2F8knCwS7LjgYL8u1eidPlKKV6Ikqq0ODqQ==}
engines: {node: '>=8'}
dependencies:
tslib: 2.4.0
dev: false
/@wry/equality/0.5.2:
resolution: {integrity: sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==}
engines: {node: '>=8'}
@@ -8787,17 +8442,10 @@ packages:
acorn: 8.8.0
dev: true
/acorn-node/1.8.2:
resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
xtend: 4.0.2
dev: false
/acorn-walk/7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
dev: true
/acorn-walk/8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
@@ -8807,6 +8455,7 @@ packages:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
/acorn/8.7.1:
resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
@@ -9011,10 +8660,6 @@ packages:
resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==}
dev: false
/arg/5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: false
/argparse/1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
@@ -9169,6 +8814,7 @@ packages:
picocolors: 1.0.0
postcss: 8.4.17
postcss-value-parser: 4.2.0
dev: false
/autoprefixer/10.4.7_postcss@8.4.13:
resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
@@ -10070,10 +9716,6 @@ packages:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
dev: true
/classnames/2.3.1:
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
dev: false
/clean-css/5.3.0:
resolution: {integrity: sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==}
engines: {node: '>= 10.0'}
@@ -10469,20 +10111,6 @@ packages:
typescript: 4.8.3
dev: true
/cosmiconfig-typescript-loader/4.1.1_7wuzw5pjwvum7qwf3ijuzdfxyy:
resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@types/node': '*'
cosmiconfig: '>=7'
ts-node: '>=10'
typescript: '>=3'
dependencies:
'@types/node': 12.20.55
cosmiconfig: 7.0.1
typescript: 4.8.3
dev: true
/cosmiconfig-typescript-loader/4.1.1_gcri34524ranxsdtemmssi7zpi:
resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==}
engines: {node: '>=12', npm: '>=6'}
@@ -10497,21 +10125,6 @@ packages:
typescript: 4.8.3
dev: true
/cosmiconfig-typescript-loader/4.1.1_mss454dpxbi2upf6ngzkhyni7m:
resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@types/node': '*'
cosmiconfig: '>=7'
ts-node: '>=10'
typescript: '>=3'
dependencies:
'@types/node': 12.20.55
cosmiconfig: 7.0.1
ts-node: 10.9.1_645mub5f5ozux7a7hk7ogoo7xi
typescript: 4.8.3
dev: true
/cosmiconfig-typescript-loader/4.1.1_mzcx2nye4dhhipfpcmzwzawjqa:
resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==}
engines: {node: '>=12', npm: '>=6'}
@@ -11498,11 +11111,6 @@ packages:
resolution: {integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==}
dev: true
/date-fns/2.29.3:
resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==}
engines: {node: '>=0.11'}
dev: false
/dayjs/1.11.1:
resolution: {integrity: sha512-ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA==}
dev: true
@@ -11684,10 +11292,6 @@ packages:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
/defined/1.0.0:
resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
dev: false
/defu/6.0.0:
resolution: {integrity: sha512-t2MZGLf1V2rV4VBZbWIaXKdX/mUcYW0n2znQZoADBkGGxYL8EWqCuCZBmJPJ/Yy9fofJkyuuSuo5GSwo0XdEgw==}
dev: true
@@ -11783,25 +11387,6 @@ packages:
- supports-color
dev: false
/detective/5.2.1:
resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
acorn-node: 1.8.2
defined: 1.0.0
minimist: 1.2.6
dev: false
/didyoumean/1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
dev: false
/diff-sequences/26.6.2:
resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==}
engines: {node: '>= 10.14.2'}
dev: true
/diff-sequences/27.5.1:
resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -11818,10 +11403,6 @@ packages:
dependencies:
path-type: 4.0.0
/dlv/1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: false
/dns-equal/1.0.0:
resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
dev: false
@@ -14153,6 +13734,7 @@ packages:
/fraction.js/4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: false
/fresh/0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
@@ -14551,36 +14133,6 @@ packages:
- utf-8-validate
dev: true
/graphql-config/4.3.6_wytw6bwfy5zyq75cqw6zdpb7dy:
resolution: {integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==}
engines: {node: '>= 10.0.0'}
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@graphql-tools/graphql-file-loader': 7.5.0_graphql@15.7.2
'@graphql-tools/json-file-loader': 7.4.1_graphql@15.7.2
'@graphql-tools/load': 7.7.1_graphql@15.7.2
'@graphql-tools/merge': 8.3.6_graphql@15.7.2
'@graphql-tools/url-loader': 7.13.3_bfbzlyf4yvvirqkmq7pjtghvd4
'@graphql-tools/utils': 8.12.0_graphql@15.7.2
cosmiconfig: 7.0.1
cosmiconfig-toml-loader: 1.0.0
cosmiconfig-typescript-loader: 4.1.1_mss454dpxbi2upf6ngzkhyni7m
graphql: 15.7.2
minimatch: 4.2.1
string-env-interpolation: 1.0.1
ts-node: 10.9.1_645mub5f5ozux7a7hk7ogoo7xi
tslib: 2.4.0
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
- '@types/node'
- bufferutil
- encoding
- typescript
- utf-8-validate
dev: true
/graphql-request/4.2.0_graphql@15.7.2:
resolution: {integrity: sha512-uFeMyhhl8ss4LFgjlfPeAn2pqYw+CJto+cjj71uaBYIMMK2jPIqgHm5KEFxUk0YDD41A8Bq31a2b4G2WJBlp2Q==}
peerDependencies:
@@ -15965,16 +15517,6 @@ packages:
- utf-8-validate
dev: true
/jest-diff/26.6.2:
resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==}
engines: {node: '>= 10.14.2'}
dependencies:
chalk: 4.1.2
diff-sequences: 26.6.2
jest-get-type: 26.3.0
pretty-format: 26.6.2
dev: true
/jest-diff/27.5.1:
resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -16033,11 +15575,6 @@ packages:
jest-util: 27.5.1
dev: true
/jest-get-type/26.3.0:
resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
engines: {node: '>= 10.14.2'}
dev: true
/jest-get-type/27.5.1:
resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -17293,18 +16830,6 @@ packages:
optional: true
dev: true
/meros/1.2.0_@types+node@12.20.55:
resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==}
engines: {node: '>=12'}
peerDependencies:
'@types/node': '>=12'
peerDependenciesMeta:
'@types/node':
optional: true
dependencies:
'@types/node': 12.20.55
dev: true
/meros/1.2.0_@types+node@16.11.65:
resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==}
engines: {node: '>=12'}
@@ -17412,11 +16937,6 @@ packages:
webpack: 5.72.0
dev: false
/mini-svg-data-uri/1.4.4:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
dev: false
/minimalistic-assert/1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: false
@@ -17808,6 +17328,7 @@ packages:
/normalize-range/0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: false
/normalize-url/4.5.1:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
@@ -17887,11 +17408,6 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
/object-hash/3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
dev: false
/object-inspect/1.12.0:
resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
dev: true
@@ -18373,6 +17889,7 @@ packages:
/pify/2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
dev: true
/pify/3.0.0:
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
@@ -18572,45 +18089,6 @@ packages:
postcss-selector-parser: 6.0.10
dev: false
/postcss-import/14.1.0_postcss@8.4.17:
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
postcss: 8.4.17
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.1
dev: false
/postcss-js/4.0.0_postcss@8.4.17:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.3.3
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.17
dev: false
/postcss-load-config/3.1.4_postcss@8.4.17:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
optional: true
ts-node:
optional: true
dependencies:
lilconfig: 2.0.6
postcss: 8.4.17
yaml: 1.10.2
dev: false
/postcss-load-config/3.1.4_ts-node@10.9.1:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
@@ -18830,16 +18308,6 @@ packages:
postcss: 8.4.17
dev: false
/postcss-nested/5.0.6_postcss@8.4.17:
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
postcss: 8.4.17
postcss-selector-parser: 6.0.10
dev: false
/postcss-normalize-charset/5.1.0_postcss@8.4.13:
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -19157,6 +18625,7 @@ packages:
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: false
/postcss-zindex/5.1.0_postcss@8.4.17:
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
@@ -19225,6 +18694,7 @@ packages:
/pretty-bytes/5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
dev: true
/pretty-error/4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
@@ -19233,16 +18703,6 @@ packages:
renderkid: 3.0.0
dev: false
/pretty-format/26.6.2:
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
engines: {node: '>= 10'}
dependencies:
'@jest/types': 26.6.2
ansi-regex: 5.0.1
ansi-styles: 4.3.0
react-is: 17.0.2
dev: true
/pretty-format/27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -19437,11 +18897,6 @@ packages:
engines: {node: '>=8'}
dev: true
/quick-lru/5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
dev: false
/randombytes/2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
@@ -19730,18 +19185,6 @@ packages:
react-router: 6.3.0_react@18.2.0
dev: false
/react-router-dom/6.3.0_sfoxds7t5ydpegc3knd667wn6m:
resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
history: 5.3.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-router: 6.3.0_react@17.0.2
dev: false
/react-router/5.3.1_react@17.0.2:
resolution: {integrity: sha512-v+zwjqb7bakqgF+wMVKlAPTca/cEmPOvQ9zt7gpSNyPXau1+0qvuYZ5BWzzNDP1y6s15zDwgb9rPN63+SIniRQ==}
peerDependencies:
@@ -19760,15 +19203,6 @@ packages:
tiny-warning: 1.0.3
dev: false
/react-router/6.3.0_react@17.0.2:
resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
react: '>=16.8'
dependencies:
history: 5.3.0
react: 17.0.2
dev: false
/react-router/6.3.0_react@18.2.0:
resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
@@ -19867,12 +19301,6 @@ packages:
dependencies:
loose-envify: 1.4.0
/read-cache/1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
dev: false
/read-pkg-up/7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
@@ -20274,11 +19702,6 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
/response-iterator/0.2.6:
resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==}
engines: {node: '>=0.8'}
dev: false
/responselike/1.0.2:
resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
dependencies:
@@ -21360,39 +20783,6 @@ packages:
react: 18.2.0
dev: false
/tailwindcss/3.1.8_postcss@8.4.17:
resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==}
engines: {node: '>=12.13.0'}
hasBin: true
peerDependencies:
postcss: ^8.0.9
dependencies:
arg: 5.0.2
chokidar: 3.5.3
color-name: 1.1.4
detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.11
glob-parent: 6.0.2
is-glob: 4.0.3
lilconfig: 2.0.6
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.17
postcss-import: 14.1.0_postcss@8.4.17
postcss-js: 4.0.0_postcss@8.4.17
postcss-load-config: 3.1.4_postcss@8.4.17
postcss-nested: 5.0.6_postcss@8.4.17
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
resolve: 1.22.1
transitivePeerDependencies:
- ts-node
dev: false
/tapable/1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
@@ -21803,37 +21193,6 @@ packages:
- '@types/node'
dev: true
/ts-node/10.9.1_645mub5f5ozux7a7hk7ogoo7xi:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
'@swc/core': '>=1.2.50'
'@swc/wasm': '>=1.2.50'
'@types/node': '*'
typescript: '>=2.7'
peerDependenciesMeta:
'@swc/core':
optional: true
'@swc/wasm':
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.8
'@tsconfig/node12': 1.0.9
'@tsconfig/node14': 1.0.1
'@tsconfig/node16': 1.0.2
'@types/node': 12.20.55
acorn: 8.7.1
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
typescript: 4.8.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
dev: true
/ts-node/10.9.1_bidgzm5cq2du6gnjtweqqjrrn4:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true