diff --git a/.env.example b/.env.example
index c5ef2703..1124f2d7 100644
--- a/.env.example
+++ b/.env.example
@@ -15,3 +15,7 @@ PROJECT_SERVICES_NAMESPACE=wod
# With custom namespace provided, it will be used to prefix all services
# in Docker network for current project
COMPOSE_PROJECT_NAME=nextjs-${APP_NAME}
+
+# Sentry Settings
+NEXT_SENTRY_DSN=
+NEXT_SENTRY_TRACING=
diff --git a/.gitignore b/.gitignore
index 48ff7a5c..6bb1c559 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,7 @@ cypress/videos/
out/
build/
local/
+dist/
# next-sitemap
public/robots.txt
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 00000000..319e41e6
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+strict-peer-dependencies=false
diff --git a/.secretlintignore b/.secretlintignore
new file mode 100644
index 00000000..e279bbaf
--- /dev/null
+++ b/.secretlintignore
@@ -0,0 +1,2 @@
+**/.next
+.next
diff --git a/.stylelintrc.js b/.stylelintrc.js
index 22d15b64..fd954e51 100644
--- a/.stylelintrc.js
+++ b/.stylelintrc.js
@@ -9,4 +9,14 @@ module.exports = {
extends: '@wayofdev/stylelint-config',
},
],
+ rules: {
+ 'at-rule-no-unknown': [
+ true,
+ {
+ ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen'],
+ },
+ ],
+ 'declaration-block-trailing-semicolon': null,
+ 'no-descending-specificity': null,
+ },
}
diff --git a/.templatesyncignore b/.templatesyncignore
index 1b763b1b..c2e0f0ab 100644
--- a/.templatesyncignore
+++ b/.templatesyncignore
@@ -1 +1,2 @@
CHANGELOG.md
+.github/workflows/codeql-analysis.yml
diff --git a/Makefile b/Makefile
index b4511b70..0bb33770 100644
--- a/Makefile
+++ b/Makefile
@@ -116,7 +116,7 @@ purge: down
# Docker Actions
# ------------------------------------------------------------------------------------
up: ## Spin up this project using docker
- $(DOCKER_COMPOSE) up --remove-orphans -d
+ $(DOCKER_COMPOSE) up --remove-orphans
@echo "🚀 Started and available at https://$(APP_NAME).$(PROJECT_SERVICES_NAMESPACE).docker"
.PHONY: up
diff --git a/apps/docs/package.json b/apps/docs/package.json
index f160bbd8..eb177247 100644
--- a/apps/docs/package.json
+++ b/apps/docs/package.json
@@ -9,10 +9,10 @@
"lint": "next lint"
},
"dependencies": {
- "next": "^13.0.7",
+ "next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
- "ui": "workspace:*",
+ "@wayofdev/ui": "workspace:*",
"nextra": "^2.0.1",
"nextra-theme-docs": "^2.0.1"
},
diff --git a/apps/web/.gitignore b/apps/web/.gitignore
new file mode 100644
index 00000000..c82c67ac
--- /dev/null
+++ b/apps/web/.gitignore
@@ -0,0 +1,2 @@
+# Sentry
+.sentryclirc
diff --git a/apps/web/next.config.js b/apps/web/next.config.js
index 70b518be..12563224 100644
--- a/apps/web/next.config.js
+++ b/apps/web/next.config.js
@@ -1,6 +1,38 @@
-module.exports = {
+// This file sets a custom webpack configuration to use your Next.js app
+// with Sentry.
+// https://nextjs.org/docs/api-reference/next.config.js/introduction
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+const { withSentryConfig } = require('@sentry/nextjs')
+
+const moduleExports = {
reactStrictMode: true,
- experimental: {
- transpilePackages: ['ui'],
+ // https://beta.nextjs.org/docs/api-reference/next.config.js#transpilepackages
+ transpilePackages: ['@wayofdev/ui'],
+
+ sentry: {
+ // Use `hidden-source-map` rather than `source-map` as the Webpack `devtool`
+ // for client-side builds. (This will be the default starting in
+ // `@sentry/nextjs` version 8.0.0.) See
+ // https://webpack.js.org/configuration/devtool/ and
+ // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map
+ // for more information.
+ hideSourceMaps: true,
},
}
+
+const sentryWebpackPluginOptions = {
+ // Additional config options for the Sentry Webpack plugin. Keep in mind that
+ // the following options are set automatically, and overriding them is not
+ // recommended:
+ // release, url, org, project, authToken, configFile, stripPrefix,
+ // urlPrefix, include, ignore
+
+ silent: true, // Suppresses all logs
+ // For all available options, see:
+ // https://github.com/getsentry/sentry-webpack-plugin#options.
+}
+
+// Make sure adding Sentry options is the last code to run before exporting, to
+// ensure that your source maps include changes from all other Webpack plugins
+module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions)
diff --git a/apps/web/package.json b/apps/web/package.json
index 99d43405..554a869e 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -6,13 +6,15 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
+ "analyze": "BUNDLE_ANALYZE=both next build",
"lint": "next lint"
},
"dependencies": {
- "next": "^13.0.7",
+ "@wayofdev/ui": "workspace:*",
+ "next": "^13.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
- "ui": "workspace:*"
+ "tailwindcss": "^3.2.4"
},
"devDependencies": {
"@types/jest": "^29.2.4",
@@ -22,9 +24,20 @@
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@wayofdev/browserslist-config": "^1.1.0",
+ "postcss-100vh-fix": "^1.0.2",
+ "postcss": "^8.4.20",
+ "sanitize.css": "^13.0.0",
"eslint": "^8.30.0",
"eslint-config-custom": "workspace:*",
"tsconfig-config": "workspace:*",
- "typescript": "^4.9.4"
+ "typescript": "^4.9.4",
+ "autoprefixer": "^10.4.13",
+ "postcss-cli": "^10.1.0",
+ "postcss-flexbugs-fixes": "^5.0.2",
+ "postcss-normalize": "^10.0.1",
+ "postcss-preset-env": "^7.8.3",
+ "postcss-reporter": "^7.0.5",
+ "browserslist": "^4.21.4",
+ "@sentry/nextjs": "^7.28.1"
}
}
diff --git a/apps/web/pages/index.tsx b/apps/web/pages/index.tsx
deleted file mode 100644
index 1c56bcab..00000000
--- a/apps/web/pages/index.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Button } from 'ui'
-
-export default function Web() {
- return (
-
-
Web
-
-
- )
-}
diff --git a/apps/web/postcss.config.js b/apps/web/postcss.config.js
new file mode 100644
index 00000000..f7eea7cd
--- /dev/null
+++ b/apps/web/postcss.config.js
@@ -0,0 +1,35 @@
+// Customized postcss
+// @link https://nextjs.org/docs/advanced-features/customizing-postcss-config
+// @link https://tailwindcss.com/docs/using-with-preprocessors
+
+const isProd = process.env.NODE_ENV === 'production'
+const supportsIE11 = false
+const enableCssGrid = false
+
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ ...(isProd
+ ? {
+ 'tailwindcss/nesting': {},
+ 'postcss-100vh-fix': {},
+ 'postcss-flexbugs-fixes': {},
+ 'postcss-preset-env': {
+ autoprefixer: {
+ flexbox: 'no-2009',
+ // https://github.com/postcss/autoprefixer#does-autoprefixer-polyfill-grid-layout-for-ie
+ ...(enableCssGrid
+ ? {
+ grid: 'autoplace',
+ }
+ : {}),
+ },
+ stage: 3,
+ features: {
+ 'custom-properties': supportsIE11,
+ },
+ },
+ }
+ : {}),
+ },
+}
diff --git a/apps/web/sentry.client.config.ts b/apps/web/sentry.client.config.ts
new file mode 100644
index 00000000..ba930ca3
--- /dev/null
+++ b/apps/web/sentry.client.config.ts
@@ -0,0 +1,32 @@
+// This file configures the initialization of Sentry on the browser.
+// The config you add here will be used whenever a page is visited.
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+import { init as sentryInit } from '@sentry/nextjs'
+
+sentryInit({
+ dsn: process.env.NEXT_SENTRY_DSN,
+
+ // Adjust this value in production, or use tracesSampler for greater control
+ // @see https://develop.sentry.dev/sdk/performance/
+ tracesSampleRate: ['false', '0'].includes(process.env.NEXT_SENTRY_TRACING ?? '') ? undefined : 1,
+
+ // ...
+ // Note: if you want to override the automatic release value, do not set a
+ // `release` value here - use the environment variable `SENTRY_RELEASE`, so
+ // that it will also get attached to your source maps
+ beforeSend: async (event, hint) => {
+ if (process.env.NODE_ENV === 'development') {
+ console.log('Sentry event', event)
+ console.log('Sentry hint', hint)
+ }
+ return event
+ },
+ ignoreErrors: [
+ /**
+ * @link https://github.com/WICG/ResizeObserver/issues/38#issuecomment-422126006,
+ * @link https://stackoverflow.com/questions/49384120/resizeobserver-loop-limit-exceeded/50387233#50387233
+ */
+ 'ResizeObserver loop limit exceeded',
+ ],
+})
diff --git a/apps/web/sentry.server.config.ts b/apps/web/sentry.server.config.ts
new file mode 100644
index 00000000..2f39e3cb
--- /dev/null
+++ b/apps/web/sentry.server.config.ts
@@ -0,0 +1,27 @@
+// This file configures the initialization of Sentry on the server.
+// The config you add here will be used whenever the server handles a request.
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+import { init as sentryInit } from '@sentry/nextjs'
+
+sentryInit({
+ dsn: process.env.SENTRY_DSN || process.env.NEXT_SENTRY_DSN,
+
+ // Adjust this value in production, or use tracesSampler for greater control
+ // @see https://develop.sentry.dev/sdk/performance/
+ // To turn it off, remove the line
+ // @see https://github.com/getsentry/sentry-javascript/discussions/4503#discussioncomment-2143116
+ tracesSampleRate: 1,
+
+ // ...
+ // Note: if you want to override the automatic release value, do not set a
+ // `release` value here - use the environment variable `SENTRY_RELEASE`, so
+ // that it will also get attached to your source maps
+ beforeSend: async (event, hint) => {
+ if (process.env.NODE_ENV === 'development') {
+ console.log('Sentry event', event)
+ console.log('Sentry hint', hint)
+ }
+ return event
+ },
+})
diff --git a/apps/web/src/pages/index.tsx b/apps/web/src/pages/index.tsx
new file mode 100644
index 00000000..c9c83628
--- /dev/null
+++ b/apps/web/src/pages/index.tsx
@@ -0,0 +1,17 @@
+import { Button } from '@wayofdev/ui'
+import * as React from 'react'
+
+export default function Web() {
+ return (
+ <>
+ Hello world!
+
+
Web
+
+
+
+ Boop
+
+ >
+ )
+}
diff --git a/apps/web/tailwind.config.js b/apps/web/tailwind.config.js
new file mode 100644
index 00000000..ab1c0ee4
--- /dev/null
+++ b/apps/web/tailwind.config.js
@@ -0,0 +1,8 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index 992e3890..732f01fb 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -1,15 +1,22 @@
{
"extends": "tsconfig-config/next.json",
"exclude": ["node_modules", "dist", "coverage"],
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+ "include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
- "outDir": "dist",
- "baseUrl": "./",
- // "paths": {
- // "@/*": [
- // "src/*"
- // ]
- // }
- "moduleResolution": "node"
+ "target": "esnext",
+ "baseUrl": "./src",
+ "allowJs": true,
+ "moduleResolution": "node",
+
+ "noEmit": true,
+ "module": "esnext",
+
+ "jsx": "preserve",
+ "paths": {
+ "@/pages/*": ["./pages/*"],
+ "@/public/*": ["../public/*"],
+ "@wayofdev/ui/*": ["../../../packages/ui/src/*"],
+ "@wayofdev/ui": ["../../../packages/ui/src/index"]
+ }
}
}
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 81e7b298..4a54808d 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -3,7 +3,7 @@ version: '3.9'
services:
app:
- image: wayofdev/node:19-alpine-1.3
+ image: wayofdev/node:19-alpine-1.4
container_name: ${APP_NAME}_app
restart: on-failure
networks:
diff --git a/package.json b/package.json
index 2dc654d7..5ff0449d 100644
--- a/package.json
+++ b/package.json
@@ -60,13 +60,13 @@
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"secretlint": "^5.3.0",
- "stylelint": "^14.16.0",
+ "stylelint": "^14.16.1",
"stylelint-a11y": "^1.2.3",
- "turbo": "latest",
+ "turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0"
},
- "packageManager": "pnpm@7.18.2"
+ "packageManager": "pnpm@7.21.0"
}
diff --git a/packages/ui/.eslintrc.js b/packages/ui/.eslintrc.js
deleted file mode 100644
index 5e71828d..00000000
--- a/packages/ui/.eslintrc.js
+++ /dev/null
@@ -1,19 +0,0 @@
-module.exports = {
- root: true,
- extends: ['custom'],
- plugins: ['import'],
- parserOptions: {
- project: ['tsconfig.json'],
- tsconfigRootDir: __dirname,
- },
- overrides: [
- {
- files: ['**/*.js'],
- extends: ['@wayofdev/eslint-config/'],
- },
- ],
- rules: {
- 'import/extensions': 'off',
- },
- ignorePatterns: ['dist/**'],
-}
diff --git a/packages/ui/.eslintrc.json b/packages/ui/.eslintrc.json
new file mode 100644
index 00000000..571b3002
--- /dev/null
+++ b/packages/ui/.eslintrc.json
@@ -0,0 +1,22 @@
+{
+ "root": true,
+ "extends": "custom",
+ "plugins": ["import"],
+ "rules": {
+ "import/extensions": "off",
+ "unicorn/prevent-abbreviations": [
+ "error",
+ {
+ "replacements": {
+ "env": {
+ "environment": false
+ }
+ }
+ }
+ ]
+ },
+ "ignorePatterns": ["dist/**", ".next/**"],
+ "parserOptions": {
+ "project": ["tsconfig.json"]
+ }
+}
diff --git a/packages/ui/button.tsx b/packages/ui/button.tsx
deleted file mode 100644
index 6445d9d1..00000000
--- a/packages/ui/button.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import * as React from 'react'
-
-export const Button = () => {
- return Boop
-}
diff --git a/packages/ui/index.tsx b/packages/ui/index.tsx
deleted file mode 100644
index 14757e72..00000000
--- a/packages/ui/index.tsx
+++ /dev/null
@@ -1 +0,0 @@
-export * from './button'
diff --git a/packages/ui/package.json b/packages/ui/package.json
index c966cfdf..921f3eed 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,19 +1,52 @@
{
- "name": "ui",
- "version": "0.1.0",
- "main": "./index.tsx",
- "types": "./index.tsx",
+ "name": "@wayofdev/ui",
+ "version": "1.0.0",
"license": "MIT",
+ "sideEffects": false,
+ "type": "module",
+ "exports": {
+ ".": "./src/index.ts",
+ "./*": [
+ "./src/*.ts",
+ "./src/*.tsx",
+ "./src/*/index.ts"
+ ],
+ "./tailwind": {
+ "require": "./src/tailwind.cjs"
+ }
+ },
+ "files": [
+ "src"
+ ],
+ "typesVersions": {
+ "*": {
+ "*": [
+ "src/*",
+ "src/*/index"
+ ]
+ }
+ },
"scripts": {
- "lint": "eslint *.ts*"
+ "lint": "eslint . --ext .ts,.tsx",
+ "build": "pnpm build:swc && pnpm types",
+ "build:swc": "swc src -d dist --copy-files",
+ "clean": "rm -rf ./dist",
+ "types": "tsc --emitDeclarationOnly"
+ },
+ "dependencies": {
+ "@swc/helpers": "^0.4.14",
+ "clsx": "^1.2.1"
},
"devDependencies": {
"@types/react": "^18.0.26",
- "@types/react-dom": "^18.0.9",
"eslint": "^8.30.0",
"eslint-config-custom": "workspace:*",
- "react": "^18.2.0",
"tsconfig-config": "workspace:*",
"typescript": "^4.9.4"
+ },
+ "peerDependencies": {
+ "next": "*",
+ "react": "^18.2",
+ "react-dom": "^18.2"
}
}
diff --git a/packages/ui/src/button/button.tsx b/packages/ui/src/button/button.tsx
new file mode 100644
index 00000000..dca2d84e
--- /dev/null
+++ b/packages/ui/src/button/button.tsx
@@ -0,0 +1,24 @@
+import type { FC, ButtonHTMLAttributes } from 'react'
+import cn from 'clsx'
+
+const Button: FC> = ({
+ children,
+ className,
+ ...properties
+}) => {
+ const rootClassName = cn(
+ 'relative inline-flex items-center justify-center cursor-pointer',
+ 'no-underline py-0 px-3.5 rounded-md border border-solid border-black',
+ 'bg-black text-white text-base font-medium outline-none select-none',
+ 'align-middle whitespace-nowrap leading-10 shadow-md transition-colors',
+ className
+ )
+
+ return (
+
+ {children}
+
+ )
+}
+
+export default Button
diff --git a/packages/ui/src/button/index.tsx b/packages/ui/src/button/index.tsx
new file mode 100644
index 00000000..f1b33c3d
--- /dev/null
+++ b/packages/ui/src/button/index.tsx
@@ -0,0 +1,2 @@
+export { default } from './button'
+export * from './button'
diff --git a/packages/ui/src/index.tsx b/packages/ui/src/index.tsx
new file mode 100644
index 00000000..9743944e
--- /dev/null
+++ b/packages/ui/src/index.tsx
@@ -0,0 +1 @@
+export { default as Button } from './button'
diff --git a/packages/ui/src/tailwind.cjs b/packages/ui/src/tailwind.cjs
new file mode 100644
index 00000000..85339124
--- /dev/null
+++ b/packages/ui/src/tailwind.cjs
@@ -0,0 +1,10 @@
+const path = require('path')
+
+module.exports = {
+ // `content` is replaced instead of extended, so this line has to be added in
+ // the `content` of each app' tailwind.config.js
+ content: [path.join(path.dirname(require.resolve('@wayofdev/ui')), '**/*.js')],
+ theme: {
+ extend: {},
+ },
+}
diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json
index b5ae699b..84dd163a 100644
--- a/packages/ui/tsconfig.json
+++ b/packages/ui/tsconfig.json
@@ -1,5 +1,14 @@
{
- "extends": "tsconfig-config/lib.json",
- "include": ["."],
- "exclude": ["dist", "build", "node_modules"]
+ "extends": "tsconfig-config/next.json",
+ "exclude": ["dist", "build", "node_modules"],
+ "include": ["./src"],
+ "compilerOptions": {
+ "target": "esnext",
+ "baseUrl": "./src",
+ "outDir": "dist",
+ "allowJs": true,
+ "moduleResolution": "node",
+ "jsx": "react-jsx",
+ "noEmit": false
+ }
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c2721676..731cb8a2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -22,9 +22,9 @@ importers:
prettier: ^2.8.1
prettier-plugin-tailwindcss: ^0.2.1
secretlint: ^5.3.0
- stylelint: ^14.16.0
+ stylelint: ^14.16.1
stylelint-a11y: ^1.2.3
- turbo: latest
+ turbo: ^1.6.3
typescript: ^4.9.4
devDependencies:
'@commitlint/cli': 17.3.0
@@ -34,7 +34,7 @@ importers:
'@wayofdev/markdownlint-config': 1.1.0_markdownlint@0.26.2
'@wayofdev/prettier-config': 1.1.0_prettier@2.8.1
'@wayofdev/secretlint-config': 1.1.0_secretlint@5.3.0
- '@wayofdev/stylelint-config': 1.1.0_5jk3g4nix7uzumh5kb4vgk5kee
+ '@wayofdev/stylelint-config': 1.1.0_gu46niy5crja7py4xm7wtrer3u
htmlhint: 1.1.4
husky: 8.0.2
lint-staged: 13.1.0
@@ -45,8 +45,8 @@ importers:
prettier: 2.8.1
prettier-plugin-tailwindcss: 0.2.1_prettier@2.8.1
secretlint: 5.3.0
- stylelint: 14.16.0
- stylelint-a11y: 1.2.3_stylelint@14.16.0
+ stylelint: 14.16.1
+ stylelint-a11y: 1.2.3_stylelint@14.16.1
turbo: 1.6.3
typescript: 4.9.4
@@ -56,27 +56,27 @@ importers:
'@types/react': ^18.0.26
'@types/react-dom': ^18.0.9
'@wayofdev/browserslist-config': ^1.1.0
+ '@wayofdev/ui': workspace:*
eslint: ^8.30.0
eslint-config-custom: workspace:*
- next: ^13.0.7
+ next: ^13.1.0
nextra: ^2.0.1
nextra-theme-docs: ^2.0.1
react: ^18.2.0
react-dom: ^18.2.0
tsconfig-config: workspace:*
typescript: ^4.9.4
- ui: workspace:*
dependencies:
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
- nextra: 2.0.1_gvvct4imq5upoiloat43sswrza
- nextra-theme-docs: 2.0.1_gvvct4imq5upoiloat43sswrza
+ '@wayofdev/ui': link:../../packages/ui
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
+ nextra: 2.0.1_q76c2b4vyoegvsbrcwkfvimnai
+ nextra-theme-docs: 2.0.1_q76c2b4vyoegvsbrcwkfvimnai
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- ui: link:../../packages/ui
devDependencies:
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
'@types/react': 18.0.26
- '@types/react-dom': 18.0.9
+ '@types/react-dom': 18.0.10
'@wayofdev/browserslist-config': 1.1.0
eslint: 8.30.0
eslint-config-custom: link:../../packages/eslint-config-custom
@@ -85,36 +85,60 @@ importers:
apps/web:
specifiers:
+ '@sentry/nextjs': ^7.28.1
'@types/jest': ^29.2.4
'@types/node': ^18.11.17
'@types/react': ^18.0.26
'@types/react-dom': ^18.0.9
'@wayofdev/browserslist-config': ^1.1.0
+ '@wayofdev/ui': workspace:*
+ autoprefixer: ^10.4.13
+ browserslist: ^4.21.4
eslint: ^8.30.0
eslint-config-custom: workspace:*
jest: ^29.3.1
jest-config: workspace:*
- next: ^13.0.7
+ next: ^13.1.0
+ postcss: ^8.4.20
+ postcss-100vh-fix: ^1.0.2
+ postcss-cli: ^10.1.0
+ postcss-flexbugs-fixes: ^5.0.2
+ postcss-normalize: ^10.0.1
+ postcss-preset-env: ^7.8.3
+ postcss-reporter: ^7.0.5
react: ^18.2.0
react-dom: ^18.2.0
+ sanitize.css: ^13.0.0
+ tailwindcss: ^3.2.4
tsconfig-config: workspace:*
typescript: ^4.9.4
- ui: workspace:*
dependencies:
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
+ '@wayofdev/ui': link:../../packages/ui
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- ui: link:../../packages/ui
+ tailwindcss: 3.2.4_postcss@8.4.20
devDependencies:
+ '@sentry/nextjs': 7.28.1_next@13.1.1+react@18.2.0
'@types/jest': 29.2.4
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
'@types/react': 18.0.26
- '@types/react-dom': 18.0.9
+ '@types/react-dom': 18.0.10
'@wayofdev/browserslist-config': 1.1.0
+ autoprefixer: 10.4.13_postcss@8.4.20
+ browserslist: 4.21.4
eslint: 8.30.0
eslint-config-custom: link:../../packages/eslint-config-custom
- jest: 29.3.1_@types+node@18.11.17
+ jest: 29.3.1_@types+node@18.11.18
jest-config: link:../../packages/jest-config
+ postcss: 8.4.20
+ postcss-100vh-fix: 1.0.2_postcss@8.4.20
+ postcss-cli: 10.1.0_postcss@8.4.20
+ postcss-flexbugs-fixes: 5.0.2_postcss@8.4.20
+ postcss-normalize: 10.0.1_tqzbzbchejvvju4uyfx57d2jda
+ postcss-preset-env: 7.8.3_postcss@8.4.20
+ postcss-reporter: 7.0.5_postcss@8.4.20
+ sanitize.css: 13.0.0
tsconfig-config: link:../../packages/tsconfig-config
typescript: 4.9.4
@@ -130,7 +154,7 @@ importers:
'@wayofdev/eslint-config': 1.1.0_ahtophbrd2laqvxoyg4c2wfe7i
eslint: 8.30.0
eslint-plugin-import: 2.26.0_eslint@8.30.0
- eslint-plugin-tailwindcss: 3.7.1
+ eslint-plugin-tailwindcss: 3.8.0
prettier: 2.8.1
typescript: 4.9.4
@@ -154,19 +178,20 @@ importers:
packages/ui:
specifiers:
+ '@swc/helpers': ^0.4.14
'@types/react': ^18.0.26
- '@types/react-dom': ^18.0.9
+ clsx: ^1.2.1
eslint: ^8.30.0
eslint-config-custom: workspace:*
- react: ^18.2.0
tsconfig-config: workspace:*
typescript: ^4.9.4
+ dependencies:
+ '@swc/helpers': 0.4.14
+ clsx: 1.2.1
devDependencies:
'@types/react': 18.0.26
- '@types/react-dom': 18.0.9
eslint: 8.30.0
eslint-config-custom: link:../eslint-config-custom
- react: 18.2.0
tsconfig-config: link:../tsconfig-config
typescript: 4.9.4
@@ -195,24 +220,24 @@ packages:
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.20.5:
- resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==}
+ /@babel/compat-data/7.20.10:
+ resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.20.5:
- resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==}
+ /@babel/core/7.20.7:
+ resolution: {integrity: sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
- '@babel/helper-module-transforms': 7.20.2
- '@babel/helpers': 7.20.6
- '@babel/parser': 7.20.5
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/generator': 7.20.7
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helpers': 7.20.7
+ '@babel/parser': 7.20.7
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.10
+ '@babel/types': 7.20.7
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -221,24 +246,25 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator/7.20.5:
- resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==}
+ /@babel/generator/7.20.7:
+ resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
- /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5:
- resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.7:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.5
- '@babel/core': 7.20.5
+ '@babel/compat-data': 7.20.10
+ '@babel/core': 7.20.7
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
+ lru-cache: 5.1.1
semver: 6.3.0
/@babel/helper-environment-visitor/7.18.9:
@@ -249,23 +275,23 @@ packages:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/types': 7.20.7
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
- /@babel/helper-module-transforms/7.20.2:
- resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==}
+ /@babel/helper-module-transforms/7.20.11:
+ resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
@@ -273,9 +299,9 @@ packages:
'@babel/helper-simple-access': 7.20.2
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.10
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -287,13 +313,13 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
/@babel/helper-string-parser/7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
@@ -307,13 +333,13 @@ packages:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
- /@babel/helpers/7.20.6:
- resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==}
+ /@babel/helpers/7.20.7:
+ resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.10
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -325,162 +351,162 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.20.5:
- resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==}
+ /@babel/parser/7.20.7:
+ resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.7:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.7:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.7:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.7:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.7:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.7:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.7:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.7:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5:
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.7:
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@babel/helper-plugin-utils': 7.20.2
- /@babel/runtime/7.20.6:
- resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==}
+ /@babel/runtime/7.20.7:
+ resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: false
- /@babel/template/7.18.10:
- resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
+ /@babel/template/7.20.7:
+ resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
- /@babel/traverse/7.20.5:
- resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
+ /@babel/traverse/7.20.10:
+ resolution: {integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.5
+ '@babel/generator': 7.20.7
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types/7.20.5:
- resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
+ /@babel/types/7.20.7:
+ resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.19.4
@@ -576,15 +602,15 @@ packages:
'@commitlint/execute-rule': 17.0.0
'@commitlint/resolve-extends': 17.3.0
'@commitlint/types': 17.0.0
- '@types/node': 14.18.35
+ '@types/node': 14.18.36
chalk: 4.1.2
cosmiconfig: 7.1.0
- cosmiconfig-typescript-loader: 4.3.0_or2qrscwofpw4jwfbychkdzroy
+ cosmiconfig-typescript-loader: 4.3.0_k32j2iwrrwkbro5edqflmrijke
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1_xplfzyzpegygk3axf4z63vz544
+ ts-node: 10.9.1_ocil65wecyuhsmrrocoajouipe
typescript: 4.9.4
transitivePeerDependencies:
- '@swc/core'
@@ -665,6 +691,154 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
+ /@csstools/normalize.css/12.0.0:
+ resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==}
+ dev: true
+
+ /@csstools/postcss-cascade-layers/1.1.1_postcss@8.4.20:
+ resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/selector-specificity': 2.0.2_2xshye3abirqjlplmebvmaxyna
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /@csstools/postcss-color-function/1.1.1_postcss@8.4.20:
+ resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.20:
+ resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/selector-specificity': 2.0.2_2xshye3abirqjlplmebvmaxyna
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.20:
+ resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.20:
+ resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.20:
+ resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.3
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.20:
+ resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==}
+ engines: {node: ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /@csstools/postcss-unset-value/1.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
/@csstools/selector-specificity/2.0.2_2xshye3abirqjlplmebvmaxyna:
resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==}
engines: {node: ^12 || ^14 || >=16}
@@ -740,7 +914,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
jest-message-util: 29.3.1
jest-util: 29.3.1
@@ -760,14 +934,14 @@ packages:
'@jest/test-result': 29.3.1
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.7.0
exit: 0.1.2
graceful-fs: 4.2.10
jest-changed-files: 29.2.0
- jest-config: 29.3.1_@types+node@18.11.17
+ jest-config: 29.3.1_@types+node@18.11.18
jest-haste-map: 29.3.1
jest-message-util: 29.3.1
jest-regex-util: 29.2.0
@@ -793,7 +967,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
jest-mock: 29.3.1
/@jest/expect-utils/29.3.1:
@@ -817,7 +991,7 @@ packages:
dependencies:
'@jest/types': 29.3.1
'@sinonjs/fake-timers': 9.1.2
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
jest-message-util: 29.3.1
jest-mock: 29.3.1
jest-util: 29.3.1
@@ -848,7 +1022,7 @@ packages:
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
'@jridgewell/trace-mapping': 0.3.17
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -905,7 +1079,7 @@ packages:
resolution: {integrity: sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@jest/types': 29.3.1
'@jridgewell/trace-mapping': 0.3.17
babel-plugin-istanbul: 6.1.1
@@ -930,7 +1104,7 @@ packages:
'@jest/schemas': 29.0.0
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
'@types/yargs': 17.0.17
chalk: 4.1.2
@@ -1123,125 +1297,111 @@ packages:
'@napi-rs/simple-git-win32-x64-msvc': 0.1.8
dev: false
- /@next/env/13.0.7:
- resolution: {integrity: sha512-ZBclBRB7DbkSswXgbJ+muF5RxfgmAuQKAWL8tcm86aZmoiL1ZainxQK0hMcMYdh+IYG8UObAKV2wKB5O+6P4ng==}
- dev: false
+ /@next/env/13.1.1:
+ resolution: {integrity: sha512-vFMyXtPjSAiOXOywMojxfKIqE3VWN5RCAx+tT3AS3pcKjMLFTCJFUWsKv8hC+87Z1F4W3r68qTwDFZIFmd5Xkw==}
- /@next/swc-android-arm-eabi/13.0.7:
- resolution: {integrity: sha512-QTEamOK/LCwBf05GZ261rULMbZEpE3TYdjHlXfznV+nXwTztzkBNFXwP67gv2wW44BROzgi/vrR9H8oP+J5jxg==}
+ /@next/swc-android-arm-eabi/13.1.1:
+ resolution: {integrity: sha512-qnFCx1kT3JTWhWve4VkeWuZiyjG0b5T6J2iWuin74lORCupdrNukxkq9Pm+Z7PsatxuwVJMhjUoYz7H4cWzx2A==}
engines: {node: '>= 10'}
cpu: [arm]
os: [android]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-android-arm64/13.0.7:
- resolution: {integrity: sha512-wcy2H0Tl9ME8vKy2GnJZ7Mybwys+43F/Eh2Pvph7mSDpMbYBJ6iA0zeY62iYYXxlZhnAID3+h79FUqUEakkClw==}
+ /@next/swc-android-arm64/13.1.1:
+ resolution: {integrity: sha512-eCiZhTzjySubNqUnNkQCjU3Fh+ep3C6b5DCM5FKzsTH/3Gr/4Y7EiaPZKILbvnXmhWtKPIdcY6Zjx51t4VeTfA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-darwin-arm64/13.0.7:
- resolution: {integrity: sha512-F/mU7csN1/J2cqXJPMgTQ6MwAbc1pJ6sp6W+X0z5JEY4IFDzxKd3wRc3pCiNF7j8xW381JlNpWxhjCctnNmfaw==}
+ /@next/swc-darwin-arm64/13.1.1:
+ resolution: {integrity: sha512-9zRJSSIwER5tu9ADDkPw5rIZ+Np44HTXpYMr0rkM656IvssowPxmhK0rTreC1gpUCYwFsRbxarUJnJsTWiutPg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-darwin-x64/13.0.7:
- resolution: {integrity: sha512-636AuRQynCPnIPRVzcCk5B7OMq9XjaYam2T0HeWUCE6y7EqEO3kxiuZ4QmN81T7A6Ydb+JnivYrLelHXmgdj6A==}
+ /@next/swc-darwin-x64/13.1.1:
+ resolution: {integrity: sha512-qWr9qEn5nrnlhB0rtjSdR00RRZEtxg4EGvicIipqZWEyayPxhUu6NwKiG8wZiYZCLfJ5KWr66PGSNeDMGlNaiA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-freebsd-x64/13.0.7:
- resolution: {integrity: sha512-92XAMzNgQazowZ9t7uZmHRA5VdBl/SwEdrf5UybdfRovsxB4r3+yJWEvFaqYpSEp0gwndbwLokJdpz7OwFdL3Q==}
+ /@next/swc-freebsd-x64/13.1.1:
+ resolution: {integrity: sha512-UwP4w/NcQ7V/VJEj3tGVszgb4pyUCt3lzJfUhjDMUmQbzG9LDvgiZgAGMYH6L21MoyAATJQPDGiAMWAPKsmumA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/13.0.7:
- resolution: {integrity: sha512-3r1CWl5P6I5n5Yxip8EXv/Rfu2Cp6wVmIOpvmczyUR82j+bcMkwPAcUjNkG/vMCagS4xV7NElrcdGb39iFmfLg==}
+ /@next/swc-linux-arm-gnueabihf/13.1.1:
+ resolution: {integrity: sha512-CnsxmKHco9sosBs1XcvCXP845Db+Wx1G0qouV5+Gr+HT/ZlDYEWKoHVDgnJXLVEQzq4FmHddBNGbXvgqM1Gfkg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm64-gnu/13.0.7:
- resolution: {integrity: sha512-RXo8tt6ppiwyS6hpDw3JdAjKcdVewsefxnxk9xOH4mRhMyq9V2lQx0e24X/dRiZqkx3jnWReR2WRrUlgN1UkSQ==}
+ /@next/swc-linux-arm64-gnu/13.1.1:
+ resolution: {integrity: sha512-JfDq1eri5Dif+VDpTkONRd083780nsMCOKoFG87wA0sa4xL8LGcXIBAkUGIC1uVy9SMsr2scA9CySLD/i+Oqiw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm64-musl/13.0.7:
- resolution: {integrity: sha512-RWpnW+bmfXyxyY7iARbueYDGuIF+BEp3etLeYh/RUNHb9PhOHLDgJOG8haGSykud3a6CcyBI8hEjqOhoObaDpw==}
+ /@next/swc-linux-arm64-musl/13.1.1:
+ resolution: {integrity: sha512-GA67ZbDq2AW0CY07zzGt07M5b5Yaq5qUpFIoW3UFfjOPgb0Sqf3DAW7GtFMK1sF4ROHsRDMGQ9rnT0VM2dVfKA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-x64-gnu/13.0.7:
- resolution: {integrity: sha512-/ygUIiMMTYnbKlFs5Ba9J5k/tNxFWy8eI1bBF8UuMTvV8QJHl/aLDiA5dwsei2kk99/cu3eay62JnJXkSk3RSQ==}
+ /@next/swc-linux-x64-gnu/13.1.1:
+ resolution: {integrity: sha512-nnjuBrbzvqaOJaV+XgT8/+lmXrSCOt1YYZn/irbDb2fR2QprL6Q7WJNgwsZNxiLSfLdv+2RJGGegBx9sLBEzGA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-x64-musl/13.0.7:
- resolution: {integrity: sha512-dLzr6AL77USJN0ejgx5AS8O8SbFlbYTzs0XwAWag4oQpUG2p3ARvxwQgYQ0Z+6EP0zIRZ/XfLkN/mhsyi3m4PA==}
+ /@next/swc-linux-x64-musl/13.1.1:
+ resolution: {integrity: sha512-CM9xnAQNIZ8zf/igbIT/i3xWbQZYaF397H+JroF5VMOCUleElaMdQLL5riJml8wUfPoN3dtfn2s4peSr3azz/g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-arm64-msvc/13.0.7:
- resolution: {integrity: sha512-+vFIVa82AwqFkpFClKT+n73fGxrhAZ2u1u3mDYEBdxO6c9U4Pj3S5tZFsGFK9kLT/bFvf/eeVOICSLCC7MSgJQ==}
+ /@next/swc-win32-arm64-msvc/13.1.1:
+ resolution: {integrity: sha512-pzUHOGrbgfGgPlOMx9xk3QdPJoRPU+om84hqVoe6u+E0RdwOG0Ho/2UxCgDqmvpUrMab1Deltlt6RqcXFpnigQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-ia32-msvc/13.0.7:
- resolution: {integrity: sha512-RNLXIhp+assD39dQY9oHhDxw+/qSJRARKhOFsHfOtf8yEfCHqcKkn3X/L+ih60ntaEqK294y1WkMk6ylotsxwA==}
+ /@next/swc-win32-ia32-msvc/13.1.1:
+ resolution: {integrity: sha512-WeX8kVS46aobM9a7Xr/kEPcrTyiwJqQv/tbw6nhJ4fH9xNZ+cEcyPoQkwPo570dCOLz3Zo9S2q0E6lJ/EAUOBg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-x64-msvc/13.0.7:
- resolution: {integrity: sha512-kvdnlLcrnEq72ZP0lqe2Z5NqvB9N5uSCvtXJ0PhKvNncWWd0fEG9Ec9erXgwCmVlM2ytw41k9/uuQ+SVw4Pihw==}
+ /@next/swc-win32-x64-msvc/13.1.1:
+ resolution: {integrity: sha512-mVF0/3/5QAc5EGVnb8ll31nNvf3BWpPY4pBb84tk+BfQglWLqc5AC9q1Ht/YMWiEgs8ALNKEQ3GQnbY0bJF2Gg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
/@nodelib/fs.scandir/2.1.5:
@@ -1290,13 +1450,44 @@ packages:
tslib: 2.4.1
dev: false
- /@ronilaukkarinen/stylelint-a11y/1.2.4_stylelint@14.16.0:
+ /@rollup/plugin-sucrase/4.0.4_rollup@2.78.0:
+ resolution: {integrity: sha512-YH4J8yoJb5EVnLhAwWxYAQNh2SJOR+SdZ6XdgoKEv6Kxm33riYkM8MlMaggN87UoISP52qAFyZ5ey56wu6umGg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ rollup: ^2.53.1
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ rollup: 2.78.0
+ sucrase: 3.29.0
+ dev: true
+
+ /@rollup/plugin-virtual/3.0.0_rollup@2.78.0:
+ resolution: {integrity: sha512-K9KORe1myM62o0lKkNR4MmCxjwuAXsZEtIHpaILfv4kILXTOrXt/R2ha7PzMcCHPYdnkWPiBZK8ed4Zr3Ll5lQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ dependencies:
+ rollup: 2.78.0
+ dev: true
+
+ /@rollup/pluginutils/4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: true
+
+ /@ronilaukkarinen/stylelint-a11y/1.2.4_stylelint@14.16.1:
resolution: {integrity: sha512-7txL4o9tT8AZpaFxqhx9jgoRCG20sqUtDLU79Pv46uore0A8zNOKXqnN6PklD4tPfolTeuVhln5MkzJOKCNlmA==}
engines: {node: '>=8.7.0'}
peerDependencies:
stylelint: ^14.0.1
dependencies:
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
/@secretlint/config-creator/5.3.0:
@@ -1314,7 +1505,7 @@ packages:
'@secretlint/types': 5.3.0
ajv: 8.11.2
debug: 4.3.4
- rc-config-loader: 4.1.1
+ rc-config-loader: 4.1.2
try-resolve: 1.0.1
transitivePeerDependencies:
- supports-color
@@ -1337,8 +1528,8 @@ packages:
engines: {node: ^14.13.1 || >=16.0.0}
dependencies:
'@secretlint/types': 5.3.0
- '@textlint/linter-formatter': 12.2.4
- '@textlint/types': 12.2.3
+ '@textlint/linter-formatter': 12.3.0
+ '@textlint/types': 12.3.0
chalk: 4.1.2
debug: 4.3.4
pluralize: 8.0.0
@@ -1469,6 +1660,160 @@ packages:
engines: {node: ^14.13.1 || >=16.0.0}
dev: true
+ /@sentry/browser/7.28.1:
+ resolution: {integrity: sha512-N8j93IcrWKWorfJ5D+RSKVAvcR4S5tIcZ/HvFPMrQWnfVa/jtJcrKThdjZYteA0wjmPiy8/D3KA8nB91yulBPA==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/core': 7.28.1
+ '@sentry/replay': 7.28.1_@sentry+browser@7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/cli/1.74.6:
+ resolution: {integrity: sha512-pJ7JJgozyjKZSTjOGi86chIngZMLUlYt2HOog+OJn+WGvqEkVymu8m462j1DiXAnex9NspB4zLLNuZ/R6rTQHg==}
+ engines: {node: '>= 8'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ https-proxy-agent: 5.0.1
+ mkdirp: 0.5.6
+ node-fetch: 2.6.7
+ npmlog: 4.1.2
+ progress: 2.0.3
+ proxy-from-env: 1.1.0
+ which: 2.0.2
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: true
+
+ /@sentry/core/7.28.1:
+ resolution: {integrity: sha512-7wvnuvn/mrAfcugWoCG/3pqDIrUgH5t+HisMJMGw0h9Tc33KqrmqMDCQVvjlrr2pWrw/vuUCFdm8CbUHJ832oQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/integrations/7.28.1:
+ resolution: {integrity: sha512-opeXVR1L9mZmZcpAs9kX+4JPY7pXhVupy17Sbz+43zd5CshYTveIcttGNPp+EPT3j7mMU+1TMAYZspKqJXtEBQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ localforage: 1.10.0
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/nextjs/7.28.1_next@13.1.1+react@18.2.0:
+ resolution: {integrity: sha512-y2ldKQmLTEMaBk2Z7jBKpNdQVu19b/B0iN2zIXtdmDLDKiJ1v7923YTgDuMFq3aRv9Yg38/90NsDGNW1f9U7Ww==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0
+ react: 15.x || 16.x || 17.x || 18.x
+ webpack: '>= 4.0.0'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
+ dependencies:
+ '@rollup/plugin-sucrase': 4.0.4_rollup@2.78.0
+ '@rollup/plugin-virtual': 3.0.0_rollup@2.78.0
+ '@sentry/core': 7.28.1
+ '@sentry/integrations': 7.28.1
+ '@sentry/node': 7.28.1
+ '@sentry/react': 7.28.1_react@18.2.0
+ '@sentry/tracing': 7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ '@sentry/webpack-plugin': 1.20.0
+ chalk: 3.0.0
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
+ react: 18.2.0
+ rollup: 2.78.0
+ tslib: 1.14.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: true
+
+ /@sentry/node/7.28.1:
+ resolution: {integrity: sha512-n7AbpJqZJjWPpKNGc55mP7AdQ+XSomS9MZJuZ+Xt2AU52aVwGPI4z9aHUJFSDGaMHHiu/toyPnoUES+XZf6/hw==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/core': 7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ cookie: 0.4.2
+ https-proxy-agent: 5.0.1
+ lru_map: 0.3.3
+ tslib: 1.14.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@sentry/react/7.28.1_react@18.2.0:
+ resolution: {integrity: sha512-sFKK7uDREh84GyJcXDNuiQQ5VhLx7XJTOAdELxLv4HEI6BxbBRz0zNRQiKamTRkz9NmL7bZtld5TfbpOo9kijg==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ react: 15.x || 16.x || 17.x || 18.x
+ dependencies:
+ '@sentry/browser': 7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ hoist-non-react-statics: 3.3.2
+ react: 18.2.0
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/replay/7.28.1_@sentry+browser@7.28.1:
+ resolution: {integrity: sha512-Os0PzMjKlwtHwzTU0kfVzGzsi4Vaj3g2arCl4Qnr3b6kYTb9WOFZo/n/v56ss7Z+nZG3K8W5PisoD4MRsRJRig==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ '@sentry/browser': '>=7.24.0'
+ dependencies:
+ '@sentry/browser': 7.28.1
+ '@sentry/core': 7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ dev: true
+
+ /@sentry/tracing/7.28.1:
+ resolution: {integrity: sha512-uWspnuz+7FyW8ES5lRaVA7O/YJSzMlSkvBFtgzaoKmdaueokU/sRLwlCsrdgwavG1wpm79df7R1iiSeqhaXDlw==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/core': 7.28.1
+ '@sentry/types': 7.28.1
+ '@sentry/utils': 7.28.1
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/types/7.28.1:
+ resolution: {integrity: sha512-DvSplMVrVEmOzR2M161V5+B8Up3vR71xMqJOpWTzE9TqtFJRGPtqT/5OBsNJJw1+/j2ssMcnKwbEo9Q2EGeS6g==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /@sentry/utils/7.28.1:
+ resolution: {integrity: sha512-75/jzLUO9HH09iC9TslNimGbxOP3jgn89P+q7uR+rp2fJfRExHVeKJZQdK0Ij4/SmE7TJ3Uh2r154N0INZEx1g==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/types': 7.28.1
+ tslib: 1.14.1
+ dev: true
+
+ /@sentry/webpack-plugin/1.20.0:
+ resolution: {integrity: sha512-Ssj1mJVFsfU6vMCOM2d+h+KQR7QHSfeIP16t4l20Uq/neqWXZUQ2yvQfe4S3BjdbJXz/X4Rw8Hfy1Sd0ocunYw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ '@sentry/cli': 1.74.6
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: true
+
/@sinclair/typebox/0.24.51:
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
@@ -1486,15 +1831,14 @@ packages:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
dependencies:
tslib: 2.4.1
- dev: false
- /@testing-library/dom/8.19.0:
- resolution: {integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==}
+ /@testing-library/dom/8.19.1:
+ resolution: {integrity: sha512-P6iIPyYQ+qH8CvGauAqanhVnjrnRe0IZFSYCeGkSRW9q3u8bdVn2NPI+lasFyVsEQn1J/IFmp5Aax41+dAP9wg==}
engines: {node: '>=12'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/runtime': 7.20.6
- '@types/aria-query': 4.2.2
+ '@babel/runtime': 7.20.7
+ '@types/aria-query': 5.0.1
aria-query: 5.1.3
chalk: 4.1.2
dom-accessibility-api: 0.5.14
@@ -1502,17 +1846,17 @@ packages:
pretty-format: 27.5.1
dev: false
- /@textlint/ast-node-types/12.2.2:
- resolution: {integrity: sha512-VQAXUSGdmEajHXrMxeM9ZTS8UBJSVB0ghJFHpFfqYKlcDsjIqClSmTprY6521HoCoSLoUIGBxTC3jQyUMJFIWw==}
+ /@textlint/ast-node-types/12.3.0:
+ resolution: {integrity: sha512-ke5hlKy/xZ/vQt6j+h4k9GradJPDsV3FKsUqWpCpF/X8qWCU2zM4e1SMUAFjoUcLuF9in+eXIQ71Qm/AdjjkZQ==}
dev: true
- /@textlint/linter-formatter/12.2.4:
- resolution: {integrity: sha512-vF/qPrDYLH9jGB/HU8euVLv7BBATYmviBl9fGcx5vO8Lq/D2vHS9MUdk1JddgW/cDqnrI0nNVlLFUphJsXtp6w==}
+ /@textlint/linter-formatter/12.3.0:
+ resolution: {integrity: sha512-XELEIsZm7d8mIRYF8MA7IqvOy79apWBauj7kxFVSM3zIbnkQURdOV+RI4iN/fW7EbV39DwCNPgzGTTh1BcEvaA==}
dependencies:
'@azu/format-text': 1.0.1
'@azu/style-format': 1.0.0
- '@textlint/module-interop': 12.2.3
- '@textlint/types': 12.2.3
+ '@textlint/module-interop': 12.3.0
+ '@textlint/types': 12.3.0
chalk: 4.1.2
debug: 4.3.4
is-file: 1.0.0
@@ -1529,8 +1873,8 @@ packages:
- supports-color
dev: true
- /@textlint/module-interop/12.2.3:
- resolution: {integrity: sha512-tBtjf+hcOV8bTGae48bBj05Z8PmC6AQ+wCLl4PWE1zqUZIo9hxJL5nRpBn8l6HT6HCdtACE0UU85op9QmjmPXw==}
+ /@textlint/module-interop/12.3.0:
+ resolution: {integrity: sha512-Qc7yamUIagaN8XW9cToIrtxOD2dqZeJBCf/Y/P+16aPYU+z186EQ4JNNWPXGss5XNtHNFA5Ztjh17NXpmowk2w==}
dev: true
/@textlint/regexp-string-matcher/2.0.2:
@@ -1542,10 +1886,10 @@ packages:
lodash.uniqwith: 4.5.0
dev: true
- /@textlint/types/12.2.3:
- resolution: {integrity: sha512-7948CPxVsZu99zlIWDyxwT6MI33WpwKwVSD9jk0e5M8VcdxMUnecVq6D40h8LAtfsT5V8NTJqFxKFT6+LpiBvg==}
+ /@textlint/types/12.3.0:
+ resolution: {integrity: sha512-6IcKqGJyIISaH4JqkUEsG+3FIg0CVSz1iHFfwMA16YgRuKtSDuySPyo3LfpcQ3dqUeonr29yWgfi2f1QM8SCDw==}
dependencies:
- '@textlint/ast-node-types': 12.2.2
+ '@textlint/ast-node-types': 12.3.0
dev: true
/@tsconfig/node10/1.0.9:
@@ -1570,15 +1914,15 @@ packages:
'@types/estree': 1.0.0
dev: false
- /@types/aria-query/4.2.2:
- resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==}
+ /@types/aria-query/5.0.1:
+ resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: false
/@types/babel__core/7.1.20:
resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==}
dependencies:
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
@@ -1586,18 +1930,18 @@ packages:
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
/@types/babel__traverse/7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.20.7
/@types/debug/4.1.7:
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
@@ -1618,7 +1962,7 @@ packages:
/@types/graceful-fs/4.1.5:
resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
dependencies:
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
/@types/hast/2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
@@ -1676,12 +2020,12 @@ packages:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: false
- /@types/node/14.18.35:
- resolution: {integrity: sha512-2ATO8pfhG1kDvw4Lc4C0GXIMSQFFJBCo/R1fSgTwmUlq5oy95LXyjDQinsRVgQY6gp6ghh3H91wk9ES5/5C+Tw==}
+ /@types/node/14.18.36:
+ resolution: {integrity: sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==}
dev: true
- /@types/node/18.11.17:
- resolution: {integrity: sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==}
+ /@types/node/18.11.18:
+ resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -1696,8 +2040,8 @@ packages:
/@types/prop-types/15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/react-dom/18.0.9:
- resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==}
+ /@types/react-dom/18.0.10:
+ resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==}
dependencies:
'@types/react': 18.0.26
dev: true
@@ -1731,8 +2075,8 @@ packages:
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin/5.47.0_ncmi6noazr3nzas7jxykisekym:
- resolution: {integrity: sha512-AHZtlXAMGkDmyLuLZsRpH3p4G/1iARIwc/T0vIem2YB+xW6pZaXYXzCBnZSF/5fdM97R9QqZWZ+h3iW10XgevQ==}
+ /@typescript-eslint/eslint-plugin/5.47.1_txmweb6yn7coi7nfrp22gpyqmy:
+ resolution: {integrity: sha512-r4RZ2Jl9kcQN7K/dcOT+J7NAimbiis4sSM9spvWimsBvDegMhKLA5vri2jG19PmIPbDjPeWzfUPQ2hjEzA4Nmg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -1742,10 +2086,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
- '@typescript-eslint/scope-manager': 5.47.0
- '@typescript-eslint/type-utils': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
- '@typescript-eslint/utils': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/parser': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/scope-manager': 5.47.1
+ '@typescript-eslint/type-utils': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/utils': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
debug: 4.3.4
eslint: 8.30.0
ignore: 5.2.4
@@ -1758,8 +2102,8 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/parser/5.47.0_lzzuuodtsqwxnvqeq4g4likcqa:
- resolution: {integrity: sha512-udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw==}
+ /@typescript-eslint/parser/5.47.1_lzzuuodtsqwxnvqeq4g4likcqa:
+ resolution: {integrity: sha512-9Vb+KIv29r6GPu4EboWOnQM7T+UjpjXvjCPhNORlgm40a9Ia9bvaPJswvtae1gip2QEeVeGh6YquqAzEgoRAlw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1768,9 +2112,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.47.0
- '@typescript-eslint/types': 5.47.0
- '@typescript-eslint/typescript-estree': 5.47.0_typescript@4.9.4
+ '@typescript-eslint/scope-manager': 5.47.1
+ '@typescript-eslint/types': 5.47.1
+ '@typescript-eslint/typescript-estree': 5.47.1_typescript@4.9.4
debug: 4.3.4
eslint: 8.30.0
typescript: 4.9.4
@@ -1778,16 +2122,16 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/scope-manager/5.47.0:
- resolution: {integrity: sha512-dvJab4bFf7JVvjPuh3sfBUWsiD73aiftKBpWSfi3sUkysDQ4W8x+ZcFpNp7Kgv0weldhpmMOZBjx1wKN8uWvAw==}
+ /@typescript-eslint/scope-manager/5.47.1:
+ resolution: {integrity: sha512-9hsFDsgUwrdOoW1D97Ewog7DYSHaq4WKuNs0LHF9RiCmqB0Z+XRR4Pf7u7u9z/8CciHuJ6yxNws1XznI3ddjEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.47.0
- '@typescript-eslint/visitor-keys': 5.47.0
+ '@typescript-eslint/types': 5.47.1
+ '@typescript-eslint/visitor-keys': 5.47.1
dev: false
- /@typescript-eslint/type-utils/5.47.0_lzzuuodtsqwxnvqeq4g4likcqa:
- resolution: {integrity: sha512-1J+DFFrYoDUXQE1b7QjrNGARZE6uVhBqIvdaXTe5IN+NmEyD68qXR1qX1g2u4voA+nCaelQyG8w30SAOihhEYg==}
+ /@typescript-eslint/type-utils/5.47.1_lzzuuodtsqwxnvqeq4g4likcqa:
+ resolution: {integrity: sha512-/UKOeo8ee80A7/GJA427oIrBi/Gd4osk/3auBUg4Rn9EahFpevVV1mUK8hjyQD5lHPqX397x6CwOk5WGh1E/1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -1796,8 +2140,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.47.0_typescript@4.9.4
- '@typescript-eslint/utils': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/typescript-estree': 5.47.1_typescript@4.9.4
+ '@typescript-eslint/utils': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
debug: 4.3.4
eslint: 8.30.0
tsutils: 3.21.0_typescript@4.9.4
@@ -1806,13 +2150,13 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/types/5.47.0:
- resolution: {integrity: sha512-eslFG0Qy8wpGzDdYKu58CEr3WLkjwC5Usa6XbuV89ce/yN5RITLe1O8e+WFEuxnfftHiJImkkOBADj58ahRxSg==}
+ /@typescript-eslint/types/5.47.1:
+ resolution: {integrity: sha512-CmALY9YWXEpwuu6377ybJBZdtSAnzXLSQcxLSqSQSbC7VfpMu/HLVdrnVJj7ycI138EHqocW02LPJErE35cE9A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree/5.47.0_typescript@4.9.4:
- resolution: {integrity: sha512-LxfKCG4bsRGq60Sqqu+34QT5qT2TEAHvSCCJ321uBWywgE2dS0LKcu5u+3sMGo+Vy9UmLOhdTw5JHzePV/1y4Q==}
+ /@typescript-eslint/typescript-estree/5.47.1_typescript@4.9.4:
+ resolution: {integrity: sha512-4+ZhFSuISAvRi2xUszEj0xXbNTHceV9GbH9S8oAD2a/F9SW57aJNQVOCxG8GPfSWH/X4eOPdMEU2jYVuWKEpWA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -1820,8 +2164,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.47.0
- '@typescript-eslint/visitor-keys': 5.47.0
+ '@typescript-eslint/types': 5.47.1
+ '@typescript-eslint/visitor-keys': 5.47.1
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -1832,17 +2176,17 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/utils/5.47.0_lzzuuodtsqwxnvqeq4g4likcqa:
- resolution: {integrity: sha512-U9xcc0N7xINrCdGVPwABjbAKqx4GK67xuMV87toI+HUqgXj26m6RBp9UshEXcTrgCkdGYFzgKLt8kxu49RilDw==}
+ /@typescript-eslint/utils/5.47.1_lzzuuodtsqwxnvqeq4g4likcqa:
+ resolution: {integrity: sha512-l90SdwqfmkuIVaREZ2ykEfCezepCLxzWMo5gVfcJsJCaT4jHT+QjgSkYhs5BMQmWqE9k3AtIfk4g211z/sTMVw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.47.0
- '@typescript-eslint/types': 5.47.0
- '@typescript-eslint/typescript-estree': 5.47.0_typescript@4.9.4
+ '@typescript-eslint/scope-manager': 5.47.1
+ '@typescript-eslint/types': 5.47.1
+ '@typescript-eslint/typescript-estree': 5.47.1_typescript@4.9.4
eslint: 8.30.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.30.0
@@ -1852,11 +2196,11 @@ packages:
- typescript
dev: false
- /@typescript-eslint/visitor-keys/5.47.0:
- resolution: {integrity: sha512-ByPi5iMa6QqDXe/GmT/hR6MZtVPi0SqMQPDx15FczCBXJo/7M8T88xReOALAfpBLm+zxpPfmhuEvPb577JRAEg==}
+ /@typescript-eslint/visitor-keys/5.47.1:
+ resolution: {integrity: sha512-rF3pmut2JCCjh6BLRhNKdYjULMb1brvoaiWDlHfLNVgmnZ0sBVJrs3SyaKE1XoDDnJuAx/hDQryHYmPUuNq0ig==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.47.0
+ '@typescript-eslint/types': 5.47.1
eslint-visitor-keys: 3.3.0
dev: false
@@ -1880,14 +2224,14 @@ packages:
peerDependencies:
eslint: '>= 8'
dependencies:
- '@typescript-eslint/eslint-plugin': 5.47.0_ncmi6noazr3nzas7jxykisekym
- '@typescript-eslint/parser': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/eslint-plugin': 5.47.1_txmweb6yn7coi7nfrp22gpyqmy
+ '@typescript-eslint/parser': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
eslint: 8.30.0
eslint-config-airbnb-base: 15.0.0_2lbwmhbr7bncddqbzzpg77o75m
- eslint-config-airbnb-typescript: 17.0.0_2ailjpge324tuffgtb5hvmojcm
+ eslint-config-airbnb-typescript: 17.0.0_qipeoi3mvzxgzndpeo4r6kwevy
eslint-config-prettier: 8.5.0_eslint@8.30.0
- eslint-plugin-import: 2.26.0_tqyj5ytb5g6r5ett7xxedhk6eq
- eslint-plugin-jest: 27.1.7_nwhe2qd7pg7k6t4q57ylogsxam
+ eslint-plugin-import: 2.26.0_smw3o7qjeokkcohbvp7rylsoqq
+ eslint-plugin-jest: 27.1.7_hcoksoapk6zxaf4vf7ghaqbyr4
eslint-plugin-jest-dom: 4.0.3_eslint@8.30.0
eslint-plugin-jest-formatting: 3.1.0_eslint@8.30.0
eslint-plugin-prettier: 4.2.1_kl4pe43v5b43npmso5hoplpbyi
@@ -1946,21 +2290,21 @@ packages:
secretlint: 5.3.0
dev: true
- /@wayofdev/stylelint-config/1.1.0_5jk3g4nix7uzumh5kb4vgk5kee:
+ /@wayofdev/stylelint-config/1.1.0_gu46niy5crja7py4xm7wtrer3u:
resolution: {integrity: sha512-INN6guMKtd494kLcqpUsiLC3rabYWzUQtdX25v64TjV1vvHO+1ih9NrxNiuJWemwkIsDt8IVo/eQJiZSvc9MVg==}
peerDependencies:
stylelint: '>= 14'
dependencies:
- '@ronilaukkarinen/stylelint-a11y': 1.2.4_stylelint@14.16.0
- stylelint: 14.16.0
- stylelint-config-prettier: 9.0.4_stylelint@14.16.0
- stylelint-config-sass-guidelines: 9.0.1_l3s4qeu3gkar2knsdy3w5miimm
- stylelint-config-standard: 29.0.0_stylelint@14.16.0
- stylelint-config-standard-scss: 6.1.0_l3s4qeu3gkar2knsdy3w5miimm
- stylelint-high-performance-animation: 1.7.0_stylelint@14.16.0
- stylelint-no-unsupported-browser-features: 6.0.1_stylelint@14.16.0
- stylelint-order: 5.0.0_stylelint@14.16.0
- stylelint-prettier: 2.0.0_lzrral356zwd7lm6e3scl4w4om
+ '@ronilaukkarinen/stylelint-a11y': 1.2.4_stylelint@14.16.1
+ stylelint: 14.16.1
+ stylelint-config-prettier: 9.0.4_stylelint@14.16.1
+ stylelint-config-sass-guidelines: 9.0.1_vitr26fcqo6sphdfxyxll4n2gy
+ stylelint-config-standard: 29.0.0_stylelint@14.16.1
+ stylelint-config-standard-scss: 6.1.0_vitr26fcqo6sphdfxyxll4n2gy
+ stylelint-high-performance-animation: 1.7.0_stylelint@14.16.1
+ stylelint-no-unsupported-browser-features: 6.0.1_stylelint@14.16.1
+ stylelint-order: 5.0.0_stylelint@14.16.1
+ stylelint-prettier: 2.0.0_vlobltqgtuonqzkkvhdynwehdm
transitivePeerDependencies:
- postcss
- prettier
@@ -2018,6 +2362,15 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ /agent-base/6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/aggregate-error/3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -2049,6 +2402,11 @@ packages:
dependencies:
type-fest: 0.21.3
+ /ansi-regex/2.1.1:
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -2079,6 +2437,10 @@ packages:
engines: {node: '>=12'}
dev: true
+ /any-promise/1.3.0:
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ dev: true
+
/anymatch/3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -2086,10 +2448,21 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
+ /aproba/1.2.0:
+ resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
+ dev: true
+
/arch/2.2.0:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
dev: false
+ /are-we-there-yet/1.1.7:
+ resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 2.3.7
+ dev: true
+
/arg/1.0.0:
resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==}
dev: false
@@ -2174,22 +2547,38 @@ packages:
resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
dev: true
+ /autoprefixer/10.4.13_postcss@8.4.20:
+ resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.21.4
+ caniuse-lite: 1.0.30001441
+ fraction.js: 4.2.0
+ normalize-range: 0.1.2
+ picocolors: 1.0.0
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
/available-typed-arrays/1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
dev: false
- /babel-jest/29.3.1_@babel+core@7.20.5:
+ /babel-jest/29.3.1_@babel+core@7.20.7:
resolution: {integrity: sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@jest/transform': 29.3.1
'@types/babel__core': 7.1.20
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.2.0_@babel+core@7.20.5
+ babel-preset-jest: 29.2.0_@babel+core@7.20.7
chalk: 4.1.2
graceful-fs: 4.2.10
slash: 3.0.0
@@ -2212,39 +2601,39 @@ packages:
resolution: {integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/types': 7.20.7
'@types/babel__core': 7.1.20
'@types/babel__traverse': 7.18.3
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.5:
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.7:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5
-
- /babel-preset-jest/29.2.0_@babel+core@7.20.5:
+ '@babel/core': 7.20.7
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7
+
+ /babel-preset-jest/29.2.0_@babel+core@7.20.7:
resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
babel-plugin-jest-hoist: 29.2.0
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.5
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7
/bail/2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
@@ -2260,7 +2649,6 @@ packages:
/binary-extensions/2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- dev: false
/binaryextensions/4.18.0:
resolution: {integrity: sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw==}
@@ -2294,7 +2682,7 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001439
+ caniuse-lite: 1.0.30001441
electron-to-chromium: 1.4.284
node-releases: 2.0.8
update-browserslist-db: 1.0.10_browserslist@4.21.4
@@ -2351,8 +2739,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /caniuse-lite/1.0.30001439:
- resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==}
+ /caniuse-lite/1.0.30001441:
+ resolution: {integrity: sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==}
/ccount/2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -2375,6 +2763,14 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
+ /chalk/3.0.0:
+ resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: true
+
/chalk/4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
@@ -2415,7 +2811,6 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.2
- dev: false
/ci-info/3.7.0:
resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==}
@@ -2461,7 +2856,6 @@ packages:
/client-only/0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
- dev: false
/clipboardy/1.2.2:
resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==}
@@ -2496,6 +2890,11 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+ /code-point-at/1.1.0:
+ resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/collect-v8-coverage/1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
@@ -2528,6 +2927,11 @@ packages:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
dev: false
+ /commander/4.1.1:
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
+ dev: true
+
/commander/9.4.1:
resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==}
engines: {node: ^12.20.0 || >=14}
@@ -2551,6 +2955,10 @@ packages:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: false
+ /console-control-strings/1.1.0:
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+ dev: true
+
/conventional-changelog-angular/5.0.13:
resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
engines: {node: '>=10'}
@@ -2587,11 +2995,16 @@ packages:
/convert-source-map/2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ /cookie/0.4.2:
+ resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
+ engines: {node: '>= 0.6'}
+ dev: true
+
/core-util-is/1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
- /cosmiconfig-typescript-loader/4.3.0_or2qrscwofpw4jwfbychkdzroy:
+ /cosmiconfig-typescript-loader/4.3.0_k32j2iwrrwkbro5edqflmrijke:
resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
@@ -2600,9 +3013,9 @@ packages:
ts-node: '>=10'
typescript: '>=3'
dependencies:
- '@types/node': 14.18.35
+ '@types/node': 14.18.36
cosmiconfig: 7.1.0
- ts-node: 10.9.1_xplfzyzpegygk3axf4z63vz544
+ ts-node: 10.9.1_ocil65wecyuhsmrrocoajouipe
typescript: 4.9.4
dev: true
@@ -2648,11 +3061,43 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
+ /css-blank-pseudo/3.0.3_postcss@8.4.20:
+ resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
/css-functions-list/3.1.0:
resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==}
engines: {node: '>=12.22'}
dev: true
+ /css-has-pseudo/3.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==}
+ engines: {node: ^12 || ^14 || >=16}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /css-prefers-color-scheme/6.0.3_postcss@8.4.20:
+ resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==}
+ engines: {node: ^12 || ^14 || >=16}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
/css-rule-stream/1.1.0:
resolution: {integrity: sha512-qiio/Zkr8I19jh/XuzEkK8OKDQRTrEYaRyIHy4Bwh/tPUe0w8GcQs7r6x24Yc9lT+FbnZFYULxEIXCmaymguUQ==}
hasBin: true
@@ -2670,6 +3115,10 @@ packages:
readable-stream: 1.1.14
dev: true
+ /cssdb/7.2.0:
+ resolution: {integrity: sha512-JYlIsE7eKHSi0UNuCyo96YuIDFqvhGgHw4Ck6lsN+DP0Tp8M64UTDT2trGbkMDqnCoEjks7CkS0XcjU0rkvBdg==}
+ dev: true
+
/cssesc/3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
@@ -2702,7 +3151,7 @@ packages:
supports-color:
optional: true
dependencies:
- ms: 2.1.3
+ ms: 2.1.2
dev: false
/debug/4.3.4:
@@ -2781,6 +3230,15 @@ packages:
resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
dev: false
+ /delegates/1.0.0:
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ dev: true
+
+ /dependency-graph/0.11.0:
+ resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
+ engines: {node: '>= 0.6.0'}
+ dev: true
+
/dequal/2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -2847,7 +3305,7 @@ packages:
hasBin: true
dependencies:
browserslist: 4.21.4
- caniuse-lite: 1.0.30001439
+ caniuse-lite: 1.0.30001441
css-rule-stream: 1.1.0
duplexer2: 0.0.2
ldjson-stream: 1.2.1
@@ -2990,13 +3448,13 @@ packages:
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.30.0
- eslint-plugin-import: 2.26.0_tqyj5ytb5g6r5ett7xxedhk6eq
+ eslint-plugin-import: 2.26.0_smw3o7qjeokkcohbvp7rylsoqq
object.assign: 4.1.4
object.entries: 1.1.6
semver: 6.3.0
dev: false
- /eslint-config-airbnb-typescript/17.0.0_2ailjpge324tuffgtb5hvmojcm:
+ /eslint-config-airbnb-typescript/17.0.0_qipeoi3mvzxgzndpeo4r6kwevy:
resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^5.13.0
@@ -3004,11 +3462,11 @@ packages:
eslint: ^7.32.0 || ^8.2.0
eslint-plugin-import: ^2.25.3
dependencies:
- '@typescript-eslint/eslint-plugin': 5.47.0_ncmi6noazr3nzas7jxykisekym
- '@typescript-eslint/parser': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/eslint-plugin': 5.47.1_txmweb6yn7coi7nfrp22gpyqmy
+ '@typescript-eslint/parser': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
eslint: 8.30.0
eslint-config-airbnb-base: 15.0.0_2lbwmhbr7bncddqbzzpg77o75m
- eslint-plugin-import: 2.26.0_tqyj5ytb5g6r5ett7xxedhk6eq
+ eslint-plugin-import: 2.26.0_smw3o7qjeokkcohbvp7rylsoqq
dev: false
/eslint-config-prettier/8.5.0_eslint@8.30.0:
@@ -3029,7 +3487,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils/2.7.4_5vuadmvmkyhbtm34phil3e6noa:
+ /eslint-module-utils/2.7.4_dc7heojkjdjw5ttc65wer4jauy:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -3050,7 +3508,6 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
debug: 3.2.7
eslint: 8.30.0
eslint-import-resolver-node: 0.3.6
@@ -3058,7 +3515,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils/2.7.4_dc7heojkjdjw5ttc65wer4jauy:
+ /eslint-module-utils/2.7.4_ehosaqfug4in6rsga5hlj3hmya:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -3079,6 +3536,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
+ '@typescript-eslint/parser': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
debug: 3.2.7
eslint: 8.30.0
eslint-import-resolver-node: 0.3.6
@@ -3116,7 +3574,7 @@ packages:
- supports-color
dev: false
- /eslint-plugin-import/2.26.0_tqyj5ytb5g6r5ett7xxedhk6eq:
+ /eslint-plugin-import/2.26.0_smw3o7qjeokkcohbvp7rylsoqq:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -3126,14 +3584,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/parser': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
eslint: 8.30.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_5vuadmvmkyhbtm34phil3e6noa
+ eslint-module-utils: 2.7.4_ehosaqfug4in6rsga5hlj3hmya
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -3153,8 +3611,8 @@ packages:
peerDependencies:
eslint: ^6.8.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@babel/runtime': 7.20.6
- '@testing-library/dom': 8.19.0
+ '@babel/runtime': 7.20.7
+ '@testing-library/dom': 8.19.1
eslint: 8.30.0
requireindex: 1.2.0
dev: false
@@ -3168,7 +3626,7 @@ packages:
eslint: 8.30.0
dev: false
- /eslint-plugin-jest/27.1.7_nwhe2qd7pg7k6t4q57ylogsxam:
+ /eslint-plugin-jest/27.1.7_hcoksoapk6zxaf4vf7ghaqbyr4:
resolution: {integrity: sha512-0QVzf+og4YI1Qr3UoprkqqhezAZjFffdi62b0IurkCXMqPtRW84/UT4CKsYT80h/D82LA9avjO/80Ou1LdgbaQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -3181,8 +3639,8 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.47.0_ncmi6noazr3nzas7jxykisekym
- '@typescript-eslint/utils': 5.47.0_lzzuuodtsqwxnvqeq4g4likcqa
+ '@typescript-eslint/eslint-plugin': 5.47.1_txmweb6yn7coi7nfrp22gpyqmy
+ '@typescript-eslint/utils': 5.47.1_lzzuuodtsqwxnvqeq4g4likcqa
eslint: 8.30.0
transitivePeerDependencies:
- supports-color
@@ -3230,13 +3688,13 @@ packages:
eslint: 8.30.0
dev: false
- /eslint-plugin-tailwindcss/3.7.1:
- resolution: {integrity: sha512-MCPpVp5VvNYuRz1JYN9sN0r/cgAt3SfIlKbvYjVij+T/8r0z4U8nPY/c07vm+dLYb7mBv9N9LLIR4l9pLHSJaQ==}
+ /eslint-plugin-tailwindcss/3.8.0:
+ resolution: {integrity: sha512-Lsyncgp/eXZriAEUK9zfGHOH+9iQplygHiOuGY8SFFHKIeT0BYjyST/ownHF8UPa1TEh+jJPkdE2vlV3778C3w==}
engines: {node: '>=12.13.0'}
dependencies:
fast-glob: 3.2.12
postcss: 8.4.20
- tailwindcss: 3.2.4
+ tailwindcss: 3.2.4_postcss@8.4.20
transitivePeerDependencies:
- ts-node
dev: false
@@ -3421,6 +3879,10 @@ packages:
'@types/unist': 2.0.6
dev: false
+ /estree-walker/2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: true
+
/estree-walker/3.0.1:
resolution: {integrity: sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==}
dev: false
@@ -3583,6 +4045,10 @@ packages:
is-callable: 1.2.7
dev: false
+ /fraction.js/4.2.0:
+ resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
+ dev: true
+
/fs-extra/10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
@@ -3592,6 +4058,15 @@ packages:
universalify: 2.0.0
dev: true
+ /fs-extra/11.1.0:
+ resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==}
+ engines: {node: '>=14.14'}
+ dependencies:
+ graceful-fs: 4.2.10
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+ dev: true
+
/fs.realpath/1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -3617,6 +4092,19 @@ packages:
/functions-have-names/1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ /gauge/2.7.4:
+ resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
+ dependencies:
+ aproba: 1.2.0
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ object-assign: 4.1.1
+ signal-exit: 3.0.7
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ wide-align: 1.1.5
+ dev: true
+
/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -3698,6 +4186,17 @@ packages:
dependencies:
is-glob: 4.0.3
+ /glob/7.1.6:
+ resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: true
+
/glob/7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -3763,6 +4262,17 @@ packages:
merge2: 1.4.1
slash: 3.0.0
+ /globby/13.1.3:
+ resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ dir-glob: 3.0.1
+ fast-glob: 3.2.12
+ ignore: 5.2.4
+ merge2: 1.4.1
+ slash: 4.0.0
+ dev: true
+
/globjoin/0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
dev: true
@@ -3824,6 +4334,10 @@ packages:
dependencies:
has-symbols: 1.0.3
+ /has-unicode/2.0.1:
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+ dev: true
+
/has/1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
@@ -3860,6 +4374,12 @@ packages:
resolution: {integrity: sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==}
dev: false
+ /hoist-non-react-statics/3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ dependencies:
+ react-is: 16.13.1
+ dev: true
+
/hosted-git-info/2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
@@ -3894,6 +4414,16 @@ packages:
- encoding
dev: true
+ /https-proxy-agent/5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/human-signals/2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
@@ -3913,6 +4443,10 @@ packages:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
+ /immediate/3.0.6:
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
+ dev: true
+
/import-fresh/3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -4007,7 +4541,6 @@ packages:
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- dev: false
/is-boolean-object/1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
@@ -4060,6 +4593,13 @@ packages:
resolution: {integrity: sha512-ZGMuc+xA8mRnrXtmtf2l/EkIW2zaD2LSBWlaOVEF6yH4RTndHob65V4SwWWdtGKVthQfXPVKsXqw4TDUjbVxVQ==}
dev: true
+ /is-fullwidth-code-point/1.0.0:
+ resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ number-is-nan: 1.0.1
+ dev: true
+
/is-fullwidth-code-point/3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
@@ -4222,6 +4762,10 @@ packages:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
dev: true
+ /isarray/1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ dev: true
+
/isarray/2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
dev: false
@@ -4237,8 +4781,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.20.5
- '@babel/parser': 7.20.5
+ '@babel/core': 7.20.7
+ '@babel/parser': 7.20.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -4293,7 +4837,7 @@ packages:
'@jest/expect': 29.3.1
'@jest/test-result': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -4339,7 +4883,7 @@ packages:
- ts-node
dev: false
- /jest-cli/29.3.1_@types+node@18.11.17:
+ /jest-cli/29.3.1_@types+node@18.11.18:
resolution: {integrity: sha512-TO/ewvwyvPOiBBuWZ0gm04z3WWP8TIK8acgPzE4IxgsLKQgb377NYGrQLc3Wl/7ndWzIH2CDNNsUjGxwLL43VQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -4356,7 +4900,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.10
import-local: 3.1.0
- jest-config: 29.3.1_@types+node@18.11.17
+ jest-config: 29.3.1_@types+node@18.11.18
jest-util: 29.3.1
jest-validate: 29.3.1
prompts: 2.4.2
@@ -4379,10 +4923,10 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@jest/test-sequencer': 29.3.1
'@jest/types': 29.3.1
- babel-jest: 29.3.1_@babel+core@7.20.5
+ babel-jest: 29.3.1_@babel+core@7.20.7
chalk: 4.1.2
ci-info: 3.7.0
deepmerge: 4.2.2
@@ -4405,7 +4949,7 @@ packages:
- supports-color
dev: false
- /jest-config/29.3.1_@types+node@18.11.17:
+ /jest-config/29.3.1_@types+node@18.11.18:
resolution: {integrity: sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -4417,11 +4961,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.20.7
'@jest/test-sequencer': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
- babel-jest: 29.3.1_@babel+core@7.20.5
+ '@types/node': 18.11.18
+ babel-jest: 29.3.1_@babel+core@7.20.7
chalk: 4.1.2
ci-info: 3.7.0
deepmerge: 4.2.2
@@ -4475,7 +5019,7 @@ packages:
'@jest/environment': 29.3.1
'@jest/fake-timers': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
jest-mock: 29.3.1
jest-util: 29.3.1
@@ -4489,7 +5033,7 @@ packages:
dependencies:
'@jest/types': 29.3.1
'@types/graceful-fs': 4.1.5
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.10
@@ -4536,7 +5080,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
jest-util: 29.3.1
/jest-pnp-resolver/1.2.3_jest-resolve@29.3.1:
@@ -4586,7 +5130,7 @@ packages:
'@jest/test-result': 29.3.1
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.10
@@ -4616,7 +5160,7 @@ packages:
'@jest/test-result': 29.3.1
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
cjs-module-lexer: 1.2.2
collect-v8-coverage: 1.0.1
@@ -4638,18 +5182,18 @@ packages:
resolution: {integrity: sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.20.5
- '@babel/generator': 7.20.5
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/core': 7.20.7
+ '@babel/generator': 7.20.7
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7
+ '@babel/traverse': 7.20.10
+ '@babel/types': 7.20.7
'@jest/expect-utils': 29.3.1
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.5
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7
chalk: 4.1.2
expect: 29.3.1
graceful-fs: 4.2.10
@@ -4670,7 +5214,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
chalk: 4.1.2
ci-info: 3.7.0
graceful-fs: 4.2.10
@@ -4693,7 +5237,7 @@ packages:
dependencies:
'@jest/test-result': 29.3.1
'@jest/types': 29.3.1
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -4704,7 +5248,7 @@ packages:
resolution: {integrity: sha512-lY4AnnmsEWeiXirAIA0c9SDPbuCBq8IYuDVL8PMm0MZ2PEs2yPvRA/J64QBXuZp7CYKrDM/rmNrc9/i3KJQncw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.11.17
+ '@types/node': 18.11.18
jest-util: 29.3.1
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -4729,7 +5273,7 @@ packages:
- ts-node
dev: false
- /jest/29.3.1_@types+node@18.11.17:
+ /jest/29.3.1_@types+node@18.11.18:
resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -4742,7 +5286,7 @@ packages:
'@jest/core': 29.3.1
'@jest/types': 29.3.1
import-local: 3.1.0
- jest-cli: 29.3.1_@types+node@18.11.17
+ jest-cli: 29.3.1_@types+node@18.11.18
transitivePeerDependencies:
- '@types/node'
- supports-color
@@ -4804,6 +5348,11 @@ packages:
/jsonc-parser/3.1.0:
resolution: {integrity: sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==}
+ dev: true
+
+ /jsonc-parser/3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ dev: false
/jsonfile/6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -4853,6 +5402,12 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
+ /lie/3.1.1:
+ resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
+ dependencies:
+ immediate: 3.0.6
+ dev: true
+
/lilconfig/2.0.6:
resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
engines: {node: '>=10'}
@@ -4918,6 +5473,12 @@ packages:
strip-bom: 3.0.0
dev: true
+ /localforage/1.10.0:
+ resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
+ dependencies:
+ lie: 3.1.1
+ dev: true
+
/locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -5015,12 +5576,21 @@ packages:
yallist: 2.1.2
dev: false
+ /lru-cache/5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ dependencies:
+ yallist: 3.1.1
+
/lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ /lru_map/0.3.3:
+ resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
+ dev: true
+
/lz-string/1.4.4:
resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==}
hasBin: true
@@ -5102,7 +5672,7 @@ packages:
/match-sorter/6.3.1:
resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==}
dependencies:
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.20.7
remove-accents: 0.4.2
dev: false
@@ -5707,6 +6277,13 @@ packages:
/minimist/1.2.7:
resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
+ /mkdirp/0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.7
+ dev: true
+
/mri/1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -5719,10 +6296,6 @@ packages:
/ms/2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: false
-
/multimatch/5.0.0:
resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
engines: {node: '>=10'}
@@ -5734,6 +6307,14 @@ packages:
minimatch: 3.1.2
dev: true
+ /mz/2.7.0:
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ dependencies:
+ any-promise: 1.3.0
+ object-assign: 4.1.1
+ thenify-all: 1.6.0
+ dev: true
+
/nanoid/3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -5746,32 +6327,32 @@ packages:
/natural-compare/1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /next-seo/5.15.0_gvvct4imq5upoiloat43sswrza:
+ /next-seo/5.15.0_q76c2b4vyoegvsbrcwkfvimnai:
resolution: {integrity: sha512-LGbcY91yDKGMb7YI+28n3g+RuChUkt6pXNpa8FkfKkEmNiJkeRDEXTnnjVtwT9FmMhG6NH8qwHTelGrlYm9rgg==}
peerDependencies:
next: ^8.1.1-canary.54 || >=9.0.0
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /next-themes/0.2.1_gvvct4imq5upoiloat43sswrza:
+ /next-themes/0.2.1_q76c2b4vyoegvsbrcwkfvimnai:
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
peerDependencies:
next: '*'
react: '*'
react-dom: '*'
dependencies:
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /next/13.0.7_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-YfTifqX9vfHm+rSU/H/3xvzOHDkYuMuh4wsvTjiqj9h7qHEF7KHB66X4qrH96Po+ohdid4JY8YVGPziDwdXL0A==}
+ /next/13.1.1_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-R5eBAaIa3X7LJeYvv1bMdGnAVF4fVToEjim7MkflceFPuANY3YyvFxXee/A+acrSYwYPvOvf7f6v/BM/48ea5w==}
engines: {node: '>=14.6.0'}
hasBin: true
peerDependencies:
@@ -5788,33 +6369,32 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 13.0.7
+ '@next/env': 13.1.1
'@swc/helpers': 0.4.14
- caniuse-lite: 1.0.30001439
+ caniuse-lite: 1.0.30001441
postcss: 8.4.14
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- styled-jsx: 5.1.0_react@18.2.0
+ styled-jsx: 5.1.1_react@18.2.0
optionalDependencies:
- '@next/swc-android-arm-eabi': 13.0.7
- '@next/swc-android-arm64': 13.0.7
- '@next/swc-darwin-arm64': 13.0.7
- '@next/swc-darwin-x64': 13.0.7
- '@next/swc-freebsd-x64': 13.0.7
- '@next/swc-linux-arm-gnueabihf': 13.0.7
- '@next/swc-linux-arm64-gnu': 13.0.7
- '@next/swc-linux-arm64-musl': 13.0.7
- '@next/swc-linux-x64-gnu': 13.0.7
- '@next/swc-linux-x64-musl': 13.0.7
- '@next/swc-win32-arm64-msvc': 13.0.7
- '@next/swc-win32-ia32-msvc': 13.0.7
- '@next/swc-win32-x64-msvc': 13.0.7
+ '@next/swc-android-arm-eabi': 13.1.1
+ '@next/swc-android-arm64': 13.1.1
+ '@next/swc-darwin-arm64': 13.1.1
+ '@next/swc-darwin-x64': 13.1.1
+ '@next/swc-freebsd-x64': 13.1.1
+ '@next/swc-linux-arm-gnueabihf': 13.1.1
+ '@next/swc-linux-arm64-gnu': 13.1.1
+ '@next/swc-linux-arm64-musl': 13.1.1
+ '@next/swc-linux-x64-gnu': 13.1.1
+ '@next/swc-linux-x64-musl': 13.1.1
+ '@next/swc-win32-arm64-msvc': 13.1.1
+ '@next/swc-win32-ia32-msvc': 13.1.1
+ '@next/swc-win32-x64-msvc': 13.1.1
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- dev: false
- /nextra-theme-docs/2.0.1_gvvct4imq5upoiloat43sswrza:
+ /nextra-theme-docs/2.0.1_q76c2b4vyoegvsbrcwkfvimnai:
resolution: {integrity: sha512-vrxSQjfG5hcWXd0foVUgRu1T9rD+dQdVnKzJhpEG+ncAIYTT/o7GajvYUEPPZMYvvZwehmNIUhSTDN9unnVsxw==}
peerDependencies:
next: '>=9.5.3'
@@ -5832,15 +6412,15 @@ packages:
github-slugger: 1.5.0
intersection-observer: 0.12.2
match-sorter: 6.3.1
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
- next-seo: 5.15.0_gvvct4imq5upoiloat43sswrza
- next-themes: 0.2.1_gvvct4imq5upoiloat43sswrza
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
+ next-seo: 5.15.0_q76c2b4vyoegvsbrcwkfvimnai
+ next-themes: 0.2.1_q76c2b4vyoegvsbrcwkfvimnai
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scroll-into-view-if-needed: 2.2.31
dev: false
- /nextra/2.0.1_gvvct4imq5upoiloat43sswrza:
+ /nextra/2.0.1_q76c2b4vyoegvsbrcwkfvimnai:
resolution: {integrity: sha512-IOBwqMREnadxGryNHvwr3sZuD90uyaTxCWi9yxDB56UndsLBTulKwXNIOdW1FV+vKTbSGpz89wNe665Moli7Kw==}
peerDependencies:
next: '>=9.5.3'
@@ -5852,7 +6432,7 @@ packages:
github-slugger: 1.5.0
graceful-fs: 4.2.10
gray-matter: 4.0.3
- next: 13.0.7_biqbaboplfbrettd7655fr4n2y
+ next: 13.1.1_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
rehype-mdx-title: 1.0.0
@@ -5916,6 +6496,11 @@ packages:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
+ /normalize-range/0.1.2:
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/npm-run-all/4.1.5:
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
engines: {node: '>= 4'}
@@ -5952,6 +6537,25 @@ packages:
path-key: 4.0.0
dev: true
+ /npmlog/4.1.2:
+ resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
+ dependencies:
+ are-we-there-yet: 1.1.7
+ console-control-strings: 1.1.0
+ gauge: 2.7.4
+ set-blocking: 2.0.0
+ dev: true
+
+ /number-is-nan/1.0.1:
+ resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /object-assign/4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/object-hash/3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
@@ -6184,7 +6788,6 @@ packages:
/pify/2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- dev: false
/pify/3.0.0:
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
@@ -6209,6 +6812,216 @@ packages:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
+ /postcss-100vh-fix/1.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-t7vqk9AfjI4fXmWlQCEiMZFFhi1hro4WlECINI1TV6Qh1XapUJE++gCmNr95F5Hen/+bz1OmO+SiSB9TZmFmSg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-browser-comments/4.0.0_tqzbzbchejvvju4uyfx57d2jda:
+ resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ browserslist: '>=4'
+ postcss: '>=8'
+ dependencies:
+ browserslist: 4.21.4
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-clamp/4.1.0_postcss@8.4.20:
+ resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
+ engines: {node: '>=7.6.0'}
+ peerDependencies:
+ postcss: ^8.4.6
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-cli/10.1.0_postcss@8.4.20:
+ resolution: {integrity: sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==}
+ engines: {node: '>=14'}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ chokidar: 3.5.3
+ dependency-graph: 0.11.0
+ fs-extra: 11.1.0
+ get-stdin: 9.0.0
+ globby: 13.1.3
+ picocolors: 1.0.0
+ postcss: 8.4.20
+ postcss-load-config: 4.0.1_postcss@8.4.20
+ postcss-reporter: 7.0.5_postcss@8.4.20
+ pretty-hrtime: 1.0.3
+ read-cache: 1.0.0
+ slash: 5.0.0
+ yargs: 17.6.2
+ transitivePeerDependencies:
+ - ts-node
+ dev: true
+
+ /postcss-color-functional-notation/4.2.4_postcss@8.4.20:
+ resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-color-hex-alpha/8.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-color-rebeccapurple/7.1.1_postcss@8.4.20:
+ resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-custom-media/8.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.3
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-custom-properties/12.1.11_postcss@8.4.20:
+ resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-custom-selectors/6.0.3_postcss@8.4.20:
+ resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.3
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-dir-pseudo-class/6.0.5_postcss@8.4.20:
+ resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-double-position-gradients/3.1.2_postcss@8.4.20:
+ resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-env-function/4.0.6_postcss@8.4.20:
+ resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-flexbugs-fixes/5.0.2_postcss@8.4.20:
+ resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
+ peerDependencies:
+ postcss: ^8.1.4
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-focus-visible/6.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-focus-within/5.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-font-variant/5.0.0_postcss@8.4.20:
+ resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-gap-properties/3.0.5_postcss@8.4.20:
+ resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-image-set-function/4.0.7_postcss@8.4.20:
+ resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-import/14.1.0_postcss@8.4.20:
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
@@ -6221,6 +7034,14 @@ packages:
resolve: 1.22.1
dev: false
+ /postcss-initial/4.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
/postcss-js/4.0.0_postcss@8.4.20:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
@@ -6231,6 +7052,17 @@ packages:
postcss: 8.4.20
dev: false
+ /postcss-lab-function/4.2.1_postcss@8.4.20:
+ resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-load-config/3.1.4_postcss@8.4.20:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
@@ -6248,6 +7080,41 @@ packages:
yaml: 1.10.2
dev: false
+ /postcss-load-config/4.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ lilconfig: 2.0.6
+ postcss: 8.4.20
+ yaml: 2.2.0
+ dev: true
+
+ /postcss-logical/5.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-media-minmax/5.0.0_postcss@8.4.20:
+ resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
/postcss-media-query-parser/0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
dev: true
@@ -6262,6 +7129,155 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
+ /postcss-nesting/10.2.0_postcss@8.4.20:
+ resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/selector-specificity': 2.0.2_2xshye3abirqjlplmebvmaxyna
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-normalize/10.0.1_tqzbzbchejvvju4uyfx57d2jda:
+ resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==}
+ engines: {node: '>= 12'}
+ peerDependencies:
+ browserslist: '>= 4'
+ postcss: '>= 8'
+ dependencies:
+ '@csstools/normalize.css': 12.0.0
+ browserslist: 4.21.4
+ postcss: 8.4.20
+ postcss-browser-comments: 4.0.0_tqzbzbchejvvju4uyfx57d2jda
+ sanitize.css: 13.0.0
+ dev: true
+
+ /postcss-opacity-percentage/1.1.3_postcss@8.4.20:
+ resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-overflow-shorthand/3.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-page-break/3.0.4_postcss@8.4.20:
+ resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
+ peerDependencies:
+ postcss: ^8
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-place/7.0.5_postcss@8.4.20:
+ resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-preset-env/7.8.3_postcss@8.4.20:
+ resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/postcss-cascade-layers': 1.1.1_postcss@8.4.20
+ '@csstools/postcss-color-function': 1.1.1_postcss@8.4.20
+ '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.20
+ '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.20
+ '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.20
+ '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.20
+ '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.20
+ '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.20
+ '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.20
+ '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.20
+ '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.20
+ '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.20
+ '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.20
+ '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.20
+ autoprefixer: 10.4.13_postcss@8.4.20
+ browserslist: 4.21.4
+ css-blank-pseudo: 3.0.3_postcss@8.4.20
+ css-has-pseudo: 3.0.4_postcss@8.4.20
+ css-prefers-color-scheme: 6.0.3_postcss@8.4.20
+ cssdb: 7.2.0
+ postcss: 8.4.20
+ postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.20
+ postcss-clamp: 4.1.0_postcss@8.4.20
+ postcss-color-functional-notation: 4.2.4_postcss@8.4.20
+ postcss-color-hex-alpha: 8.0.4_postcss@8.4.20
+ postcss-color-rebeccapurple: 7.1.1_postcss@8.4.20
+ postcss-custom-media: 8.0.2_postcss@8.4.20
+ postcss-custom-properties: 12.1.11_postcss@8.4.20
+ postcss-custom-selectors: 6.0.3_postcss@8.4.20
+ postcss-dir-pseudo-class: 6.0.5_postcss@8.4.20
+ postcss-double-position-gradients: 3.1.2_postcss@8.4.20
+ postcss-env-function: 4.0.6_postcss@8.4.20
+ postcss-focus-visible: 6.0.4_postcss@8.4.20
+ postcss-focus-within: 5.0.4_postcss@8.4.20
+ postcss-font-variant: 5.0.0_postcss@8.4.20
+ postcss-gap-properties: 3.0.5_postcss@8.4.20
+ postcss-image-set-function: 4.0.7_postcss@8.4.20
+ postcss-initial: 4.0.1_postcss@8.4.20
+ postcss-lab-function: 4.2.1_postcss@8.4.20
+ postcss-logical: 5.0.4_postcss@8.4.20
+ postcss-media-minmax: 5.0.0_postcss@8.4.20
+ postcss-nesting: 10.2.0_postcss@8.4.20
+ postcss-opacity-percentage: 1.1.3_postcss@8.4.20
+ postcss-overflow-shorthand: 3.0.4_postcss@8.4.20
+ postcss-page-break: 3.0.4_postcss@8.4.20
+ postcss-place: 7.0.5_postcss@8.4.20
+ postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.20
+ postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.20
+ postcss-selector-not: 6.0.1_postcss@8.4.20
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.20:
+ resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
+ /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.20:
+ resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
+ peerDependencies:
+ postcss: ^8.0.3
+ dependencies:
+ postcss: 8.4.20
+ dev: true
+
+ /postcss-reporter/7.0.5_postcss@8.4.20:
+ resolution: {integrity: sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ picocolors: 1.0.0
+ postcss: 8.4.20
+ thenby: 1.3.4
+ dev: true
+
/postcss-resolve-nested-selector/0.1.1:
resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
dev: true
@@ -6284,6 +7300,16 @@ packages:
postcss: 8.4.20
dev: true
+ /postcss-selector-not/6.0.1_postcss@8.4.20:
+ resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ postcss: 8.4.20
+ postcss-selector-parser: 6.0.11
+ dev: true
+
/postcss-selector-parser/6.0.11:
resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
engines: {node: '>=4'}
@@ -6309,7 +7335,6 @@ packages:
nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: false
/postcss/8.4.20:
resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==}
@@ -6360,6 +7385,20 @@ packages:
ansi-styles: 5.2.0
react-is: 18.2.0
+ /pretty-hrtime/1.0.3:
+ resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /process-nextick-args/2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ dev: true
+
+ /progress/2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
/prompts/2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
@@ -6375,6 +7414,10 @@ packages:
resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
dev: false
+ /proxy-from-env/1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: true
+
/pseudomap/1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: false
@@ -6401,8 +7444,8 @@ packages:
engines: {node: '>=10'}
dev: false
- /rc-config-loader/4.1.1:
- resolution: {integrity: sha512-S10o85x/szboh7FOxUyU+KuED+gr9V7SEnUBOzSn+vd1K8J2MtkP1RCPWg8Sw5kkuZKr7976bFzacCM6QtAApQ==}
+ /rc-config-loader/4.1.2:
+ resolution: {integrity: sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==}
dependencies:
debug: 4.3.4
js-yaml: 4.1.0
@@ -6420,7 +7463,10 @@ packages:
loose-envify: 1.4.0
react: 18.2.0
scheduler: 0.23.0
- dev: false
+
+ /react-is/16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ dev: true
/react-is/17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
@@ -6439,7 +7485,6 @@ packages:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
- dev: false
/read-pkg-up/7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
@@ -6485,6 +7530,18 @@ packages:
string_decoder: 0.10.31
dev: true
+ /readable-stream/2.3.7:
+ resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: true
+
/readable-stream/3.6.0:
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
engines: {node: '>= 6'}
@@ -6499,7 +7556,6 @@ packages:
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- dev: false
/reading-time/1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
@@ -6678,6 +7734,14 @@ packages:
dependencies:
glob: 7.2.3
+ /rollup/2.78.0:
+ resolution: {integrity: sha512-4+YfbQC9QEVvKTanHhIAFVUFSRsezvQF8vFOJwtGfb9Bb+r014S+qryr9PSmw8x6sMnPkmFBGAvIFVQxvJxjtg==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
/run-con/1.2.11:
resolution: {integrity: sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==}
hasBin: true
@@ -6706,6 +7770,10 @@ packages:
mri: 1.2.0
dev: false
+ /safe-buffer/5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+ dev: true
+
/safe-buffer/5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
@@ -6723,11 +7791,14 @@ packages:
regexp-tree: 0.1.24
dev: false
+ /sanitize.css/13.0.0:
+ resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==}
+ dev: true
+
/scheduler/0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- dev: false
/scroll-into-view-if-needed/2.2.31:
resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
@@ -6783,6 +7854,10 @@ packages:
dependencies:
lru-cache: 6.0.0
+ /set-blocking/2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ dev: true
+
/shebang-command/1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -6810,7 +7885,7 @@ packages:
/shiki/0.10.1:
resolution: {integrity: sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==}
dependencies:
- jsonc-parser: 3.1.0
+ jsonc-parser: 3.2.0
vscode-oniguruma: 1.7.0
vscode-textmate: 5.2.0
dev: false
@@ -6832,6 +7907,16 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
+ /slash/4.0.0:
+ resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /slash/5.0.0:
+ resolution: {integrity: sha512-n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==}
+ engines: {node: '>=14.16'}
+ dev: true
+
/slice-ansi/3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
@@ -6931,6 +8016,15 @@ packages:
char-regex: 1.0.2
strip-ansi: 6.0.1
+ /string-width/1.0.2:
+ resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ code-point-at: 1.1.0
+ is-fullwidth-code-point: 1.0.0
+ strip-ansi: 3.0.1
+ dev: true
+
/string-width/4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -6975,6 +8069,12 @@ packages:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
dev: true
+ /string_decoder/1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+
/string_decoder/1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
@@ -6988,6 +8088,13 @@ packages:
character-entities-legacy: 3.0.0
dev: false
+ /strip-ansi/3.0.1:
+ resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: true
+
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -7059,8 +8166,8 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /styled-jsx/5.1.0_react@18.2.0:
- resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==}
+ /styled-jsx/5.1.1_react@18.2.0:
+ resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
@@ -7074,28 +8181,27 @@ packages:
dependencies:
client-only: 0.0.1
react: 18.2.0
- dev: false
- /stylelint-a11y/1.2.3_stylelint@14.16.0:
+ /stylelint-a11y/1.2.3_stylelint@14.16.1:
resolution: {integrity: sha512-S/iiKFUsYBfa4suxP0pYQqoPB9R1+SnvxVuzHHlz9al0IWxLZzXlnZEqEez0zNOhVh5iO3rATUmDnbZE5wm/pQ==}
engines: {node: '>=8.7.0'}
peerDependencies:
stylelint: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0
dependencies:
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-config-prettier/9.0.4_stylelint@14.16.0:
+ /stylelint-config-prettier/9.0.4_stylelint@14.16.1:
resolution: {integrity: sha512-38nIGTGpFOiK5LjJ8Ma1yUgpKENxoKSOhbDNSemY7Ep0VsJoXIW9Iq/2hSt699oB9tReynfWicTAoIHiq8Rvbg==}
engines: {node: '>= 12'}
hasBin: true
peerDependencies:
stylelint: '>=11.0.0'
dependencies:
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-config-recommended-scss/8.0.0_l3s4qeu3gkar2knsdy3w5miimm:
+ /stylelint-config-recommended-scss/8.0.0_vitr26fcqo6sphdfxyxll4n2gy:
resolution: {integrity: sha512-BxjxEzRaZoQb7Iinc3p92GS6zRdRAkIuEu2ZFLTxJK2e1AIcCb5B5MXY9KOXdGTnYFZ+KKx6R4Fv9zU6CtMYPQ==}
peerDependencies:
postcss: ^8.3.3
@@ -7106,20 +8212,20 @@ packages:
dependencies:
postcss: 8.4.20
postcss-scss: 4.0.6_postcss@8.4.20
- stylelint: 14.16.0
- stylelint-config-recommended: 9.0.0_stylelint@14.16.0
- stylelint-scss: 4.3.0_stylelint@14.16.0
+ stylelint: 14.16.1
+ stylelint-config-recommended: 9.0.0_stylelint@14.16.1
+ stylelint-scss: 4.3.0_stylelint@14.16.1
dev: true
- /stylelint-config-recommended/9.0.0_stylelint@14.16.0:
+ /stylelint-config-recommended/9.0.0_stylelint@14.16.1:
resolution: {integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==}
peerDependencies:
stylelint: ^14.10.0
dependencies:
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-config-sass-guidelines/9.0.1_l3s4qeu3gkar2knsdy3w5miimm:
+ /stylelint-config-sass-guidelines/9.0.1_vitr26fcqo6sphdfxyxll4n2gy:
resolution: {integrity: sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
@@ -7128,12 +8234,12 @@ packages:
dependencies:
postcss: 8.4.20
postcss-scss: 4.0.6_postcss@8.4.20
- stylelint: 14.16.0
- stylelint-order: 5.0.0_stylelint@14.16.0
- stylelint-scss: 4.3.0_stylelint@14.16.0
+ stylelint: 14.16.1
+ stylelint-order: 5.0.0_stylelint@14.16.1
+ stylelint-scss: 4.3.0_stylelint@14.16.1
dev: true
- /stylelint-config-standard-scss/6.1.0_l3s4qeu3gkar2knsdy3w5miimm:
+ /stylelint-config-standard-scss/6.1.0_vitr26fcqo6sphdfxyxll4n2gy:
resolution: {integrity: sha512-iZ2B5kQT2G3rUzx+437cEpdcnFOQkwnwqXuY8Z0QUwIHQVE8mnYChGAquyKFUKZRZ0pRnrciARlPaR1RBtPb0Q==}
peerDependencies:
postcss: ^8.3.3
@@ -7143,30 +8249,30 @@ packages:
optional: true
dependencies:
postcss: 8.4.20
- stylelint: 14.16.0
- stylelint-config-recommended-scss: 8.0.0_l3s4qeu3gkar2knsdy3w5miimm
- stylelint-config-standard: 29.0.0_stylelint@14.16.0
+ stylelint: 14.16.1
+ stylelint-config-recommended-scss: 8.0.0_vitr26fcqo6sphdfxyxll4n2gy
+ stylelint-config-standard: 29.0.0_stylelint@14.16.1
dev: true
- /stylelint-config-standard/29.0.0_stylelint@14.16.0:
+ /stylelint-config-standard/29.0.0_stylelint@14.16.1:
resolution: {integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg==}
peerDependencies:
stylelint: ^14.14.0
dependencies:
- stylelint: 14.16.0
- stylelint-config-recommended: 9.0.0_stylelint@14.16.0
+ stylelint: 14.16.1
+ stylelint-config-recommended: 9.0.0_stylelint@14.16.1
dev: true
- /stylelint-high-performance-animation/1.7.0_stylelint@14.16.0:
+ /stylelint-high-performance-animation/1.7.0_stylelint@14.16.1:
resolution: {integrity: sha512-Gq3tiCAhHU0WZBVwiCYKk+Kdkf1EeHyzDruRvDL9EhqrkpKxkktIzqmX+RM+Jn7s1sN9iAnoYIXPa0Py6d7j/Q==}
peerDependencies:
stylelint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0
dependencies:
postcss-value-parser: 4.2.0
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-no-unsupported-browser-features/6.0.1_stylelint@14.16.0:
+ /stylelint-no-unsupported-browser-features/6.0.1_stylelint@14.16.1:
resolution: {integrity: sha512-cuhp3gU+SMp0I5dCykjQ0iSTtBsWeA7qNZlNBYnCW7L4KPudunRYyGQ8gcClRJtFpGkElQUtsfLMALNFZVdEFw==}
engines: {node: '>=14'}
peerDependencies:
@@ -7175,20 +8281,20 @@ packages:
doiuse: 4.4.1
lodash: 4.17.21
postcss: 8.4.20
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-order/5.0.0_stylelint@14.16.0:
+ /stylelint-order/5.0.0_stylelint@14.16.1:
resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==}
peerDependencies:
stylelint: ^14.0.0
dependencies:
postcss: 8.4.20
postcss-sorting: 7.0.1_postcss@8.4.20
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-prettier/2.0.0_lzrral356zwd7lm6e3scl4w4om:
+ /stylelint-prettier/2.0.0_vlobltqgtuonqzkkvhdynwehdm:
resolution: {integrity: sha512-jvT3G+9lopkeB0ARmDPszyfaOnvnIF+30QCjZxyt7E6fynI1T9mOKgYDNb9bXX17M7PXMZaX3j/26wqakjp1tw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7197,10 +8303,10 @@ packages:
dependencies:
prettier: 2.8.1
prettier-linter-helpers: 1.0.0
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint-scss/4.3.0_stylelint@14.16.0:
+ /stylelint-scss/4.3.0_stylelint@14.16.1:
resolution: {integrity: sha512-GvSaKCA3tipzZHoz+nNO7S02ZqOsdBzMiCx9poSmLlb3tdJlGddEX/8QzCOD8O7GQan9bjsvLMsO5xiw6IhhIQ==}
peerDependencies:
stylelint: ^14.5.1
@@ -7210,11 +8316,11 @@ packages:
postcss-resolve-nested-selector: 0.1.1
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
- stylelint: 14.16.0
+ stylelint: 14.16.1
dev: true
- /stylelint/14.16.0:
- resolution: {integrity: sha512-X6uTi9DcxjzLV8ZUAjit1vsRtSwcls0nl07c9rqOPzvpA8IvTX/xWEkBRowS0ffevRrqkHa/ThDEu86u73FQDg==}
+ /stylelint/14.16.1:
+ resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
dependencies:
@@ -7260,6 +8366,19 @@ packages:
- supports-color
dev: true
+ /sucrase/3.29.0:
+ resolution: {integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ commander: 4.1.1
+ glob: 7.1.6
+ lines-and-columns: 1.2.4
+ mz: 2.7.0
+ pirates: 4.0.5
+ ts-interface-checker: 0.1.13
+ dev: true
+
/supports-color/4.5.0:
resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==}
engines: {node: '>=4'}
@@ -7312,10 +8431,12 @@ packages:
strip-ansi: 6.0.1
dev: true
- /tailwindcss/3.2.4:
+ /tailwindcss/3.2.4_postcss@8.4.20:
resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==}
engines: {node: '>=12.13.0'}
hasBin: true
+ peerDependencies:
+ postcss: ^8.0.9
dependencies:
arg: 5.0.2
chokidar: 3.5.3
@@ -7373,6 +8494,23 @@ packages:
engines: {node: '>=0.8'}
dev: true
+ /thenby/1.3.4:
+ resolution: {integrity: sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==}
+ dev: true
+
+ /thenify-all/1.6.0:
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
+ dependencies:
+ thenify: 3.3.1
+ dev: true
+
+ /thenify/3.3.1:
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
+ dependencies:
+ any-promise: 1.3.0
+ dev: true
+
/through/2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
dev: true
@@ -7443,6 +8581,10 @@ packages:
resolution: {integrity: sha512-yHeaPjCBzVaXwWl5IMUapTaTC2rn/eBYg2fsG2L+CvJd+ttFbk0ylDnpTO3wVhosmE1tQEvcebbBeKLCwScQSQ==}
dev: true
+ /ts-interface-checker/0.1.13:
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ dev: true
+
/ts-jest/29.0.3_p6ekqnroyms5nhqbfxosryz7rm:
resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7476,7 +8618,7 @@ packages:
yargs-parser: 21.1.1
dev: false
- /ts-node/10.9.1_xplfzyzpegygk3axf4z63vz544:
+ /ts-node/10.9.1_ocil65wecyuhsmrrocoajouipe:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -7495,7 +8637,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
- '@types/node': 14.18.35
+ '@types/node': 14.18.36
acorn: 8.8.1
acorn-walk: 8.2.0
arg: 4.1.3
@@ -7518,7 +8660,6 @@ packages:
/tslib/1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- dev: false
/tslib/2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
@@ -7838,6 +8979,11 @@ packages:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: true
+ /webpack-sources/3.2.3:
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ engines: {node: '>=10.13.0'}
+ dev: true
+
/whatwg-url/5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
@@ -7888,6 +9034,12 @@ packages:
dependencies:
isexe: 2.0.0
+ /wide-align/1.1.5:
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+ dependencies:
+ string-width: 1.0.2
+ dev: true
+
/word-wrap/1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
@@ -7935,6 +9087,9 @@ packages:
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
dev: false
+ /yallist/3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}