diff --git a/apps/expo/babel.config.js b/apps/expo/babel.config.js
index e2213ee79..21a31eba9 100644
--- a/apps/expo/babel.config.js
+++ b/apps/expo/babel.config.js
@@ -1,3 +1,5 @@
+// FIXME: better type :)
+/** @param {{ cache: (b:boolean) => void }} api */
module.exports = function (api) {
api.cache(true);
diff --git a/apps/expo/metro.config.js b/apps/expo/metro.config.js
index 3cfa26f88..69fb5c8f3 100644
--- a/apps/expo/metro.config.js
+++ b/apps/expo/metro.config.js
@@ -1,5 +1,5 @@
// Learn more: https://docs.expo.dev/guides/monorepos/
-const { getDefaultConfig } = require("expo/metro-config");
+const { getDefaultConfig } = require("@expo/metro-config");
const path = require("path");
const projectRoot = __dirname;
diff --git a/apps/expo/package.json b/apps/expo/package.json
index a715d77b7..800809077 100644
--- a/apps/expo/package.json
+++ b/apps/expo/package.json
@@ -12,6 +12,7 @@
"FIXME(no-work):type-check": "tsc --noEmit"
},
"dependencies": {
+ "@expo/metro-config": "^0.7.1",
"@shopify/flash-list": "1.4.0",
"@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.18.0",
@@ -20,7 +21,7 @@
"expo": "^48.0.9",
"expo-constants": "~14.2.1",
"expo-linking": "~4.0.1",
- "expo-router": "^1.4.2",
+ "expo-router": "^1.4.3",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"nativewind": "^2.0.11",
@@ -32,19 +33,19 @@
"superjson": "1.9.1"
},
"devDependencies": {
- "@acme/api": "^0.1.0",
- "@acme/eslint-config": "^0.1.0",
- "@acme/tailwind-config": "^0.1.0",
+ "@acme/api": "*",
+ "@acme/eslint-config": "*",
+ "@acme/tailwind-config": "*",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.21.0",
"@expo/config-plugins": "^6.0.1",
- "@types/react": "^18.0.30",
+ "@types/react": "^18.0.31",
"@types/webpack-env": "^1.18.0",
- "eslint": "^8.36.0",
+ "eslint": "^8.37.0",
"postcss": "^8.4.21",
- "tailwindcss": "^3.3.0",
- "typescript": "^5.0.2"
+ "tailwindcss": "^3.3.1",
+ "typescript": "^5.0.3"
},
"private": true
}
diff --git a/apps/expo/tailwind.config.cjs b/apps/expo/tailwind.config.cjs
deleted file mode 100644
index 9770f699a..000000000
--- a/apps/expo/tailwind.config.cjs
+++ /dev/null
@@ -1,5 +0,0 @@
-/** @type {import("tailwindcss").Config} */
-module.exports = {
- presets: [require("@acme/tailwind-config")],
- content: ["./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
-};
diff --git a/apps/expo/tailwind.config.ts b/apps/expo/tailwind.config.ts
new file mode 100644
index 000000000..0a0fb6dd2
--- /dev/null
+++ b/apps/expo/tailwind.config.ts
@@ -0,0 +1,8 @@
+import { type Config } from "tailwindcss";
+
+import baseConfig from "@acme/tailwind-config";
+
+export default {
+ presets: [baseConfig],
+ content: ["./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
+} satisfies Config;
diff --git a/apps/expo/tsconfig.json b/apps/expo/tsconfig.json
index a094ada4f..d342c0261 100644
--- a/apps/expo/tsconfig.json
+++ b/apps/expo/tsconfig.json
@@ -4,6 +4,6 @@
"jsx": "react-native",
"types": ["nativewind/types", "webpack-env"]
},
- "include": ["expo-plugins", "src", "app.config.ts", "index.tsx"],
+ "include": ["expo-plugins", "src", "*.ts", "**/*.js", "index.tsx"],
"exclude": ["node_modules"]
}
diff --git a/apps/nextjs/next.config.mjs b/apps/nextjs/next.config.mjs
index 2eb807b6e..773975b17 100644
--- a/apps/nextjs/next.config.mjs
+++ b/apps/nextjs/next.config.mjs
@@ -2,10 +2,11 @@
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
* This is especially useful for Docker builds and Linting.
*/
-!process.env.SKIP_ENV_VALIDATION && (await import("./src/env.mjs"));
+// !process.env.SKIP_ENV_VALIDATION && (await import("./src/env.mjs"));
/** @type {import("next").NextConfig} */
const config = {
+ reactStrictMode: true,
/** Enables hot reloading for local packages without a build step */
transpilePackages: ["@acme/api", "@acme/auth", "@acme/db"],
/** We already do linting and typechecking as separate tasks in CI */
diff --git a/apps/nextjs/package.json b/apps/nextjs/package.json
index 3bb6362ef..2fdd0addb 100644
--- a/apps/nextjs/package.json
+++ b/apps/nextjs/package.json
@@ -31,14 +31,14 @@
},
"devDependencies": {
"@acme/eslint-config": "*",
- "@types/node": "^18.15.10",
- "@types/react": "^18.0.30",
+ "@types/node": "^18.15.11",
+ "@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.1.0",
- "eslint": "^8.36.0",
+ "eslint": "^8.37.0",
"postcss": "^8.4.21",
- "tailwindcss": "^3.3.0",
- "typescript": "^5.0.2"
+ "tailwindcss": "^3.3.1",
+ "typescript": "^5.0.3"
}
}
diff --git a/apps/nextjs/postcss.config.cjs b/apps/nextjs/postcss.config.cjs
index ba7da8c97..a3474d782 100644
--- a/apps/nextjs/postcss.config.cjs
+++ b/apps/nextjs/postcss.config.cjs
@@ -1,2 +1,2 @@
-// @ts-ignore
+// @ts-expect-error - No types for postcss
module.exports = require("@acme/tailwind-config/postcss");
diff --git a/apps/nextjs/src/pages/index.tsx b/apps/nextjs/src/pages/index.tsx
index d28b79c2c..094fac2a5 100644
--- a/apps/nextjs/src/pages/index.tsx
+++ b/apps/nextjs/src/pages/index.tsx
@@ -1,7 +1,6 @@
import { useState } from "react";
import type { NextPage } from "next";
import Head from "next/head";
-import Link from "next/link";
import { signIn, signOut } from "next-auth/react";
import { api, type RouterOutputs } from "~/utils/api";
@@ -55,7 +54,6 @@ const CreatePostForm: React.FC = () => {
{error.data.zodError.fieldErrors.title}
)}
- Hello
=6.9.0'}
/@babel/core@7.21.3:
@@ -375,15 +378,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.20.7:
- resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.20.7
- '@jridgewell/gen-mapping': 0.3.2
- jsesc: 2.5.2
- dev: false
-
/@babel/generator@7.21.3:
resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
engines: {node: '>=6.9.0'}
@@ -412,15 +406,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.10
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@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
- /@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.21.3):
- resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
+ /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -429,7 +423,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.20.7
+ '@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
@@ -437,15 +431,15 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-regexp-features-plugin@7.20.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
+ /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.2.2
+ regexpu-core: 5.3.2
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
@@ -485,8 +479,8 @@ packages:
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-member-expression-to-functions@7.20.7:
- resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
+ /@babel/helper-member-expression-to-functions@7.21.0:
+ resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
@@ -495,7 +489,7 @@ packages:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.3
+ '@babel/types': 7.19.0
/@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
@@ -541,7 +535,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.20.7
+ '@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
'@babel/traverse': 7.21.3
@@ -575,8 +569,8 @@ 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==}
+ /@babel/helper-validator-option@7.21.0:
+ resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-wrap-function@7.20.5:
@@ -633,7 +627,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
@@ -656,36 +650,36 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==}
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-decorators@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-JB45hbUweYpwAGjkiM7uCyXMENH2lG+9r3G2E+ttc2PRXAoEkpfd/KW5jDg4j8RS6tLtTG1jZi9LbHZVSfs1/A==}
+ /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.19.0(@babel/core@7.21.3)
+ '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
@@ -767,12 +761,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.10
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
@@ -784,8 +778,8 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==}
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -802,20 +796,20 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
@@ -828,7 +822,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.21.3)
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
@@ -856,8 +850,8 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
+ /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1036,8 +1030,8 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-block-scoping@7.20.11(@babel/core@7.21.3):
- resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==}
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1045,8 +1039,8 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-classes@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1074,8 +1068,8 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
- /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
+ resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1090,7 +1084,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.21.3)
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3):
@@ -1112,8 +1106,8 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1123,8 +1117,8 @@ packages:
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.3)
dev: false
- /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.21.3):
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
+ /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1173,8 +1167,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.21.3):
- resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1219,7 +1213,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.21.3)
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
/@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3):
@@ -1243,8 +1237,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1271,8 +1265,8 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1291,8 +1285,8 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==}
+ /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1324,8 +1318,8 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-runtime@7.19.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==}
+ /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1387,14 +1381,15 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typescript@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==}
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.3):
+ resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.21.3)
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
transitivePeerDependencies:
@@ -1417,7 +1412,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.21.3)
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
/@babel/preset-env@7.20.2(@babel/core@7.21.3):
@@ -1426,16 +1421,16 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.10
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
+ '@babel/helper-validator-option': 7.21.0
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-class-static-block': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3)
@@ -1444,9 +1439,9 @@ packages:
'@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-private-property-in-object': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
@@ -1466,25 +1461,25 @@ packages:
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
'@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3)
'@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
'@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3)
'@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3)
@@ -1500,7 +1495,7 @@ packages:
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
- core-js-compat: 3.27.1
+ core-js-compat: 3.29.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -1513,8 +1508,8 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.21.3)
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
dev: false
/@babel/preset-modules@0.1.5(@babel/core@7.21.3):
@@ -1529,22 +1524,22 @@ packages:
'@babel/types': 7.21.3
esutils: 2.0.3
- /@babel/preset-typescript@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
+ /@babel/preset-typescript@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.20.7(@babel/core@7.21.3)
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/register@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
+ /@babel/register@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1557,6 +1552,9 @@ packages:
source-map-support: 0.5.21
dev: false
+ /@babel/regjsgen@0.8.0:
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
/@babel/runtime@7.21.0:
resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
engines: {node: '>=6.9.0'}
@@ -1595,16 +1593,6 @@ packages:
'@babel/helper-string-parser': 7.19.4
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- dev: false
-
- /@babel/types@7.20.7:
- resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.19.4
- '@babel/helper-validator-identifier': 7.19.1
- to-fast-properties: 2.0.0
- dev: false
/@babel/types@7.21.3:
resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==}
@@ -1622,33 +1610,31 @@ packages:
react-native: 0.71.4(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0)
dev: false
- /@egjs/hammerjs@2.0.17:
- resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
- engines: {node: '>=0.8.0'}
- dependencies:
- '@types/hammerjs': 2.0.41
- dev: false
-
- /@eslint-community/eslint-utils@4.4.0(eslint@8.36.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.37.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.36.0
- eslint-visitor-keys: 3.3.0
+ eslint: 8.37.0
+ eslint-visitor-keys: 3.4.0
/@eslint-community/regexpp@4.4.1:
resolution: {integrity: sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ dev: false
+
+ /@eslint-community/regexpp@4.5.0:
+ resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- /@eslint/eslintrc@2.0.1:
- resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==}
+ /@eslint/eslintrc@2.0.2:
+ resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.5.0
+ espree: 9.5.1
globals: 13.20.0
ignore: 5.2.4
import-fresh: 3.3.0
@@ -1658,8 +1644,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js@8.36.0:
- resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==}
+ /@eslint/js@8.37.0:
+ resolution: {integrity: sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@expo/bunyan@4.0.0:
@@ -1683,9 +1669,9 @@ packages:
'@expo/dev-server': 0.2.3
'@expo/devcert': 1.1.0
'@expo/json-file': 8.2.37
- '@expo/metro-config': 0.7.0
+ '@expo/metro-config': 0.7.1
'@expo/osascript': 2.0.33
- '@expo/package-manager': 1.0.0
+ '@expo/package-manager': 1.0.1
'@expo/plist': 0.0.20
'@expo/prebuild-config': 6.0.0(expo-modules-autolinking@1.1.2)
'@expo/rudder-sdk-node': 1.1.1
@@ -1699,7 +1685,7 @@ packages:
bplist-parser: 0.3.2
cacache: 15.3.0
chalk: 4.1.2
- ci-info: 3.7.1
+ ci-info: 3.8.0
debug: 4.3.4
env-editor: 0.4.2
form-data: 3.0.1
@@ -1716,7 +1702,7 @@ packages:
md5-file: 3.2.3
md5hex: 1.0.0
minipass: 3.1.6
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
node-forge: 1.3.1
npm-package-arg: 7.0.0
ora: 3.4.0
@@ -1728,7 +1714,7 @@ packages:
resolve-from: 5.0.0
semver: 6.3.0
send: 0.18.0
- slugify: 1.6.5
+ slugify: 1.6.6
structured-headers: 0.4.1
tar: 6.1.13
tempy: 0.7.1
@@ -1774,24 +1760,6 @@ packages:
/@expo/config-types@48.0.0:
resolution: {integrity: sha512-DwyV4jTy/+cLzXGAo1xftS6mVlSiLIWZjl9DjTCLPFVgNYQxnh7htPilRv4rBhiNs7KaznWqKU70+4zQoKVT9A==}
- /@expo/config@8.0.1:
- resolution: {integrity: sha512-mwz2vmOnwbSJfLpAx3HaaQDtItnDuC3MNFsi1j8ld8y7yBFhipa73t8qkJ4g4FG5mqgC35+kv0ejwnh7v1gROQ==}
- dependencies:
- '@babel/code-frame': 7.10.4
- '@expo/config-plugins': 6.0.1
- '@expo/config-types': 48.0.0
- '@expo/json-file': 8.2.37
- getenv: 1.0.0
- glob: 7.1.6
- require-from-string: 2.0.2
- resolve-from: 5.0.0
- semver: 7.3.2
- slugify: 1.6.5
- sucrase: 3.29.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@expo/config@8.0.2:
resolution: {integrity: sha512-WubrzTNNdAXy1FU8TdyQ7D9YtDj2tN3fWXDq+C8In+nB7Qc08zwH9cVdaGZ+rBVmjFZBh5ACfObKq/m9cm4QQA==}
dependencies:
@@ -1804,8 +1772,8 @@ packages:
require-from-string: 2.0.2
resolve-from: 5.0.0
semver: 7.3.2
- slugify: 1.6.5
- sucrase: 3.29.0
+ slugify: 1.6.6
+ sucrase: 3.31.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -1829,17 +1797,17 @@ packages:
resolution: {integrity: sha512-9+6QGRdymj3dmTp1vUpROvWJ+Ezz6Qp9xHafAcaRHzw322pUCOiRKxTYqDqYYZ/72shrHPGQ2CiIXTnV1vM2tA==}
dependencies:
'@expo/bunyan': 4.0.0
- '@expo/metro-config': 0.7.0
+ '@expo/metro-config': 0.7.1
'@expo/osascript': 2.0.33
'@expo/spawn-async': 1.5.0
- body-parser: 1.20.1
+ body-parser: 1.20.2
chalk: 4.1.2
connect: 3.7.0
fs-extra: 9.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
- node-fetch: 2.6.7
- open: 8.4.0
+ node-fetch: 2.6.9
+ open: 8.4.2
resolve-from: 5.0.0
semver: 7.3.2
serialize-error: 6.0.0
@@ -1878,7 +1846,7 @@ packages:
getenv: 1.0.0
jimp-compact: 0.16.1
mime: 2.6.0
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
parse-png: 2.1.0
resolve-from: 5.0.0
semver: 7.3.2
@@ -1894,8 +1862,8 @@ packages:
json5: 2.2.3
write-file-atomic: 2.4.3
- /@expo/metro-config@0.7.0:
- resolution: {integrity: sha512-i/BC6wglvniW+XOTw24tYQ618kd6GrlDForXyUef3ZLAowyeihg0UWU/+Scz69LytQhPEpo4FBgaHdZej4oz0g==}
+ /@expo/metro-config@0.7.1:
+ resolution: {integrity: sha512-vGWU62Zp5pRGw5IEHDNdqvsy62/hu/Na7bswePYVjoaItOjJY7+qilFeF0AAK+3V8qAM8fpltH3ByylKfWaA7A==}
dependencies:
'@expo/config': 8.0.2
chalk: 4.1.2
@@ -1903,18 +1871,18 @@ packages:
find-yarn-workspace-root: 2.0.0
getenv: 1.0.0
resolve-from: 5.0.0
- sucrase: 3.29.0
+ sucrase: 3.31.0
transitivePeerDependencies:
- supports-color
dev: false
- /@expo/metro-runtime@2.0.2(react-native@0.71.4):
- resolution: {integrity: sha512-kGlBMcDaZNewAz1dGtNHbjOInp81Li6iRMgPRC9JB+PLKSDPUEoPeWmo3Gy+ouQDg+lgvSHM0UCqgZ0c0Ah41Q==}
+ /@expo/metro-runtime@2.0.3(react-native@0.71.4):
+ resolution: {integrity: sha512-X0lSkD+Z14jd2jSo6mZNlzBB/dDRzGzsIX86ai9H3JDsGQ5gNhTBEsCsvCJCZSCxJ86d7OtR/L1/QdBTOeUlTg==}
peerDependencies:
react-native: '*'
dependencies:
'@bacons/react-views': 1.1.3(react-native@0.71.4)
- qs: 6.11.0
+ qs: 6.11.1
react-native: 0.71.4(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0)
dev: false
@@ -1926,8 +1894,8 @@ packages:
exec-async: 2.2.0
dev: false
- /@expo/package-manager@1.0.0:
- resolution: {integrity: sha512-hVRuTUrmc75OIiNWKuOQ3MZywq40iG1Ov4ZUpRW8yGxj1x+YQVulfysJkfpzcBS1WTTZsqKw5UWBgKePMva3dA==}
+ /@expo/package-manager@1.0.1:
+ resolution: {integrity: sha512-ue6NIIsNafa2bK7zUl7Y61YNtkPsg7sJcTOyQo/87Yqf6Q+2bOrvdw1xjviaFrMsTZcpOPVf+ZIEYtE0lw0k6A==}
dependencies:
'@expo/json-file': 8.2.37
'@expo/spawn-async': 1.5.0
@@ -1954,7 +1922,7 @@ packages:
peerDependencies:
expo-modules-autolinking: '>=0.8.1'
dependencies:
- '@expo/config': 8.0.1
+ '@expo/config': 8.0.2
'@expo/config-plugins': 6.0.1
'@expo/config-types': 48.0.0
'@expo/image-utils': 0.3.22
@@ -1978,7 +1946,7 @@ packages:
'@segment/loosely-validate-event': 2.0.0
fetch-retry: 4.1.1
md5: 2.3.0
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
remove-trailing-slash: 0.1.1
uuid: 8.3.2
transitivePeerDependencies:
@@ -2013,10 +1981,10 @@ packages:
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
dev: false
- /@graphql-typed-document-node/core@3.1.1(graphql@15.8.0):
- resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==}
+ /@graphql-typed-document-node/core@3.2.0(graphql@15.8.0):
+ resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
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: ^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 || ^17.0.0
dependencies:
graphql: 15.8.0
dev: false
@@ -2070,40 +2038,40 @@ packages:
- supports-color
dev: false
- /@jest/create-cache-key-function@29.3.1:
- resolution: {integrity: sha512-4i+E+E40gK13K78ffD/8cy4lSSqeWwyXeTZoq16tndiCP12hC8uQsPJdIu5C6Kf22fD8UbBk71so7s/6VwpUOQ==}
+ /@jest/create-cache-key-function@29.5.0:
+ resolution: {integrity: sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.4.2
+ '@jest/types': 29.5.0
dev: false
- /@jest/environment@29.4.2:
- resolution: {integrity: sha512-JKs3VUtse0vQfCaFGJRX1bir9yBdtasxziSyu+pIiEllAQOe4oQhdCYIf3+Lx+nGglFktSKToBnRJfD5QKp+NQ==}
+ /@jest/environment@29.5.0:
+ resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/fake-timers': 29.4.2
- '@jest/types': 29.4.2
- '@types/node': 18.15.10
- jest-mock: 29.4.2
+ '@jest/fake-timers': 29.5.0
+ '@jest/types': 29.5.0
+ '@types/node': 18.15.11
+ jest-mock: 29.5.0
dev: false
- /@jest/fake-timers@29.4.2:
- resolution: {integrity: sha512-Ny1u0Wg6kCsHFWq7A/rW/tMhIedq2siiyHyLpHCmIhP7WmcAmd2cx95P+0xtTZlj5ZbJxIRQi4OPydZZUoiSQQ==}
+ /@jest/fake-timers@29.5.0:
+ resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.4.2
+ '@jest/types': 29.5.0
'@sinonjs/fake-timers': 10.0.2
- '@types/node': 18.15.10
- jest-message-util: 29.4.2
- jest-mock: 29.4.2
- jest-util: 29.4.2
+ '@types/node': 18.15.11
+ jest-message-util: 29.5.0
+ jest-mock: 29.5.0
+ jest-util: 29.5.0
dev: false
- /@jest/schemas@29.4.2:
- resolution: {integrity: sha512-ZrGzGfh31NtdVH8tn0mgJw4khQuNHiKqdzJAFbCaERbyCP9tHlxWuL/mnMu8P7e/+k4puWjI1NOzi/sFsjce/g==}
+ /@jest/schemas@29.4.3:
+ resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.25.21
+ '@sinclair/typebox': 0.25.24
dev: false
/@jest/types@26.6.2:
@@ -2112,7 +2080,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
'@types/yargs': 15.0.15
chalk: 4.1.2
dev: false
@@ -2123,20 +2091,20 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
'@types/yargs': 16.0.5
chalk: 4.1.2
dev: false
- /@jest/types@29.4.2:
- resolution: {integrity: sha512-CKlngyGP0fwlgC1BRUtPZSiWLBhyS9dKwKmyGxk8Z6M82LBEGB2aLQSg+U1MyLsU+M7UjnlLllBM2BLWKVm/Uw==}
+ /@jest/types@29.5.0:
+ resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 29.4.2
+ '@jest/schemas': 29.4.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.15.10
- '@types/yargs': 17.0.19
+ '@types/node': 18.15.11
+ '@types/yargs': 17.0.24
chalk: 4.1.2
dev: false
@@ -2227,13 +2195,12 @@ packages:
read-yaml-file: 1.1.0
dev: false
- /@next-auth/prisma-adapter@1.0.5(@prisma/client@4.12.0)(next-auth@4.20.1):
+ /@next-auth/prisma-adapter@1.0.5(next-auth@4.20.1):
resolution: {integrity: sha512-VqMS11IxPXrPGXw6Oul6jcyS/n8GLOWzRMrPr3EMdtD6eOalM6zz05j08PcNiis8QzkfuYnCv49OvufTuaEwYQ==}
peerDependencies:
'@prisma/client': '>=2.26.0 || >=3'
next-auth: ^4
dependencies:
- '@prisma/client': 4.12.0(prisma@4.12.0)
next-auth: 4.20.1(next@13.2.4)(react-dom@18.2.0)(react@18.2.0)
dev: false
@@ -2474,7 +2441,7 @@ packages:
cosmiconfig: 5.2.1
deepmerge: 3.3.0
glob: 7.2.3
- joi: 17.7.0
+ joi: 17.9.1
transitivePeerDependencies:
- encoding
dev: false
@@ -2608,11 +2575,11 @@ packages:
chalk: 4.1.2
find-up: 5.0.0
mime: 2.6.0
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
open: 6.4.0
ora: 5.4.1
semver: 6.3.0
- shell-quote: 1.7.4
+ shell-quote: 1.8.0
transitivePeerDependencies:
- encoding
dev: false
@@ -2620,7 +2587,7 @@ packages:
/@react-native-community/cli-types@10.0.0:
resolution: {integrity: sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==}
dependencies:
- joi: 17.7.0
+ joi: 17.9.1
dev: false
/@react-native-community/cli@10.2.0(@babel/core@7.21.3):
@@ -2690,7 +2657,7 @@ packages:
dependencies:
'@react-navigation/routers': 6.1.8
escape-string-regexp: 4.0.0
- nanoid: 3.3.4
+ nanoid: 3.3.6
query-string: 7.1.3
react: 18.2.0
react-is: 16.13.1
@@ -2738,7 +2705,7 @@ packages:
'@react-navigation/core': 6.4.8(react@18.2.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
- nanoid: 3.3.4
+ nanoid: 3.3.6
react: 18.2.0
react-native: 0.71.4(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0)
dev: false
@@ -2746,7 +2713,7 @@ packages:
/@react-navigation/routers@6.1.8:
resolution: {integrity: sha512-CEge+ZLhb1HBrSvv4RwOol7EKLW1QoqVIQlE9TN5MpxS/+VoQvP+cLbuz0Op53/iJfYhtXRFd1ZAd3RTRqto9w==}
dependencies:
- nanoid: 3.3.4
+ nanoid: 3.3.6
dev: false
/@rushstack/eslint-patch@1.2.0:
@@ -2788,8 +2755,8 @@ packages:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: false
- /@sinclair/typebox@0.25.21:
- resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==}
+ /@sinclair/typebox@0.25.24:
+ resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
dev: false
/@sindresorhus/is@0.14.0:
@@ -2868,7 +2835,7 @@ packages:
'@trpc/client': 10.18.0(@trpc/server@10.18.0)
'@trpc/react-query': 10.18.0(@tanstack/react-query@4.28.0)(@trpc/client@10.18.0)(@trpc/server@10.18.0)(react-dom@18.2.0)(react@18.2.0)
'@trpc/server': 10.18.0
- next: 13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)
+ next: 13.2.4(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-ssr-prepass: 1.5.0(react@18.2.0)
@@ -2905,10 +2872,6 @@ packages:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
dev: false
- /@types/hammerjs@2.0.41:
- resolution: {integrity: sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==}
- dev: false
-
/@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: false
@@ -2936,15 +2899,15 @@ packages:
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
dev: false
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: false
- /@types/node@18.15.10:
- resolution: {integrity: sha512-9avDaQJczATcXgfmMAW3MIWArOO7A+m90vuCFLr8AotWf8igO/mRoYukrk2cqZVtv38tHs33retzHEilM7FpeQ==}
+ /@types/node@18.15.11:
+ resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==}
/@types/prettier@2.7.2:
resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==}
@@ -2961,25 +2924,25 @@ packages:
/@types/react-dom@18.0.11:
resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
dependencies:
- '@types/react': 18.0.30
+ '@types/react': 18.0.31
dev: true
- /@types/react@18.0.30:
- resolution: {integrity: sha512-AnME2cHDH11Pxt/yYX6r0w448BfTwQOLEhQEjCdwB7QskEI7EKtxhGUsExTQe/MsY3D9D5rMtu62WRocw9A8FA==}
+ /@types/react@18.0.31:
+ resolution: {integrity: sha512-EEG67of7DsvRDU6BLLI0p+k1GojDLz9+lZsnCpCRTa/lOokvyPBvp8S5x+A24hME3yyQuIipcP70KJ6H7Qupww==}
dependencies:
'@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.2
+ '@types/scheduler': 0.16.3
csstype: 3.1.1
dev: true
/@types/responselike@1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
dev: false
- /@types/scheduler@0.16.2:
- resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
+ /@types/scheduler@0.16.3:
+ resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
dev: true
/@types/semver@6.2.3:
@@ -3014,13 +2977,13 @@ packages:
'@types/yargs-parser': 21.0.0
dev: false
- /@types/yargs@17.0.19:
- resolution: {integrity: sha512-cAx3qamwaYX9R0fzOIZAlFpo4A+1uBVCxqpKz9D26uTF4srRXaGTTsikQmaotCtNdbhzyUH7ft6p9ktz9s6UNQ==}
+ /@types/yargs@17.0.24:
+ resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: false
- /@typescript-eslint/eslint-plugin@5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@5.0.2):
+ /@typescript-eslint/eslint-plugin@5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.37.0)(typescript@5.0.3):
resolution: {integrity: sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3032,23 +2995,23 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.4.1
- '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
+ '@typescript-eslint/parser': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
'@typescript-eslint/scope-manager': 5.57.0
- '@typescript-eslint/type-utils': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
- '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
+ '@typescript-eslint/type-utils': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
+ '@typescript-eslint/utils': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
debug: 4.3.4
- eslint: 8.36.0
+ eslint: 8.37.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
semver: 7.3.8
- tsutils: 3.21.0(typescript@5.0.2)
- typescript: 5.0.2
+ tsutils: 3.21.0(typescript@5.0.3)
+ typescript: 5.0.3
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/parser@5.57.0(eslint@8.36.0)(typescript@5.0.2):
+ /@typescript-eslint/parser@5.57.0(eslint@8.37.0)(typescript@5.0.3):
resolution: {integrity: sha512-orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3060,10 +3023,10 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.57.0
'@typescript-eslint/types': 5.57.0
- '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.2)
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.3)
debug: 4.3.4
- eslint: 8.36.0
- typescript: 5.0.2
+ eslint: 8.37.0
+ typescript: 5.0.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -3076,7 +3039,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.57.0
dev: false
- /@typescript-eslint/type-utils@5.57.0(eslint@8.36.0)(typescript@5.0.2):
+ /@typescript-eslint/type-utils@5.57.0(eslint@8.37.0)(typescript@5.0.3):
resolution: {integrity: sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3086,12 +3049,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.2)
- '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.3)
+ '@typescript-eslint/utils': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
debug: 4.3.4
- eslint: 8.36.0
- tsutils: 3.21.0(typescript@5.0.2)
- typescript: 5.0.2
+ eslint: 8.37.0
+ tsutils: 3.21.0(typescript@5.0.3)
+ typescript: 5.0.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -3101,7 +3064,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree@5.57.0(typescript@5.0.2):
+ /@typescript-eslint/typescript-estree@5.57.0(typescript@5.0.3):
resolution: {integrity: sha512-LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3116,25 +3079,25 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0(typescript@5.0.2)
- typescript: 5.0.2
+ tsutils: 3.21.0(typescript@5.0.3)
+ typescript: 5.0.3
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/utils@5.57.0(eslint@8.36.0)(typescript@5.0.2):
+ /@typescript-eslint/utils@5.57.0(eslint@8.37.0)(typescript@5.0.3):
resolution: {integrity: sha512-ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.36.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.37.0)
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.57.0
'@typescript-eslint/types': 5.57.0
- '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.2)
- eslint: 8.36.0
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@5.0.3)
+ eslint: 8.37.0
eslint-scope: 5.1.1
semver: 7.3.8
transitivePeerDependencies:
@@ -3147,7 +3110,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.57.0
- eslint-visitor-keys: 3.3.0
+ eslint-visitor-keys: 3.4.0
dev: false
/@urql/core@2.3.6(graphql@15.8.0):
@@ -3155,7 +3118,7 @@ packages:
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-typed-document-node/core': 3.1.1(graphql@15.8.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0)
graphql: 15.8.0
wonka: 4.0.15
dev: false
@@ -3490,7 +3453,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.10
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
semver: 6.3.0
@@ -3504,7 +3467,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- core-js-compat: 3.27.1
+ core-js-compat: 3.29.1
transitivePeerDependencies:
- supports-color
@@ -3518,8 +3481,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-plugin-react-native-web@0.18.10:
- resolution: {integrity: sha512-2UiwS6G7XKJvpo0X5OFkzGjHGFuNx9J+DgEG8TEmm+X5S0z6EB59W11RDEZghdKzsQzVbs1jB+2VHBuVgjMTiw==}
+ /babel-plugin-react-native-web@0.18.12:
+ resolution: {integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==}
dev: false
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
@@ -3529,12 +3492,12 @@ packages:
/babel-preset-expo@9.3.1(@babel/core@7.21.3):
resolution: {integrity: sha512-1JL4T7q3uXu9FeJhLXDAKhFbWs75Qj2pixA60eR2ROzE9LnrKxm2g42OfcArS4vJcPj2NzcOdPpMI9/ZgF8i8Q==}
dependencies:
- '@babel/plugin-proposal-decorators': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
'@babel/preset-env': 7.20.2(@babel/core@7.21.3)
babel-plugin-module-resolver: 4.1.0
- babel-plugin-react-native-web: 0.18.10
+ babel-plugin-react-native-web: 0.18.12
metro-react-native-babel-preset: 0.73.8(@babel/core@7.21.3)
transitivePeerDependencies:
- '@babel/core'
@@ -3555,21 +3518,21 @@ packages:
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.21.3)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
'@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
@@ -3601,7 +3564,7 @@ packages:
resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
engines: {node: '>=12.0.0'}
dependencies:
- open: 8.4.0
+ open: 8.4.2
dev: false
/big-integer@1.6.51:
@@ -3617,19 +3580,19 @@ packages:
dependencies:
buffer: 5.7.1
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: false
/blueimp-md5@2.19.0:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
dev: false
- /body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ /body-parser@1.20.2:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
bytes: 3.1.2
- content-type: 1.0.4
+ content-type: 1.0.5
debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
@@ -3637,7 +3600,7 @@ packages:
iconv-lite: 0.4.24
on-finished: 2.4.1
qs: 6.11.0
- raw-body: 2.5.1
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
@@ -3903,8 +3866,8 @@ packages:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: false
- /ci-info@3.7.1:
- resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==}
+ /ci-info@3.8.0:
+ resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
dev: false
@@ -4123,8 +4086,8 @@ packages:
- supports-color
dev: false
- /content-type@1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
+ /content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
dev: false
@@ -4148,8 +4111,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /core-js-compat@3.27.1:
- resolution: {integrity: sha512-Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA==}
+ /core-js-compat@3.29.1:
+ resolution: {integrity: sha512-QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA==}
dependencies:
browserslist: 4.21.5
@@ -4225,8 +4188,8 @@ packages:
resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==}
dev: false
- /css-to-react-native@3.0.0:
- resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==}
+ /css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
camelize: 1.0.1
css-color-keywords: 1.0.0
@@ -4518,7 +4481,7 @@ packages:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
- graceful-fs: 4.2.11
+ graceful-fs: 4.2.10
tapable: 2.2.1
dev: false
@@ -4654,7 +4617,7 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /eslint-config-next@13.2.4(eslint@8.36.0)(typescript@5.0.2):
+ /eslint-config-next@13.2.4(eslint@8.37.0)(typescript@5.0.3):
resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -4665,36 +4628,36 @@ packages:
dependencies:
'@next/eslint-plugin-next': 13.2.4
'@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
- eslint: 8.36.0
+ '@typescript-eslint/parser': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
+ eslint: 8.37.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.36.0)
- eslint-plugin-react: 7.32.2(eslint@8.36.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.36.0)
- typescript: 5.0.2
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.37.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.37.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.37.0)
+ eslint-plugin-react: 7.32.2(eslint@8.37.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.37.0)
+ typescript: 5.0.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: false
- /eslint-config-prettier@8.8.0(eslint@8.36.0):
+ /eslint-config-prettier@8.8.0(eslint@8.37.0):
resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.36.0
+ eslint: 8.37.0
dev: false
- /eslint-config-turbo@1.8.6(eslint@8.36.0):
+ /eslint-config-turbo@1.8.6(eslint@8.37.0):
resolution: {integrity: sha512-LSMqrHmFeQcYRuBnzrzw+B2bJ3+o8wxPkRwfK0Y+SSLsq2F/niRJ2kqB8j4uOSCfxybHHpFEB2CgUpQiiyfeoQ==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
- eslint: 8.36.0
- eslint-plugin-turbo: 1.8.6(eslint@8.36.0)
+ eslint: 8.37.0
+ eslint-plugin-turbo: 1.8.6(eslint@8.37.0)
dev: false
/eslint-import-resolver-node@0.3.7:
@@ -4707,7 +4670,7 @@ packages:
- supports-color
dev: false
- /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0):
+ /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.37.0):
resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4716,8 +4679,8 @@ packages:
dependencies:
debug: 4.3.4
enhanced-resolve: 5.12.0
- eslint: 8.36.0
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint: 8.37.0
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.37.0)
get-tsconfig: 4.4.0
globby: 13.1.3
is-core-module: 2.11.0
@@ -4727,7 +4690,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0):
+ /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.37.0):
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -4748,16 +4711,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
+ '@typescript-eslint/parser': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
debug: 3.2.7
- eslint: 8.36.0
+ eslint: 8.37.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.37.0)
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0):
+ /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.37.0):
resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
@@ -4767,15 +4730,15 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@5.0.2)
+ '@typescript-eslint/parser': 5.57.0(eslint@8.37.0)(typescript@5.0.3)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.36.0
+ eslint: 8.37.0
eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.37.0)
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -4790,7 +4753,7 @@ packages:
- supports-color
dev: false
- /eslint-plugin-jsx-a11y@6.7.1(eslint@8.36.0):
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@8.37.0):
resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -4805,7 +4768,7 @@ packages:
axobject-query: 3.1.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.36.0
+ eslint: 8.37.0
has: 1.0.3
jsx-ast-utils: 3.3.3
language-tags: 1.0.5
@@ -4815,16 +4778,16 @@ packages:
semver: 6.3.0
dev: false
- /eslint-plugin-react-hooks@4.6.0(eslint@8.36.0):
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.37.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.36.0
+ eslint: 8.37.0
dev: false
- /eslint-plugin-react@7.32.2(eslint@8.36.0):
+ /eslint-plugin-react@7.32.2(eslint@8.37.0):
resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
engines: {node: '>=4'}
peerDependencies:
@@ -4834,7 +4797,7 @@ packages:
array.prototype.flatmap: 1.3.1
array.prototype.tosorted: 1.1.1
doctrine: 2.1.0
- eslint: 8.36.0
+ eslint: 8.37.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.3
minimatch: 3.1.2
@@ -4848,12 +4811,12 @@ packages:
string.prototype.matchall: 4.0.8
dev: false
- /eslint-plugin-turbo@1.8.6(eslint@8.36.0):
+ /eslint-plugin-turbo@1.8.6(eslint@8.37.0):
resolution: {integrity: sha512-LieXzur+4XtIsLst8GdupTMhvGn2ebFetG3AVErh2jHBy1EobPHbatjcdNZQMy5EsdG35axQVB8KFF3jo4u+OQ==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
- eslint: 8.36.0
+ eslint: 8.37.0
dev: false
/eslint-scope@5.1.1:
@@ -4871,19 +4834,19 @@ packages:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-visitor-keys@3.3.0:
- resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
+ /eslint-visitor-keys@3.4.0:
+ resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint@8.36.0:
- resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==}
+ /eslint@8.37.0:
+ resolution: {integrity: sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.36.0)
- '@eslint-community/regexpp': 4.4.1
- '@eslint/eslintrc': 2.0.1
- '@eslint/js': 8.36.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.37.0)
+ '@eslint-community/regexpp': 4.5.0
+ '@eslint/eslintrc': 2.0.2
+ '@eslint/js': 8.37.0
'@humanwhocodes/config-array': 0.11.8
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -4894,8 +4857,8 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-visitor-keys: 3.3.0
- espree: 9.5.0
+ eslint-visitor-keys: 3.4.0
+ espree: 9.5.1
esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -4923,13 +4886,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /espree@9.5.0:
- resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==}
+ /espree@9.5.1:
+ resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
acorn-jsx: 5.3.2(acorn@8.8.2)
- eslint-visitor-keys: 3.3.0
+ eslint-visitor-keys: 3.4.0
/esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
@@ -5032,7 +4995,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- '@expo/config': 8.0.1
+ '@expo/config': 8.0.2
expo: 48.0.9(@babel/core@7.21.3)
uuid: 3.4.0
transitivePeerDependencies:
@@ -5071,7 +5034,7 @@ packages:
'@types/qs': 6.9.7
expo-constants: 14.2.1(expo@48.0.9)
invariant: 2.2.4
- qs: 6.11.0
+ qs: 6.11.1
url-parse: 1.5.10
transitivePeerDependencies:
- expo
@@ -5096,15 +5059,15 @@ packages:
invariant: 2.2.4
dev: false
- /expo-router@1.4.2(expo-constants@14.2.1)(expo-linking@4.0.1)(expo-modules-autolinking@1.1.2)(expo-status-bar@1.4.4)(expo@48.0.9)(metro@0.73.9)(react-dom@18.2.0)(react-native-gesture-handler@2.9.0)(react-native-safe-area-context@4.5.0)(react-native-screens@3.20.0)(react-native@0.71.4)(react@18.2.0):
- resolution: {integrity: sha512-u64zGQYgXrIS2vgDKKBnJFQLDxRortwn0wwRO0d03EJS47lfid5XCHiC6l+wkjBxZ3fCKG49uV2SOq4HnySO/Q==}
+ /expo-router@1.4.3(expo-constants@14.2.1)(expo-linking@4.0.1)(expo-status-bar@1.4.4)(expo@48.0.9)(react-dom@18.2.0)(react-native-safe-area-context@4.5.0)(react-native-screens@3.20.0)(react-native@0.71.4)(react@18.2.0):
+ resolution: {integrity: sha512-mNjvzEsZfDAZYKAhg2co9WbHCq26pa6SOK0mYxRqtbUdl2wMxdE5IJzZupd56zw6q+M6l///7OCLDhBG5nCB7g==}
peerDependencies:
'@react-navigation/drawer': ^6.5.8
expo: ^48.0.0
expo-constants: '*'
expo-linking: '*'
expo-status-bar: '*'
- metro: ~0.73.7
+ metro: ~0.76.0
react-native-gesture-handler: '*'
react-native-reanimated: '*'
react-native-safe-area-context: '*'
@@ -5116,7 +5079,7 @@ packages:
optional: true
dependencies:
'@bacons/react-views': 1.1.3(react-native@0.71.4)
- '@expo/metro-runtime': 2.0.2(react-native@0.71.4)
+ '@expo/metro-runtime': 2.0.3(react-native@0.71.4)
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
'@react-navigation/bottom-tabs': 6.5.7(@react-navigation/native@6.1.6)(react-native-safe-area-context@4.5.0)(react-native-screens@3.20.0)(react-native@0.71.4)(react@18.2.0)
'@react-navigation/native': 6.1.6(react-native@0.71.4)(react@18.2.0)
@@ -5124,12 +5087,10 @@ packages:
expo: 48.0.9(@babel/core@7.21.3)
expo-constants: 14.2.1(expo@48.0.9)
expo-linking: 4.0.1(expo@48.0.9)
- expo-splash-screen: 0.18.1(expo-modules-autolinking@1.1.2)(expo@48.0.9)
+ expo-splash-screen: 0.18.1(expo@48.0.9)
expo-status-bar: 1.4.4
- metro: 0.73.9
query-string: 7.1.3
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
- react-native-gesture-handler: 2.9.0(react-native@0.71.4)(react@18.2.0)
react-native-safe-area-context: 4.5.0(react-native@0.71.4)(react@18.2.0)
react-native-screens: 3.20.0(react-native@0.71.4)(react@18.2.0)
url: 0.11.0
@@ -5142,7 +5103,7 @@ packages:
- supports-color
dev: false
- /expo-splash-screen@0.18.1(expo-modules-autolinking@1.1.2)(expo@48.0.9):
+ /expo-splash-screen@0.18.1(expo@48.0.9):
resolution: {integrity: sha512-1di1kuh14likGUs3fyVZWAqEMxhmdAjpmf9T8Qk5OzUa5oPEMEDYB2e2VprddWnJNBVVe/ojBDSCY8w56/LS0Q==}
peerDependencies:
expo: '*'
@@ -5183,7 +5144,7 @@ packages:
getenv: 1.0.0
invariant: 2.2.4
md5-file: 3.2.3
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
pretty-format: 26.6.2
uuid: 3.4.0
transitivePeerDependencies:
@@ -5286,7 +5247,7 @@ packages:
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 0.7.32
+ ua-parser-js: 0.7.34
transitivePeerDependencies:
- encoding
dev: false
@@ -5466,7 +5427,7 @@ packages:
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
dev: false
@@ -5803,12 +5764,6 @@ packages:
source-map: 0.7.4
dev: false
- /hoist-non-react-statics@3.3.2:
- resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
- dependencies:
- react-is: 16.13.1
- dev: false
-
/hosted-git-info@3.0.8:
resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==}
engines: {node: '>=10'}
@@ -6297,16 +6252,16 @@ packages:
resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
dev: false
- /jest-environment-node@29.4.2:
- resolution: {integrity: sha512-MLPrqUcOnNBc8zTOfqBbxtoa8/Ee8tZ7UFW7hRDQSUT+NGsvS96wlbHGTf+EFAT9KC3VNb7fWEM6oyvmxtE/9w==}
+ /jest-environment-node@29.5.0:
+ resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.4.2
- '@jest/fake-timers': 29.4.2
- '@jest/types': 29.4.2
- '@types/node': 18.15.10
- jest-mock: 29.4.2
- jest-util: 29.4.2
+ '@jest/environment': 29.5.0
+ '@jest/fake-timers': 29.5.0
+ '@jest/types': 29.5.0
+ '@types/node': 18.15.11
+ jest-mock: 29.5.0
+ jest-util: 29.5.0
dev: false
/jest-get-type@26.3.0:
@@ -6314,28 +6269,28 @@ packages:
engines: {node: '>= 10.14.2'}
dev: false
- /jest-message-util@29.4.2:
- resolution: {integrity: sha512-SElcuN4s6PNKpOEtTInjOAA8QvItu0iugkXqhYyguRvQoXapg5gN+9RQxLAkakChZA7Y26j6yUCsFWN+hlKD6g==}
+ /jest-message-util@29.5.0:
+ resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/code-frame': 7.18.6
- '@jest/types': 29.4.2
+ '@jest/types': 29.5.0
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.5
- pretty-format: 29.4.2
+ pretty-format: 29.5.0
slash: 3.0.0
stack-utils: 2.0.6
dev: false
- /jest-mock@29.4.2:
- resolution: {integrity: sha512-x1FSd4Gvx2yIahdaIKoBjwji6XpboDunSJ95RpntGrYulI1ByuYQCKN/P7hvk09JB74IonU3IPLdkutEWYt++g==}
+ /jest-mock@29.5.0:
+ resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.4.2
- '@types/node': 18.15.10
- jest-util: 29.4.2
+ '@jest/types': 29.5.0
+ '@types/node': 18.15.11
+ jest-util: 29.5.0
dev: false
/jest-regex-util@27.5.1:
@@ -6347,7 +6302,7 @@ packages:
resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
graceful-fs: 4.2.11
dev: false
@@ -6356,21 +6311,21 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
chalk: 4.1.2
- ci-info: 3.7.1
+ ci-info: 3.8.0
graceful-fs: 4.2.11
picomatch: 2.3.1
dev: false
- /jest-util@29.4.2:
- resolution: {integrity: sha512-wKnm6XpJgzMUSRFB7YF48CuwdzuDIHenVuoIb1PLuJ6F+uErZsuDkU+EiExkChf6473XcawBrSfDSnXl+/YG4g==}
+ /jest-util@29.5.0:
+ resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.4.2
- '@types/node': 18.15.10
+ '@jest/types': 29.5.0
+ '@types/node': 18.15.11
chalk: 4.1.2
- ci-info: 3.7.1
+ ci-info: 3.8.0
graceful-fs: 4.2.11
picomatch: 2.3.1
dev: false
@@ -6391,7 +6346,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.15.10
+ '@types/node': 18.15.11
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
@@ -6408,8 +6363,8 @@ packages:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: false
- /joi@17.7.0:
- resolution: {integrity: sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==}
+ /joi@17.9.1:
+ resolution: {integrity: sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -6460,12 +6415,12 @@ packages:
'@babel/parser': 7.21.3
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
'@babel/preset-env': 7.20.2(@babel/core@7.21.3)
'@babel/preset-flow': 7.18.6(@babel/core@7.21.3)
- '@babel/preset-typescript': 7.18.6(@babel/core@7.21.3)
- '@babel/register': 7.18.9(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
+ '@babel/register': 7.21.0(@babel/core@7.21.3)
babel-core: 7.0.0-bridge.0(@babel/core@7.21.3)
chalk: 4.1.2
flow-parser: 0.185.2
@@ -6613,8 +6568,8 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
- /lilconfig@2.0.6:
- resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
+ /lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
/lines-and-columns@1.2.4:
@@ -6886,7 +6841,7 @@ packages:
connect: 3.7.0
debug: 2.6.9
ws: 7.5.9
- yargs: 17.6.2
+ yargs: 17.7.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -6896,7 +6851,7 @@ packages:
/metro-minify-terser@0.73.9:
resolution: {integrity: sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==}
dependencies:
- terser: 5.16.3
+ terser: 5.16.8
dev: false
/metro-minify-uglify@0.73.9:
@@ -6917,7 +6872,7 @@ packages:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.3)
@@ -6925,26 +6880,26 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
'@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.3)
- '@babel/plugin-transform-runtime': 7.19.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-typescript': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
'@babel/template': 7.20.7
react-refresh: 0.4.3
@@ -6964,7 +6919,7 @@ packages:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.3)
@@ -6972,26 +6927,26 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
'@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.3)
- '@babel/plugin-transform-runtime': 7.19.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
'@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
'@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
'@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-typescript': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
'@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
'@babel/template': 7.20.7
react-refresh: 0.4.3
@@ -7190,7 +7145,7 @@ packages:
metro-transform-plugins: 0.73.9
metro-transform-worker: 0.73.9
mime-types: 2.1.35
- node-fetch: 2.6.7
+ node-fetch: 2.6.9
nullthrows: 1.1.1
rimraf: 3.0.2
serialize-error: 2.1.0
@@ -7199,7 +7154,7 @@ packages:
temp: 0.8.3
throat: 5.0.0
ws: 7.5.9
- yargs: 17.6.2
+ yargs: 17.7.1
transitivePeerDependencies:
- bufferutil
- encoding
@@ -7310,11 +7265,9 @@ packages:
yallist: 4.0.0
dev: false
- /minipass@4.0.0:
- resolution: {integrity: sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==}
+ /minipass@4.2.5:
+ resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==}
engines: {node: '>=8'}
- dependencies:
- yallist: 4.0.0
dev: false
/minizlib@2.1.2:
@@ -7380,6 +7333,12 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ /nanoid@3.3.6:
+ resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: false
+
/nanomatch@1.2.13:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
@@ -7399,17 +7358,17 @@ packages:
- supports-color
dev: false
- /nativewind@2.0.11(react@18.2.0)(tailwindcss@3.3.0):
+ /nativewind@2.0.11(react@18.2.0)(tailwindcss@3.3.1):
resolution: {integrity: sha512-qCEXUwKW21RYJ33KRAJl3zXq2bCq82WoI564fI21D/TiqhfmstZOqPN53RF8qK1NDK6PGl56b2xaTxgObEePEg==}
engines: {node: '>=14.18'}
peerDependencies:
tailwindcss: ~3
dependencies:
- '@babel/generator': 7.20.7
+ '@babel/generator': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/types': 7.19.0
css-mediaquery: 0.1.2
- css-to-react-native: 3.0.0
+ css-to-react-native: 3.2.0
micromatch: 4.0.5
postcss: 8.4.21
postcss-calc: 8.2.4(postcss@8.4.21)
@@ -7417,7 +7376,7 @@ packages:
postcss-css-variables: 0.18.0(postcss@8.4.21)
postcss-nested: 5.0.6(postcss@8.4.21)
react-is: 18.2.0
- tailwindcss: 3.3.0(postcss@8.4.21)
+ tailwindcss: 3.3.1(postcss@8.4.21)
use-sync-external-store: 1.2.0(react@18.2.0)
transitivePeerDependencies:
- react
@@ -7464,7 +7423,7 @@ packages:
'@panva/hkdf': 1.0.2
cookie: 0.5.0
jose: 4.13.1
- next: 13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)
+ next: 13.2.4(react-dom@18.2.0)(react@18.2.0)
oauth: 0.9.15
openid-client: 5.4.0
preact: 10.11.3
@@ -7474,7 +7433,7 @@ packages:
uuid: 8.3.2
dev: false
- /next@13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0):
+ /next@13.2.4(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==}
engines: {node: '>=14.6.0'}
hasBin: true
@@ -7501,7 +7460,7 @@ packages:
postcss: 8.4.14
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.21.3)(react@18.2.0)
+ styled-jsx: 5.1.1(react@18.2.0)
optionalDependencies:
'@next/swc-android-arm-eabi': 13.2.4
'@next/swc-android-arm64': 13.2.4
@@ -7549,6 +7508,18 @@ packages:
whatwg-url: 5.0.0
dev: false
+ /node-fetch@2.6.9:
+ resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+ dev: false
+
/node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
@@ -7768,6 +7739,15 @@ packages:
is-wsl: 2.2.0
dev: false
+ /open@8.4.2:
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ define-lazy-prop: 2.0.0
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ dev: false
+
/openid-client@5.4.0:
resolution: {integrity: sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ==}
dependencies:
@@ -8073,11 +8053,11 @@ packages:
read-cache: 1.0.0
resolve: 1.22.1
- /postcss-js@4.0.0(postcss@8.4.21):
- resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
+ /postcss-js@4.0.1(postcss@8.4.21):
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
- postcss: ^8.3.3
+ postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.21
@@ -8094,7 +8074,7 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.0.6
+ lilconfig: 2.1.0
postcss: 8.4.21
yaml: 1.10.2
@@ -8166,8 +8146,8 @@ packages:
engines: {node: '>=4'}
dev: false
- /prettier-plugin-tailwindcss@0.2.5(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.7):
- resolution: {integrity: sha512-vZ/iKieyCx0WTxHbkf5E1rBlv/ybFk8WTT4hL5W2jlVxum2Zbe0jMUpuQdDrpa4z2vnPiJ5KIWCqL/kd16fKYg==}
+ /prettier-plugin-tailwindcss@0.2.6(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.7):
+ resolution: {integrity: sha512-F+7XCl9RLF/LPrGdUMHWpsT6TM31JraonAUyE6eBmpqymFvDwyl0ETHsKFHP1NG+sEfv8bmKqnTxEbWQbHPlBA==}
engines: {node: '>=12.17.0'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
@@ -8243,11 +8223,11 @@ packages:
react-is: 17.0.2
dev: false
- /pretty-format@29.4.2:
- resolution: {integrity: sha512-qKlHR8yFVCbcEWba0H0TOC8dnLlO4vPlyEjRPw31FZ2Rupy9nLa8ZLbYny8gWEl8CkEhJqAE6IzdNELTBVcBEg==}
+ /pretty-format@29.5.0:
+ resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 29.4.2
+ '@jest/schemas': 29.4.3
ansi-styles: 5.2.0
react-is: 18.2.0
dev: false
@@ -8341,6 +8321,13 @@ packages:
side-channel: 1.0.4
dev: false
+ /qs@6.11.1:
+ resolution: {integrity: sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: false
+
/query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
@@ -8373,8 +8360,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /raw-body@2.5.1:
- resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ /raw-body@2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
dependencies:
bytes: 3.1.2
@@ -8393,10 +8380,10 @@ packages:
strip-json-comments: 2.0.1
dev: false
- /react-devtools-core@4.27.2:
- resolution: {integrity: sha512-8SzmIkpO87alD7Xr6gWIEa1jHkMjawOZ+6egjazlnjB4UUcbnzGDf/vBJ4BzGuWWEM+pzrxuzsPpcMqlQkYK2g==}
+ /react-devtools-core@4.27.4:
+ resolution: {integrity: sha512-dvZjrAJjahd6NNl7dDwEk5TyHsWJxDpYL7VnD9jdEr98EEEsVhw9G8JDX54Nrb3XIIOBlJDpjo3AuBuychX9zg==}
dependencies:
- shell-quote: 1.7.4
+ shell-quote: 1.8.0
ws: 7.5.9
transitivePeerDependencies:
- bufferutil
@@ -8413,8 +8400,8 @@ packages:
scheduler: 0.23.0
dev: false
- /react-fast-compare@3.2.0:
- resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
+ /react-fast-compare@3.2.1:
+ resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
dev: false
/react-freeze@1.0.3(react@18.2.0):
@@ -8437,7 +8424,7 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-fast-compare: 3.2.0
+ react-fast-compare: 3.2.1
shallowequal: 1.1.0
dev: false
@@ -8465,21 +8452,6 @@ packages:
- supports-color
dev: false
- /react-native-gesture-handler@2.9.0(react-native@0.71.4)(react@18.2.0):
- resolution: {integrity: sha512-a0BcH3Qb1tgVqUutc6d3VuWQkI1AM3+fJx8dkxzZs9t06qA27QgURYFoklpabuWpsUTzuKRpxleykp25E8m7tg==}
- peerDependencies:
- react: '*'
- react-native: '*'
- dependencies:
- '@egjs/hammerjs': 2.0.17
- hoist-non-react-statics: 3.3.2
- invariant: 2.2.4
- lodash: 4.17.21
- prop-types: 15.8.1
- react: 18.2.0
- react-native: 0.71.4(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0)
- dev: false
-
/react-native-gradle-plugin@0.71.17:
resolution: {integrity: sha512-OXXYgpISEqERwjSlaCiaQY6cTY5CH6j73gdkWpK0hedxtiWMWgH+i5TOi4hIGYitm9kQBeyDu+wim9fA8ROFJA==}
dev: false
@@ -8513,7 +8485,7 @@ packages:
peerDependencies:
react: 18.2.0
dependencies:
- '@jest/create-cache-key-function': 29.3.1
+ '@jest/create-cache-key-function': 29.5.0
'@react-native-community/cli': 10.2.0(@babel/core@7.21.3)
'@react-native-community/cli-platform-android': 10.2.0
'@react-native-community/cli-platform-ios': 10.2.0
@@ -8526,7 +8498,7 @@ packages:
deprecated-react-native-prop-types: 3.0.1
event-target-shim: 5.0.1
invariant: 2.2.4
- jest-environment-node: 29.4.2
+ jest-environment-node: 29.5.0
jsc-android: 250231.0.0
memoize-one: 5.2.1
metro-react-native-babel-transformer: 0.73.8(@babel/core@7.21.3)
@@ -8537,7 +8509,7 @@ packages:
pretty-format: 26.6.2
promise: 8.3.0
react: 18.2.0
- react-devtools-core: 4.27.2
+ react-devtools-core: 4.27.4
react-native-codegen: 0.71.5(@babel/preset-env@7.20.2)
react-native-gradle-plugin: 0.71.17
react-refresh: 0.4.3
@@ -8602,8 +8574,8 @@ packages:
strip-bom: 3.0.0
dev: false
- /readable-stream@2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ /readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
@@ -8614,8 +8586,8 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readable-stream@3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
@@ -8690,13 +8662,13 @@ packages:
functions-have-names: 1.2.3
dev: false
- /regexpu-core@5.2.2:
- resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==}
+ /regexpu-core@5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
regenerate-unicode-properties: 10.1.0
- regjsgen: 0.7.1
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
@@ -8715,9 +8687,6 @@ packages:
rc: 1.2.8
dev: false
- /regjsgen@0.7.1:
- resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
-
/regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
@@ -9049,8 +9018,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote@1.7.4:
- resolution: {integrity: sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==}
+ /shell-quote@1.8.0:
+ resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==}
dev: false
/side-channel@1.0.4:
@@ -9099,8 +9068,8 @@ packages:
is-fullwidth-code-point: 2.0.0
dev: false
- /slugify@1.6.5:
- resolution: {integrity: sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==}
+ /slugify@1.6.6:
+ resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
engines: {node: '>=8.0.0'}
dev: false
@@ -9356,7 +9325,7 @@ packages:
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
dev: false
- /styled-jsx@5.1.1(@babel/core@7.21.3)(react@18.2.0):
+ /styled-jsx@5.1.1(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -9369,13 +9338,12 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.21.3
client-only: 0.0.1
react: 18.2.0
dev: false
- /sucrase@3.29.0:
- resolution: {integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==}
+ /sucrase@3.31.0:
+ resolution: {integrity: sha512-6QsHnkqyVEzYcaiHsOKkzOtOgdJcb8i54x6AV2hDwyZcY9ZyykGZVw6L/YN98xC0evwTP6utsWWrKRaa8QlfEQ==}
engines: {node: '>=8'}
hasBin: true
dependencies:
@@ -9444,8 +9412,8 @@ packages:
tslib: 2.5.0
dev: false
- /tailwindcss@3.3.0(postcss@8.4.21):
- resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==}
+ /tailwindcss@3.3.1(postcss@8.4.21):
+ resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==}
engines: {node: '>=12.13.0'}
hasBin: true
peerDependencies:
@@ -9460,21 +9428,21 @@ packages:
glob-parent: 6.0.2
is-glob: 4.0.3
jiti: 1.18.2
- lilconfig: 2.0.6
+ lilconfig: 2.1.0
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.21
postcss-import: 14.1.0(postcss@8.4.21)
- postcss-js: 4.0.0(postcss@8.4.21)
+ postcss-js: 4.0.1(postcss@8.4.21)
postcss-load-config: 3.1.4(postcss@8.4.21)
postcss-nested: 6.0.0(postcss@8.4.21)
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
resolve: 1.22.1
- sucrase: 3.29.0
+ sucrase: 3.31.0
transitivePeerDependencies:
- ts-node
@@ -9489,7 +9457,7 @@ packages:
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
- minipass: 4.0.0
+ minipass: 4.2.5
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
@@ -9548,8 +9516,8 @@ packages:
supports-hyperlinks: 2.3.0
dev: false
- /terser@5.16.3:
- resolution: {integrity: sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==}
+ /terser@5.16.8:
+ resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -9580,7 +9548,7 @@ packages:
/through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
xtend: 4.0.2
dev: false
@@ -9687,75 +9655,75 @@ packages:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
dev: false
- /tsutils@3.21.0(typescript@5.0.2):
+ /tsutils@3.21.0(typescript@5.0.3):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.0.2
+ typescript: 5.0.3
dev: false
- /turbo-darwin-64@1.8.6:
- resolution: {integrity: sha512-VlXkQR0TEBAEyBRsvAXBax+fj1EdPKPliwBaCnRLiDUcA/8wYlKte/Kk6ubmj9E0n7U/B4keCxxHiJZqW/5Rqg==}
+ /turbo-darwin-64@1.8.8:
+ resolution: {integrity: sha512-18cSeIm7aeEvIxGyq7PVoFyEnPpWDM/0CpZvXKHpQ6qMTkfNt517qVqUTAwsIYqNS8xazcKAqkNbvU1V49n65Q==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
- /turbo-darwin-arm64@1.8.6:
- resolution: {integrity: sha512-w4L2QLj90ex68UXxTPoqtZPl8mWzc6a1RtPjQhoxAWtZf9T2WXi813dCzYEbVUVC09/DOW/VxZRN7sb2r0KP9A==}
+ /turbo-darwin-arm64@1.8.8:
+ resolution: {integrity: sha512-ruGRI9nHxojIGLQv1TPgN7ud4HO4V8mFBwSgO6oDoZTNuk5ybWybItGR+yu6fni5vJoyMHXOYA2srnxvOc7hjQ==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
- /turbo-linux-64@1.8.6:
- resolution: {integrity: sha512-eV245jefIhMAZskqQKalFwreC5UEdQcuHcBiWcgUk0py76fbwB7+1HfH5cmeJlb3a1sB6f3H0HHmGPmb34feCA==}
+ /turbo-linux-64@1.8.8:
+ resolution: {integrity: sha512-N/GkHTHeIQogXB1/6ZWfxHx+ubYeb8Jlq3b/3jnU4zLucpZzTQ8XkXIAfJG/TL3Q7ON7xQ8yGOyGLhHL7MpFRg==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /turbo-linux-arm64@1.8.6:
- resolution: {integrity: sha512-Kiw3nyEvNU6Bpil4zE5FwhasPAOi59R4YdCmjJp0Sen6V9u+/Jij6SWwaoUdATORJLiYQBbhontWBH55B53VDw==}
+ /turbo-linux-arm64@1.8.8:
+ resolution: {integrity: sha512-hKqLbBHgUkYf2Ww8uBL9UYdBFQ5677a7QXdsFhONXoACbDUPvpK4BKlz3NN7G4NZ+g9dGju+OJJjQP0VXRHb5w==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /turbo-windows-64@1.8.6:
- resolution: {integrity: sha512-34BkAG9r4nE00xeMeVahaF82h8R6SO+IIOcD60fNr2p+Ch+YcQa+DbEWA/KUj3coUTIiNP5XnRCLRUYADdlxjQ==}
+ /turbo-windows-64@1.8.8:
+ resolution: {integrity: sha512-2ndjDJyzkNslXxLt+PQuU21AHJWc8f6MnLypXy3KsN4EyX/uKKGZS0QJWz27PeHg0JS75PVvhfFV+L9t9i+Yyg==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /turbo-windows-arm64@1.8.6:
- resolution: {integrity: sha512-4jWUaI7Lmonp2I3x81GruiCYd0aQsG/xDOYhuv9+j2yIgB/UHJFz/P8PWp/nziwPtGpRd/AheDlPzzyd9lWoqw==}
+ /turbo-windows-arm64@1.8.8:
+ resolution: {integrity: sha512-xCA3oxgmW9OMqpI34AAmKfOVsfDljhD5YBwgs0ZDsn5h3kCHhC4x9W5dDk1oyQ4F5EXSH3xVym5/xl1J6WRpUg==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /turbo@1.8.6:
- resolution: {integrity: sha512-6IOOaa8ytgjnSCTnp3LKAd2uGBZ/Kmx8ZPlI/YMWuKMUqvkXKLbh+w76ApMgMm+faUqti+QujVWovCu2kY6KuQ==}
+ /turbo@1.8.8:
+ resolution: {integrity: sha512-qYJ5NjoTX+591/x09KgsDOPVDUJfU9GoS+6jszQQlLp1AHrf1wRFA3Yps8U+/HTG03q0M4qouOfOLtRQP4QypA==}
hasBin: true
requiresBuild: true
optionalDependencies:
- turbo-darwin-64: 1.8.6
- turbo-darwin-arm64: 1.8.6
- turbo-linux-64: 1.8.6
- turbo-linux-arm64: 1.8.6
- turbo-windows-64: 1.8.6
- turbo-windows-arm64: 1.8.6
+ turbo-darwin-64: 1.8.8
+ turbo-darwin-arm64: 1.8.8
+ turbo-linux-64: 1.8.8
+ turbo-linux-arm64: 1.8.8
+ turbo-windows-64: 1.8.8
+ turbo-windows-arm64: 1.8.8
dev: false
/type-check@0.4.0:
@@ -9814,13 +9782,13 @@ packages:
is-typed-array: 1.1.10
dev: false
- /typescript@5.0.2:
- resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
+ /typescript@5.0.3:
+ resolution: {integrity: sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==}
engines: {node: '>=12.20'}
hasBin: true
- /ua-parser-js@0.7.32:
- resolution: {integrity: sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==}
+ /ua-parser-js@0.7.34:
+ resolution: {integrity: sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==}
dev: false
/uglify-es@3.3.9:
@@ -10263,8 +10231,8 @@ packages:
yargs-parser: 18.1.3
dev: false
- /yargs@17.6.2:
- resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==}
+ /yargs@17.7.1:
+ resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
engines: {node: '>=12'}
dependencies:
cliui: 8.0.1
diff --git a/prettier.config.cjs b/prettier.config.cjs
index 8ec48156a..7a569b51b 100644
--- a/prettier.config.cjs
+++ b/prettier.config.cjs
@@ -1,4 +1,3 @@
-
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig*/
/** @typedef {import("prettier").Config} PrettierConfig*/
/** @typedef {{ tailwindConfig: string }} TailwindConfig*/
@@ -12,6 +11,7 @@ const config = {
semi: true,
trailingComma: "all",
tabWidth: 2,
+ // pluginSearchDirs: false,
plugins: [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss",