+
-
-
+
+
diff --git a/apps/ui/src/routes/sources/[id]/_Github.svelte b/apps/ui/src/routes/sources/[id]/_Github.svelte
index 84f6fda3c..fc638b2d8 100644
--- a/apps/ui/src/routes/sources/[id]/_Github.svelte
+++ b/apps/ui/src/routes/sources/[id]/_Github.svelte
@@ -4,7 +4,6 @@
import { page } from '$app/stores';
import { getAPIUrl, getWebhookUrl, post } from '$lib/api';
import Explainer from '$lib/components/Explainer.svelte';
- import { toast } from '@zerodevx/svelte-toast';
import { t } from '$lib/translations';
import { dashify, errorNotification, getDomain } from '$lib/common';
import { addToast, appSession } from '$lib/store';
diff --git a/apps/ui/src/routes/sources/[id]/_Gitlab.svelte b/apps/ui/src/routes/sources/[id]/_Gitlab.svelte
index 54cb3e487..e55f8b312 100644
--- a/apps/ui/src/routes/sources/[id]/_Gitlab.svelte
+++ b/apps/ui/src/routes/sources/[id]/_Gitlab.svelte
@@ -7,7 +7,6 @@
import { getAPIUrl, post } from '$lib/api';
import { dev } from '$app/env';
import CopyPasswordField from '$lib/components/CopyPasswordField.svelte';
- import { toast } from '@zerodevx/svelte-toast';
import { t } from '$lib/translations';
import { errorNotification } from '$lib/common';
diff --git a/apps/ui/src/routes/sources/[id]/__layout.svelte b/apps/ui/src/routes/sources/[id]/__layout.svelte
index 46afb5d6f..3c8b02bdb 100644
--- a/apps/ui/src/routes/sources/[id]/__layout.svelte
+++ b/apps/ui/src/routes/sources/[id]/__layout.svelte
@@ -60,8 +60,8 @@
type="submit"
disabled={!$appSession.isAdmin}
class:hover:text-red-500={$appSession.isAdmin}
- class="icons tooltip-bottom bg-transparent text-sm"
- data-tooltip={$appSession.isAdmin
+ class="icons tooltip tooltip-bottom bg-transparent text-sm"
+ data-tip={$appSession.isAdmin
? $t('source.delete_git_source')
: $t('source.permission_denied')}>
diff --git a/apps/ui/src/tailwind.css b/apps/ui/src/tailwind.css
index 3884bd79a..cf23653b8 100644
--- a/apps/ui/src/tailwind.css
+++ b/apps/ui/src/tailwind.css
@@ -160,220 +160,11 @@ a {
);
border-image-slice: 1;
}
-/**
- * Tooltip Styles
- */
-
-/* Base styles for the element that has a tooltip */
-[data-tooltip],
-.tooltip {
- position: relative;
- cursor: pointer;
-}
-
-/* Base styles for the entire tooltip */
-[data-tooltip]:before,
-[data-tooltip]:after,
-.tooltip:before,
-.tooltip:after {
- position: absolute;
- visibility: hidden;
- opacity: 0;
- transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
- transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
- transform: translate3d(0, 0, 0);
- pointer-events: none;
-}
-
-/* Show the entire tooltip on hover and focus */
-[data-tooltip]:hover:before,
-[data-tooltip]:hover:after,
-[data-tooltip]:focus:before,
-[data-tooltip]:focus:after,
-.tooltip:hover:before,
-.tooltip:hover:after,
-.tooltip:focus:before,
-.tooltip:focus:after {
- visibility: visible;
- opacity: 1;
-}
-
-/* Base styles for the tooltip's directional arrow */
-.tooltip:before,
-[data-tooltip]:before {
- z-index: 1001;
- border: 6px solid transparent;
- background: transparent;
- content: '';
-}
-
-/* Base styles for the tooltip's content area */
-.tooltip:after,
-[data-tooltip]:after {
- z-index: 1000;
- padding: 8px;
- color: #fff;
- content: attr(data-tooltip);
- @apply min-w-[100px] rounded text-center font-normal;
-}
-
-/* Base colours for tooltips */
-
-/* coollabs - default */
-.tooltip:after,
-[data-tooltip]:after {
- @apply bg-coollabs;
-}
-
-/* Green 500 */
-.tooltip-green-500:after {
- @apply bg-green-500;
-}
-
-/* Orange 500 */
-.tooltip-orange-500:after {
- @apply bg-orange-500;
-}
-
-/* Sky 500 */
-.tooltip-sky-500:after {
- @apply bg-sky-500;
-}
-
-/* Purple 500 */
-.tooltip-purple-500:after {
- @apply bg-purple-500;
-}
-
-/* Pink 500 */
-.tooltip-pink-500:after {
- @apply bg-pink-500;
-}
-
-/* Fuchsia 500 */
-.tooltip-fuchsia-500:after {
- @apply bg-fuchsia-500;
-}
-
-/* Yellow 500 */
-.tooltip-yellow-500:after {
- @apply bg-yellow-500;
-}
-
-/* Red-500 */
-.tooltip-red-500:after {
- @apply bg-red-500;
-}
-
-/* Directions */
-
-/* Top (default) */
-[data-tooltip]:before,
-[data-tooltip]:after,
-.tooltip:before,
-.tooltip:after,
-.tooltip-top:before,
-.tooltip-top:after {
- bottom: 100%;
- left: 50%;
-}
-
-/* Horizontally align top/bottom tooltips */
-[data-tooltip]:after,
-.tooltip:after,
-.tooltip-top:after {
- margin-left: -80px;
-}
-
-[data-tooltip]:hover:before,
-[data-tooltip]:hover:after,
-[data-tooltip]:focus:before,
-[data-tooltip]:focus:after,
-.tooltip:hover:before,
-.tooltip:hover:after,
-.tooltip:focus:before,
-.tooltip:focus:after,
-.tooltip-top:hover:before,
-.tooltip-top:hover:after,
-.tooltip-top:focus:before,
-.tooltip-top:focus:after {
- transform: translateY(-12px);
-}
-
-/* Left */
-.tooltip-left:before,
-.tooltip-left:after {
- right: 100%;
- bottom: 50%;
- left: auto;
-}
-
-.tooltip-left:hover:before,
-.tooltip-left:hover:after,
-.tooltip-left:focus:before,
-.tooltip-left:focus:after {
- transform: translateX(-12px);
-}
-
-/* Bottom */
-.tooltip-bottom:before,
-.tooltip-bottom:after {
- top: 100%;
- bottom: auto;
- left: 50%;
-}
-
-.tooltip-bottom:hover:before,
-.tooltip-bottom:hover:after,
-.tooltip-bottom:focus:before,
-.tooltip-bottom:focus:after {
- transform: translateY(12px);
-}
-
-/* Right */
-.tooltip-right:before,
-.tooltip-right:after {
- bottom: 50%;
- left: 100%;
-}
-
-.tooltip-right:hover:before,
-.tooltip-right:hover:after,
-.tooltip-right:focus:before,
-.tooltip-right:focus:after {
- transform: translateX(12px);
-}
-
-/* Move directional arrows down a bit for left/right tooltips */
-.tooltip-left:before,
-.tooltip-right:before {
- top: 12px;
-}
-
-/* Vertically center tooltip content for left/right tooltips */
-.tooltip-left:after,
-.tooltip-right:after {
- margin-left: 0;
- margin-bottom: -16px;
-}
.box-selection {
@apply min-w-[16rem] max-w-[24rem] justify-center rounded border-transparent bg-coolgray-200 p-6 hover:border-transparent hover:bg-coolgray-400;
}
-._toastBar {
- @apply hidden !important;
-}
-._toastMsg {
- @apply text-xs !important;
-}
-._toastBtn {
- @apply text-xs !important;
-}
-._toastItem {
- @apply bg-coollabs bg-opacity-80 !important;
-}
-
.lds-heart {
animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
@@ -399,7 +190,7 @@ a {
}
.sub-menu {
- @apply text-xl font-bold hover:bg-coolgray-500 rounded p-2 hover:text-white text-stone-200 cursor-pointer;
+ @apply w-48 text-base font-bold hover:bg-coolgray-500 rounded p-2 hover:text-white text-stone-200 cursor-pointer;
}
.sub-menu-active {
diff --git a/package.json b/package.json
index 3e8910b47..2dd5093dc 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "coolify",
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
"version": "3.2.0",
- "license": "AGPL-3.0",
+ "license": "Apache-2.0",
"repository": "github:coollabsio/coolify",
"scripts": {
"oc": "opencollective-setup",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 244410f3b..100602e0b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -15,36 +15,36 @@ importers:
apps/api:
specifiers:
'@breejs/ts-worker': 2.0.0
- '@fastify/autoload': 5.1.0
+ '@fastify/autoload': 5.2.0
'@fastify/cookie': 7.3.1
- '@fastify/cors': 8.0.0
- '@fastify/env': 4.0.0
- '@fastify/jwt': 6.3.1
- '@fastify/static': 6.4.1
+ '@fastify/cors': 8.1.0
+ '@fastify/env': 4.1.0
+ '@fastify/jwt': 6.3.2
+ '@fastify/static': 6.5.0
'@iarna/toml': 2.2.5
'@prisma/client': 3.15.2
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
'@types/node-os-utils': 1.3.0
- '@typescript-eslint/eslint-plugin': 5.31.0
- '@typescript-eslint/parser': 5.31.0
+ '@typescript-eslint/eslint-plugin': 5.33.0
+ '@typescript-eslint/parser': 5.33.0
axios: 0.27.2
bcryptjs: 2.4.3
- bree: 9.1.1
+ bree: 9.1.2
cabin: 9.1.2
compare-versions: 4.1.3
cuid: 2.1.8
dayjs: 1.11.4
- dockerode: 3.3.2
+ dockerode: 3.3.3
dotenv-extended: 2.9.0
- esbuild: 0.14.50
- eslint: 8.20.0
+ esbuild: 0.15.0
+ eslint: 8.21.0
eslint-config-prettier: 8.5.0
eslint-plugin-prettier: 4.2.1
- fastify: 4.3.0
- fastify-plugin: 4.0.0
+ fastify: 4.4.0
+ fastify-plugin: 4.1.0
generate-password: 1.7.0
get-port: 6.1.2
- got: 12.2.0
+ got: 12.3.1
is-ip: 5.0.0
is-port-reachable: 4.0.0
js-yaml: 4.1.0
@@ -52,85 +52,84 @@ importers:
node-forge: 1.3.1
node-os-utils: 1.3.7
nodemon: 2.0.19
- p-queue: 7.2.0
+ p-queue: 7.3.0
prettier: 2.7.1
prisma: 3.15.2
public-ip: 6.0.1
rimraf: 3.0.2
ssh-config: 4.1.6
strip-ansi: 7.0.1
- tsconfig-paths: 4.0.0
+ tsconfig-paths: 4.1.0
typescript: 4.7.4
unique-names-generator: 4.7.1
dependencies:
- '@breejs/ts-worker': 2.0.0_mzy4jj6hcpbntx6tt7gmuylc4u
- '@fastify/autoload': 5.1.0
+ '@breejs/ts-worker': 2.0.0_bwhsujh6chddr2teptepfka5au
+ '@fastify/autoload': 5.2.0
'@fastify/cookie': 7.3.1
- '@fastify/cors': 8.0.0
- '@fastify/env': 4.0.0
- '@fastify/jwt': 6.3.1
- '@fastify/static': 6.4.1
+ '@fastify/cors': 8.1.0
+ '@fastify/env': 4.1.0
+ '@fastify/jwt': 6.3.2
+ '@fastify/static': 6.5.0
'@iarna/toml': 2.2.5
'@prisma/client': 3.15.2_prisma@3.15.2
axios: 0.27.2
bcryptjs: 2.4.3
- bree: 9.1.1
+ bree: 9.1.2
cabin: 9.1.2
compare-versions: 4.1.3
cuid: 2.1.8
dayjs: 1.11.4
- dockerode: 3.3.2
+ dockerode: 3.3.3
dotenv-extended: 2.9.0
- fastify: 4.3.0
- fastify-plugin: 4.0.0
+ fastify: 4.4.0
+ fastify-plugin: 4.1.0
generate-password: 1.7.0
get-port: 6.1.2
- got: 12.2.0
+ got: 12.3.1
is-ip: 5.0.0
is-port-reachable: 4.0.0
js-yaml: 4.1.0
jsonwebtoken: 8.5.1
node-forge: 1.3.1
node-os-utils: 1.3.7
- p-queue: 7.2.0
+ p-queue: 7.3.0
public-ip: 6.0.1
ssh-config: 4.1.6
strip-ansi: 7.0.1
unique-names-generator: 4.7.1
devDependencies:
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
'@types/node-os-utils': 1.3.0
- '@typescript-eslint/eslint-plugin': 5.31.0_d5zwcxr4bwkhmuo464cb3a2puu
- '@typescript-eslint/parser': 5.31.0_he2ccbldppg44uulnyq4rwocfa
- esbuild: 0.14.50
- eslint: 8.20.0
- eslint-config-prettier: 8.5.0_eslint@8.20.0
- eslint-plugin-prettier: 4.2.1_g4fztgbwjyq2fvmcscny2sj6fy
+ '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq
+ '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
+ esbuild: 0.15.0
+ eslint: 8.21.0
+ eslint-config-prettier: 8.5.0_eslint@8.21.0
+ eslint-plugin-prettier: 4.2.1_h62lvancfh4b7r6zn2dgodrh5e
nodemon: 2.0.19
prettier: 2.7.1
prisma: 3.15.2
rimraf: 3.0.2
- tsconfig-paths: 4.0.0
+ tsconfig-paths: 4.1.0
typescript: 4.7.4
apps/ui:
specifiers:
- '@playwright/test': 1.23.4
- '@sveltejs/adapter-static': 1.0.0-next.37
- '@sveltejs/kit': 1.0.0-next.377
+ '@playwright/test': 1.24.2
+ '@sveltejs/adapter-static': 1.0.0-next.39
+ '@sveltejs/kit': 1.0.0-next.405
'@types/js-cookie': 3.0.2
- '@typescript-eslint/eslint-plugin': 5.30.6
- '@typescript-eslint/parser': 5.30.6
- '@zerodevx/svelte-toast': 0.7.2
- autoprefixer: 10.4.7
+ '@typescript-eslint/eslint-plugin': 5.33.0
+ '@typescript-eslint/parser': 5.33.0
+ autoprefixer: 10.4.8
cuid: 2.1.8
- daisyui: ^2.22.0
- eslint: 8.20.0
+ daisyui: 2.22.0
+ eslint: 8.21.0
eslint-config-prettier: 8.5.0
eslint-plugin-svelte3: 4.0.0
js-cookie: 3.0.1
p-limit: 4.0.0
- postcss: 8.4.14
+ postcss: 8.4.16
prettier: 2.7.1
prettier-plugin-svelte: 2.7.0
svelte: 3.49.0
@@ -138,41 +137,40 @@ importers:
svelte-preprocess: 4.10.7
svelte-select: 4.4.7
sveltekit-i18n: 2.2.2
- tailwindcss: 3.1.6
+ tailwindcss: 3.1.8
tailwindcss-scrollbar: 0.1.0
tslib: 2.4.0
typescript: 4.7.4
- vite: 3.0.1
+ vite: 3.0.5
dependencies:
- '@sveltejs/adapter-static': 1.0.0-next.37
- '@zerodevx/svelte-toast': 0.7.2
+ '@sveltejs/adapter-static': 1.0.0-next.39
cuid: 2.1.8
- daisyui: 2.22.0_ugi4xkrfysqkt4c4y6hkyfj344
+ daisyui: 2.22.0_25hquoklqeoqwmt7fwvvcyxm5e
js-cookie: 3.0.1
p-limit: 4.0.0
svelte-select: 4.4.7
sveltekit-i18n: 2.2.2_svelte@3.49.0
devDependencies:
- '@playwright/test': 1.23.4
- '@sveltejs/kit': 1.0.0-next.377_svelte@3.49.0+vite@3.0.1
+ '@playwright/test': 1.24.2
+ '@sveltejs/kit': 1.0.0-next.405_svelte@3.49.0+vite@3.0.5
'@types/js-cookie': 3.0.2
- '@typescript-eslint/eslint-plugin': 5.30.6_b7n364ggt6o4xlkgyoaww3ph3q
- '@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
- autoprefixer: 10.4.7_postcss@8.4.14
- eslint: 8.20.0
- eslint-config-prettier: 8.5.0_eslint@8.20.0
- eslint-plugin-svelte3: 4.0.0_piwa6j2njmnknm35bh3wz5v52y
- postcss: 8.4.14
+ '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq
+ '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
+ autoprefixer: 10.4.8_postcss@8.4.16
+ eslint: 8.21.0
+ eslint-config-prettier: 8.5.0_eslint@8.21.0
+ eslint-plugin-svelte3: 4.0.0_a7wk4ghvg4hia4trwaglu7p6cq
+ postcss: 8.4.16
prettier: 2.7.1
prettier-plugin-svelte: 2.7.0_o3ioganyptcsrh6x4hnxvjkpqi
svelte: 3.49.0
- svelte-check: 2.8.0_nxvsp6sjiltnatqa6jdm4mr6zu
- svelte-preprocess: 4.10.7_bgntxiihuqhg5mwaa7nczjwpga
- tailwindcss: 3.1.6
- tailwindcss-scrollbar: 0.1.0_tailwindcss@3.1.6
+ svelte-check: 2.8.0_vylzxgme5yisu3bsyvcau4hjtq
+ svelte-preprocess: 4.10.7_fje22ktja5v2dh6nbkissncqme
+ tailwindcss: 3.1.8
+ tailwindcss-scrollbar: 0.1.0_tailwindcss@3.1.8
tslib: 2.4.0
typescript: 4.7.4
- vite: 3.0.1
+ vite: 3.0.5
packages:
@@ -209,15 +207,15 @@ packages:
engines: {node: '>= 10'}
dev: false
- /@breejs/ts-worker/2.0.0_mzy4jj6hcpbntx6tt7gmuylc4u:
+ /@breejs/ts-worker/2.0.0_bwhsujh6chddr2teptepfka5au:
resolution: {integrity: sha512-6anHRcmgYlF7mrm/YVRn6rx2cegLuiY3VBxkkimOTWC/dVQeH336imVSuIKEGKTwiuNTPr2hswVdDSneNuXg3A==}
engines: {node: '>= 12.11'}
peerDependencies:
bree: '>=9.0.0'
dependencies:
- bree: 9.1.1
- ts-node: 10.8.2_f6w67sjx3imwytyzb2qhabnzqe
- tsconfig-paths: 4.0.0
+ bree: 9.1.2
+ ts-node: 10.8.2_cvilj4l3ytrlnvtlqw3tscihve
+ tsconfig-paths: 4.1.0
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
@@ -232,13 +230,22 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: false
+ /@esbuild/linux-loong64/0.15.0:
+ resolution: {integrity: sha512-7ChD3qsxRPIPp9bfjspZiM/x8B1UZL7IKwp0YdnC1kKsDCB5Q8/TexedeeEbkI9inlunu8Lll2lP2wnkiXTCLA==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@eslint/eslintrc/1.3.0:
resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.2
+ espree: 9.3.3
globals: 13.15.0
ignore: 5.2.0
import-fresh: 3.3.0
@@ -262,8 +269,8 @@ packages:
fast-uri: 2.1.0
dev: false
- /@fastify/autoload/5.1.0:
- resolution: {integrity: sha512-FcZf3sy/8P6GObc6g2MrRqW1ricDtUm/xDK9i1PNH4Aaqj83DkkmADWTyQvE92OR0gy5EjPGPUcBHY7NzvHRUg==}
+ /@fastify/autoload/5.2.0:
+ resolution: {integrity: sha512-qpLVPQM+JCiGvRdybGRz8dty3HRJtKgYRCagslyAiVecN+g/xHvB0gR8I1PiOvek2NQFIs3WPDxz2nLBoXqB2A==}
dependencies:
pkg-up: 3.1.0
dev: false
@@ -273,21 +280,21 @@ packages:
dependencies:
cookie: 0.5.0
cookie-signature: 1.2.0
- fastify-plugin: 4.0.0
+ fastify-plugin: 4.1.0
dev: false
- /@fastify/cors/8.0.0:
- resolution: {integrity: sha512-mB2GsA7aVwq7XG6B2OM1FMpcaiXY69ZbM1h/xDJxLEVu5ITGcs5XYrBIYTMNU2dQtzO6mzXhGd2dEKaCnB7UgQ==}
+ /@fastify/cors/8.1.0:
+ resolution: {integrity: sha512-1OmjwyxQZ8GePxa5t1Rpsn2qS56+1ouKMvZufpgJWhXtoCeM/ffA+PsNW8pyslPr4W0E27gVoFqtvHwhXW1U2w==}
dependencies:
- fastify-plugin: 3.0.1
- vary: 1.1.2
+ fastify-plugin: 4.1.0
+ mnemonist: 0.39.2
dev: false
- /@fastify/env/4.0.0:
- resolution: {integrity: sha512-ZpvEH6E2dhYaDgxlyQSmTpVDhKFXRF6DH7N9sNsjpn+GIWDbIYTiYf3ttr0wGXgBWIc0bJFpTFTjlNmP2VaZ/w==}
+ /@fastify/env/4.1.0:
+ resolution: {integrity: sha512-9l+JTUiFWSwb9dGSeR46aDWBjrAg8lJeqMjbotG5/8Ho90+qzRbt8kdSnVhLm5k6HcqXcBaBAT/6cImRhRq0VQ==}
dependencies:
- env-schema: 4.0.0
- fastify-plugin: 3.0.1
+ env-schema: 5.0.0
+ fastify-plugin: 4.1.0
dev: false
/@fastify/error/3.0.0:
@@ -300,22 +307,22 @@ packages:
fast-json-stringify: 5.0.5
dev: false
- /@fastify/jwt/6.3.1:
- resolution: {integrity: sha512-JRcm+l7CEsK66aOraxgGGie1VuiQtg/4RALVeQULEPDWvKGL08zK0JXCtibsX3dmdzpaFxYE/9oA8vAbnQ9YTg==}
+ /@fastify/jwt/6.3.2:
+ resolution: {integrity: sha512-LD41UNS55o1HyUlCiR1G2fDtqebvsSaxfWsVuerSLmyGWbCjfzNOPjEs4yUvMj2NjbV73ZzR3ZtR64vr1TeFYA==}
dependencies:
'@fastify/error': 3.0.0
'@lukeed/ms': 2.0.0
fast-jwt: 1.5.4
- fastify-plugin: 4.0.0
+ fastify-plugin: 4.1.0
steed: 1.1.3
dev: false
- /@fastify/static/6.4.1:
- resolution: {integrity: sha512-RuNZyZwddGCOcxGeplWM3eBh6pgnSGGeXJX4nLeJX8NzggMWR8XwGI3/DW/S3DFjo8vBPUvdi/Vd/beqQt9Y2w==}
+ /@fastify/static/6.5.0:
+ resolution: {integrity: sha512-WEk6iqgejA6ivjkvbJ47A+uMci225z5lZwLXCXZS3ZYR/kYje1gzzarkKKGL6TWpBw6smkOzxA7dfEoY0347Nw==}
dependencies:
'@fastify/accept-negotiator': 1.0.0
content-disposition: 0.5.4
- fastify-plugin: 4.0.0
+ fastify-plugin: 4.1.0
glob: 8.0.3
p-limit: 3.1.0
readable-stream: 4.0.0
@@ -324,8 +331,8 @@ packages:
- supports-color
dev: false
- /@humanwhocodes/config-array/0.9.5:
- resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
+ /@humanwhocodes/config-array/0.10.4:
+ resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -335,6 +342,10 @@ packages:
- supports-color
dev: true
+ /@humanwhocodes/gitignore-to-minimatch/1.0.2:
+ resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==}
+ dev: true
+
/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
@@ -387,13 +398,13 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.13.0
- /@playwright/test/1.23.4:
- resolution: {integrity: sha512-iIsoMJDS/lyuhw82FtcV/B3PXikgVD3hNe5hyvOpRM0uRr1OIpN3LgPeRbBjhzBWmyf6RgRg5fqK5sVcpA03yA==}
+ /@playwright/test/1.24.2:
+ resolution: {integrity: sha512-Q4X224pRHw4Dtkk5PoNJplZCokLNvVbXD9wDQEMrHcEuvWpJWEQDeJ9gEwkZ3iCWSFSWBshIX177B231XW4wOQ==}
engines: {node: '>=14'}
hasBin: true
dependencies:
- '@types/node': 18.0.4
- playwright-core: 1.23.4
+ '@types/node': 18.6.1
+ playwright-core: 1.24.2
dev: true
/@prisma/client/3.15.2_prisma@3.15.2:
@@ -431,31 +442,31 @@ packages:
engines: {node: '>=14.16'}
dev: false
- /@sveltejs/adapter-static/1.0.0-next.37:
- resolution: {integrity: sha512-BDFkx4CGAd6pG4e3+zYjy/eM9UDbhkRgXqavUzCO5oT8xXao5TeprY1AIbdzjMTmFjsWdeSXE9TbIsT0iikpyQ==}
- dependencies:
- tiny-glob: 0.2.9
+ /@sveltejs/adapter-static/1.0.0-next.39:
+ resolution: {integrity: sha512-EeD39H6iEe0UEKnKxLFTZFZpi/FcX5xfbAvsMQ+B09aDZccpQmkJBSIo+4kq1JsQGSjwi/+J3aE9bR67R6CIyQ==}
dev: false
- /@sveltejs/kit/1.0.0-next.377_svelte@3.49.0+vite@3.0.1:
- resolution: {integrity: sha512-DH2v2yUBUuDZ7vzjPXUd/yt1AMR3BIkZN0ubLAvS2C+q5Wbvk7ZvAJhfPZ3OYc3ZpQXe4ZGEcptOjvEYvd1lLA==}
+ /@sveltejs/kit/1.0.0-next.405_svelte@3.49.0+vite@3.0.5:
+ resolution: {integrity: sha512-jHSa74F7k+hC+0fof75g/xm/+1M5sM66Qt6v8eLLMSgjkp36Lb5xOioBhbl6w0NYoE5xysLsBWuu+yHytfvCBA==}
engines: {node: '>=16.9'}
hasBin: true
+ requiresBuild: true
peerDependencies:
svelte: ^3.44.0
vite: ^3.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte': 1.0.1_svelte@3.49.0+vite@3.0.1
+ '@sveltejs/vite-plugin-svelte': 1.0.1_svelte@3.49.0+vite@3.0.5
chokidar: 3.5.3
sade: 1.8.1
svelte: 3.49.0
- vite: 3.0.1
+ tiny-glob: 0.2.9
+ vite: 3.0.5
transitivePeerDependencies:
- diff-match-patch
- supports-color
dev: true
- /@sveltejs/vite-plugin-svelte/1.0.1_svelte@3.49.0+vite@3.0.1:
+ /@sveltejs/vite-plugin-svelte/1.0.1_svelte@3.49.0+vite@3.0.5:
resolution: {integrity: sha512-PorCgUounn0VXcpeJu+hOweZODKmGuLHsLomwqSj+p26IwjjGffmYQfVHtiTWq+NqaUuuHWWG7vPge6UFw4Aeg==}
engines: {node: ^14.18.0 || >= 16}
peerDependencies:
@@ -473,7 +484,7 @@ packages:
magic-string: 0.26.2
svelte: 3.49.0
svelte-hmr: 0.14.12_svelte@3.49.0
- vite: 3.0.1
+ vite: 3.0.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -520,7 +531,7 @@ packages:
dependencies:
'@types/http-cache-semantics': 4.0.1
'@types/keyv': 3.1.4
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
'@types/responselike': 1.0.0
dev: false
@@ -543,7 +554,7 @@ packages:
/@types/keyv/3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
dev: false
/@types/lodash/4.14.182:
@@ -554,12 +565,12 @@ packages:
resolution: {integrity: sha512-XwVteWQx/XkfRPyaGkw8dEbrCAkoRZ73pI3XznUYIpzbCfpQB3UnDlR5TnmdhetlT889tUJGF8QWo9xrgTpsiA==}
dev: true
- /@types/node/18.0.4:
- resolution: {integrity: sha512-M0+G6V0Y4YV8cqzHssZpaNCqvYwlCiulmm0PwpNLF55r/+cT8Ol42CHRU1SEaYFH2rTwiiE1aYg/2g2rrtGdPA==}
- dev: true
-
/@types/node/18.6.1:
resolution: {integrity: sha512-z+2vB6yDt1fNwKOeGbckpmirO+VBDuQqecXkgeIqDlaOtmKn6hPR/viQ8cxCfqLU4fTlvM3+YjM367TukWdxpg==}
+ dev: true
+
+ /@types/node/18.6.5:
+ resolution: {integrity: sha512-Xjt5ZGUa5WusGZJ4WJPbOT8QOqp6nDynVFRKcUt32bOgvXEoc6o085WNkYTMO7ifAj2isEfQQ2cseE+wT6jsRw==}
/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -572,17 +583,17 @@ packages:
/@types/responselike/1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
dev: false
/@types/sass/1.43.1:
resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==}
dependencies:
- '@types/node': 18.0.4
+ '@types/node': 18.6.1
dev: true
- /@typescript-eslint/eslint-plugin/5.30.6_b7n364ggt6o4xlkgyoaww3ph3q:
- resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==}
+ /@typescript-eslint/eslint-plugin/5.33.0_njno5y7ry2l2lcmiu4tywxkwnq:
+ resolution: {integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -592,12 +603,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
- '@typescript-eslint/scope-manager': 5.30.6
- '@typescript-eslint/type-utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
- '@typescript-eslint/utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
+ '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
+ '@typescript-eslint/scope-manager': 5.33.0
+ '@typescript-eslint/type-utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
+ '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
debug: 4.3.4
- eslint: 8.20.0
+ eslint: 8.21.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
@@ -608,35 +619,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin/5.31.0_d5zwcxr4bwkhmuo464cb3a2puu:
- resolution: {integrity: sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.31.0_he2ccbldppg44uulnyq4rwocfa
- '@typescript-eslint/scope-manager': 5.31.0
- '@typescript-eslint/type-utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa
- '@typescript-eslint/utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa
- debug: 4.3.4
- eslint: 8.20.0
- functional-red-black-tree: 1.0.1
- ignore: 5.2.0
- regexpp: 3.2.0
- semver: 7.3.7
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/parser/5.30.6_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==}
+ /@typescript-eslint/parser/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq:
+ resolution: {integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -645,54 +629,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.30.6
- '@typescript-eslint/types': 5.30.6
- '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
+ '@typescript-eslint/scope-manager': 5.33.0
+ '@typescript-eslint/types': 5.33.0
+ '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4
debug: 4.3.4
- eslint: 8.20.0
+ eslint: 8.21.0
typescript: 4.7.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.31.0_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 5.31.0
- '@typescript-eslint/types': 5.31.0
- '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4
- debug: 4.3.4
- eslint: 8.20.0
- typescript: 4.7.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/scope-manager/5.30.6:
- resolution: {integrity: sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==}
+ /@typescript-eslint/scope-manager/5.33.0:
+ resolution: {integrity: sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.30.6
- '@typescript-eslint/visitor-keys': 5.30.6
+ '@typescript-eslint/types': 5.33.0
+ '@typescript-eslint/visitor-keys': 5.33.0
dev: true
- /@typescript-eslint/scope-manager/5.31.0:
- resolution: {integrity: sha512-8jfEzBYDBG88rcXFxajdVavGxb5/XKXyvWgvD8Qix3EEJLCFIdVloJw+r9ww0wbyNLOTYyBsR+4ALNGdlalLLg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.31.0
- '@typescript-eslint/visitor-keys': 5.31.0
- dev: true
-
- /@typescript-eslint/type-utils/5.30.6_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==}
+ /@typescript-eslint/type-utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq:
+ resolution: {integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -701,46 +657,22 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
+ '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq
debug: 4.3.4
- eslint: 8.20.0
+ eslint: 8.21.0
tsutils: 3.21.0_typescript@4.7.4
typescript: 4.7.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/type-utils/5.31.0_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa
- debug: 4.3.4
- eslint: 8.20.0
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/types/5.30.6:
- resolution: {integrity: sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==}
+ /@typescript-eslint/types/5.33.0:
+ resolution: {integrity: sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.31.0:
- resolution: {integrity: sha512-/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /@typescript-eslint/typescript-estree/5.30.6_typescript@4.7.4:
- resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==}
+ /@typescript-eslint/typescript-estree/5.33.0_typescript@4.7.4:
+ resolution: {integrity: sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -748,8 +680,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.30.6
- '@typescript-eslint/visitor-keys': 5.30.6
+ '@typescript-eslint/types': 5.33.0
+ '@typescript-eslint/visitor-keys': 5.33.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -760,83 +692,32 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.31.0_typescript@4.7.4:
- resolution: {integrity: sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.31.0
- '@typescript-eslint/visitor-keys': 5.31.0
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.3.7
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/utils/5.30.6_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==}
+ /@typescript-eslint/utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq:
+ resolution: {integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==}
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
- '@typescript-eslint/scope-manager': 5.30.6
- '@typescript-eslint/types': 5.30.6
- '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
- eslint: 8.20.0
+ '@typescript-eslint/scope-manager': 5.33.0
+ '@typescript-eslint/types': 5.33.0
+ '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4
+ eslint: 8.21.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.20.0
+ eslint-utils: 3.0.0_eslint@8.21.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils/5.31.0_he2ccbldppg44uulnyq4rwocfa:
- resolution: {integrity: sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==}
- 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
- '@typescript-eslint/scope-manager': 5.31.0
- '@typescript-eslint/types': 5.31.0
- '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4
- eslint: 8.20.0
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.20.0
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /@typescript-eslint/visitor-keys/5.30.6:
- resolution: {integrity: sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==}
+ /@typescript-eslint/visitor-keys/5.33.0:
+ resolution: {integrity: sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.30.6
+ '@typescript-eslint/types': 5.33.0
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.31.0:
- resolution: {integrity: sha512-ZK0jVxSjS4gnPirpVjXHz7mgdOsZUHzNYSfTw2yPa3agfbt9YfqaBiBZFSSxeBWnpWkzCxTfUpnzA3Vily/CSg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.31.0
- eslint-visitor-keys: 3.3.0
- dev: true
-
- /@zerodevx/svelte-toast/0.7.2:
- resolution: {integrity: sha512-vWiY6IqsstcOoQ8PFBuFuxgPkj1JFAGhUF9gC7wLx7c5A9SSfdtxWs/39ekGSIeyJK0yqWhTcmzGrCEWSELzDw==}
- dev: false
-
/abbrev/1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
dev: true
@@ -852,12 +733,12 @@ packages:
resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==}
dev: false
- /acorn-jsx/5.3.2_acorn@8.7.1:
+ /acorn-jsx/5.3.2_acorn@8.8.0:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.7.1
+ acorn: 8.8.0
dev: true
/acorn-node/1.8.2:
@@ -885,6 +766,13 @@ packages:
resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: false
+
+ /acorn/8.8.0:
+ resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
/aggregate-error/4.0.1:
resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==}
@@ -1031,19 +919,19 @@ packages:
typpy: 2.3.11
dev: false
- /autoprefixer/10.4.7_postcss@8.4.14:
- resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
+ /autoprefixer/10.4.8_postcss@8.4.16:
+ resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.2
- caniuse-lite: 1.0.30001366
+ browserslist: 4.21.3
+ caniuse-lite: 1.0.30001375
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
/avvio/8.1.3:
@@ -1816,8 +1704,8 @@ packages:
dependencies:
fill-range: 7.0.1
- /bree/9.1.1:
- resolution: {integrity: sha512-jNTi5+Su6AQfSz155Z3FJb+nNVexxWKlIp3SvPE5dAH0zr0ffzpK61BN943IF5+ZlJjQhyG5VcprCQY/Wjpdrw==}
+ /bree/9.1.2:
+ resolution: {integrity: sha512-qwAiwPz7Ba2WvhtQl+qI7mARmVK2GG6P7qHV6IQcblYb5TCZXhFNugpp2JOGAdgc9GU4SzR/PjiDUHLVg/CvzQ==}
engines: {node: '>=12.17.0 <13.0.0-0||>=13.2.0'}
dependencies:
'@breejs/later': 4.1.0
@@ -1836,15 +1724,15 @@ packages:
resolution: {integrity: sha512-kzXheikaJsBtzUBlyVtPIY5r0soQePzjwVwT4IlDpU2RvfB5Py52gpU98M77rgqMCheoSSZvrcrdj3t6cZ3suA==}
dev: false
- /browserslist/4.21.2:
- resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==}
+ /browserslist/4.21.3:
+ resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001366
- electron-to-chromium: 1.4.191
+ caniuse-lite: 1.0.30001375
+ electron-to-chromium: 1.4.213
node-releases: 2.0.6
- update-browserslist-db: 1.0.4_browserslist@4.21.2
+ update-browserslist-db: 1.0.5_browserslist@4.21.3
/bson-objectid/1.3.1:
resolution: {integrity: sha512-eQBNQXsisEAXlwiSy8zRNZdW2xDBJaEVkTPbodYR9hGxxtE548Qq7ilYOd8WAQ86xF7NRUdiWSQ1pa/TkKiE2A==}
@@ -1925,8 +1813,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /caniuse-lite/1.0.30001366:
- resolution: {integrity: sha512-yy7XLWCubDobokgzudpkKux8e0UOOnLHE6mlNJBzT3lZJz6s5atSEzjoL+fsCPkI0G8MP5uVdDx1ur/fXEWkZA==}
+ /caniuse-lite/1.0.30001375:
+ resolution: {integrity: sha512-kWIMkNzLYxSvnjy0hL8w1NOaWNr2rn39RTAVyIwcw8juu60bZDWiF1/loOYANzjtJmy6qPgNmn38ro5Pygagdw==}
/chalk/1.1.3:
resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
@@ -2215,18 +2103,18 @@ packages:
resolution: {integrity: sha512-p6JFxJc3M4OTD2li2qaHkDCw9SfMw82Ldr6OC9Je1aXiGfhx2W8p3GaoeaGrPJTUN9NirTM/KTxHWMUdR1rsUg==}
dev: false
- /daisyui/2.22.0_ugi4xkrfysqkt4c4y6hkyfj344:
+ /daisyui/2.22.0_25hquoklqeoqwmt7fwvvcyxm5e:
resolution: {integrity: sha512-H08aQP+Mfl2fQOmyaxd1NP54gQbr2xRUj2MmFFvfJ5EDGbthVBICDMNFKyia/zBfR58G8eTJo3CmydglM81/7Q==}
peerDependencies:
autoprefixer: ^10.0.2
postcss: ^8.1.6
dependencies:
- autoprefixer: 10.4.7_postcss@8.4.14
+ autoprefixer: 10.4.8_postcss@8.4.16
color: 4.2.3
css-selector-tokenizer: 0.8.0
- postcss: 8.4.14
- postcss-js: 4.0.0_postcss@8.4.14
- tailwindcss: 3.1.6
+ postcss: 8.4.16
+ postcss-js: 4.0.0_postcss@8.4.16
+ tailwindcss: 3.1.8
transitivePeerDependencies:
- ts-node
dev: false
@@ -2403,8 +2291,8 @@ packages:
- supports-color
dev: false
- /dockerode/3.3.2:
- resolution: {integrity: sha512-oXN+1XVH2TeyE0Jj9Ci6Fim8ZIDxyqeJrkx9qhEOaRiA+nhLihKfd3M2L+Aqrj5C2ObPw8RVN2zPWvvk0x2dwg==}
+ /dockerode/3.3.3:
+ resolution: {integrity: sha512-lvKV6/NGf2/CYLt5V4c0fd6Fl9XZSCo1Z2HBT9ioKrKLMB2o+gA62Uza8RROpzGvYv57KJx2dKu+ZwSpB//OIA==}
engines: {node: '>= 8.0'}
dependencies:
docker-modem: 3.0.5
@@ -2462,8 +2350,8 @@ packages:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: false
- /electron-to-chromium/1.4.191:
- resolution: {integrity: sha512-MeEaiuoSFh4G+rrN+Ilm1KJr8pTTZloeLurcZ+PRcthvdK1gWThje+E6baL7/7LoNctrzCncavAG/j/vpES9jg==}
+ /electron-to-chromium/1.4.213:
+ resolution: {integrity: sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==}
/emoji-regex/8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2480,8 +2368,8 @@ packages:
once: 1.4.0
dev: false
- /env-schema/4.0.0:
- resolution: {integrity: sha512-hM5OwjrUPxxrCjC1Ykf+wPld2lbnN3/m9Y9wuMPt0jmYluJpAV3OXc1HiliZxFkxLzw2FcrSOXdw/3uI7PYCFA==}
+ /env-schema/5.0.0:
+ resolution: {integrity: sha512-91u95Nlny+LmjF3Mk96j8k6k+GOXcFEdMUv3bWQjtM2l+KTAdW6qITiv8kHYO8vCaCScXpJTDyd1AFnCQTnYaQ==}
dependencies:
ajv: 8.11.0
dotenv: 16.0.1
@@ -2535,15 +2423,6 @@ packages:
resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
dev: true
- /esbuild-android-64/0.14.49:
- resolution: {integrity: sha512-vYsdOTD+yi+kquhBiFWl3tyxnj2qZJsl4tAqwhT90ktUdnyTizgle7TjNx6Ar1bN7wcwWqZ9QInfdk2WVagSww==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/esbuild-android-64/0.14.50:
resolution: {integrity: sha512-H7iUEm7gUJHzidsBlFPGF6FTExazcgXL/46xxLo6i6bMtPim6ZmXyTccS8yOMpy6HAC6dPZ/JCQqrkkin69n6Q==}
engines: {node: '>=12'}
@@ -2553,10 +2432,10 @@ packages:
dev: true
optional: true
- /esbuild-android-arm64/0.14.49:
- resolution: {integrity: sha512-g2HGr/hjOXCgSsvQZ1nK4nW/ei8JUx04Li74qub9qWrStlysaVmadRyTVuW32FGIpLQyc5sUjjZopj49eGGM2g==}
+ /esbuild-android-64/0.15.0:
+ resolution: {integrity: sha512-A9wa6quw4nYIhCDH6rudxSTOAIfSOYU3eME8ZkfP21P+WTxz0pFORFDuBjVAcLhkora3bDc23C8UeloKiiQPOg==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [x64]
os: [android]
requiresBuild: true
dev: true
@@ -2571,11 +2450,11 @@ packages:
dev: true
optional: true
- /esbuild-darwin-64/0.14.49:
- resolution: {integrity: sha512-3rvqnBCtX9ywso5fCHixt2GBCUsogNp9DjGmvbBohh31Ces34BVzFltMSxJpacNki96+WIcX5s/vum+ckXiLYg==}
+ /esbuild-android-arm64/0.15.0:
+ resolution: {integrity: sha512-ujdverhuFUfW99HdF+L9n1wzG950lVL1AJVc1SEbJRaQC22tVq9xXNXkLLq7v4hSZWrdz/MT3hwhnQF0KTMxNg==}
engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
+ cpu: [arm64]
+ os: [android]
requiresBuild: true
dev: true
optional: true
@@ -2589,10 +2468,10 @@ packages:
dev: true
optional: true
- /esbuild-darwin-arm64/0.14.49:
- resolution: {integrity: sha512-XMaqDxO846srnGlUSJnwbijV29MTKUATmOLyQSfswbK/2X5Uv28M9tTLUJcKKxzoo9lnkYPsx2o8EJcTYwCs/A==}
+ /esbuild-darwin-64/0.15.0:
+ resolution: {integrity: sha512-aA5SVtXCetQ9ChREG8xDdzv43XGbdz+u4AxQgQZrRu0gXD3yJfawfZgquaej3CxVAlrOgBPbu5z+tA5SVhXAxQ==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
@@ -2607,11 +2486,11 @@ packages:
dev: true
optional: true
- /esbuild-freebsd-64/0.14.49:
- resolution: {integrity: sha512-NJ5Q6AjV879mOHFri+5lZLTp5XsO2hQ+KSJYLbfY9DgCu8s6/Zl2prWXVANYTeCDLlrIlNNYw8y34xqyLDKOmQ==}
+ /esbuild-darwin-arm64/0.15.0:
+ resolution: {integrity: sha512-CaxPS5JUQpldeIMVqw0K+vlGfyMphvtIWugPMyXPGTDmUAcWXSha1QRgJ5Fxa9d/cC4DKeC8L8/q7ClzinXxfA==}
engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
+ cpu: [arm64]
+ os: [darwin]
requiresBuild: true
dev: true
optional: true
@@ -2625,10 +2504,10 @@ packages:
dev: true
optional: true
- /esbuild-freebsd-arm64/0.14.49:
- resolution: {integrity: sha512-lFLtgXnAc3eXYqj5koPlBZvEbBSOSUbWO3gyY/0+4lBdRqELyz4bAuamHvmvHW5swJYL7kngzIZw6kdu25KGOA==}
+ /esbuild-freebsd-64/0.15.0:
+ resolution: {integrity: sha512-O9yvjry2bmX8sxx42JfwW6g/usZ0e3ndfb3+bquu20qkuEfDodqHNzotOjaKSREvxpw+Ub1zNtXvA/FFekSaOA==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
@@ -2643,11 +2522,11 @@ packages:
dev: true
optional: true
- /esbuild-linux-32/0.14.49:
- resolution: {integrity: sha512-zTTH4gr2Kb8u4QcOpTDVn7Z8q7QEIvFl/+vHrI3cF6XOJS7iEI1FWslTo3uofB2+mn6sIJEQD9PrNZKoAAMDiA==}
+ /esbuild-freebsd-arm64/0.15.0:
+ resolution: {integrity: sha512-Zv8bNAG1lYyCtWi+PVndgys6KRBe5hQgD81tK3zdZ6XEitpCPwF8QShYbV8RacG1YBD7aHKSoWKGkT9+5bMGhw==}
engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
+ cpu: [arm64]
+ os: [freebsd]
requiresBuild: true
dev: true
optional: true
@@ -2661,10 +2540,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-64/0.14.49:
- resolution: {integrity: sha512-hYmzRIDzFfLrB5c1SknkxzM8LdEUOusp6M2TnuQZJLRtxTgyPnZZVtyMeCLki0wKgYPXkFsAVhi8vzo2mBNeTg==}
+ /esbuild-linux-32/0.15.0:
+ resolution: {integrity: sha512-QZqCG55D5Wof1WmBJMuihNroLM9S2oDXGkqB0ZHMA67CQw+3cAwWxOKW36n6VFaKiE4MhvUuW7jI+lr2D7nXQQ==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
@@ -2679,10 +2558,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-arm/0.14.49:
- resolution: {integrity: sha512-iE3e+ZVv1Qz1Sy0gifIsarJMQ89Rpm9mtLSRtG3AH0FPgAzQ5Z5oU6vYzhc/3gSPi2UxdCOfRhw2onXuFw/0lg==}
+ /esbuild-linux-64/0.15.0:
+ resolution: {integrity: sha512-cmB2vAUWf9W8768H0DuOi6VUrQPCinx/oYhRbuR1TZj873vg1GTqc55LAh1cYCC0xEMd9MjO4YfI43OX4ewI1w==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
@@ -2697,10 +2576,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-arm64/0.14.49:
- resolution: {integrity: sha512-KLQ+WpeuY+7bxukxLz5VgkAAVQxUv67Ft4DmHIPIW+2w3ObBPQhqNoeQUHxopoW/aiOn3m99NSmSV+bs4BSsdA==}
+ /esbuild-linux-arm/0.15.0:
+ resolution: {integrity: sha512-UyY0Vqd9ngfeWBeJrrqHiXf4ozqXxzNT8ebdNt1ay5hfu/uXes3eVkt1YHP2dcxG/APPE4XDxvKlx0SoSwHP6Q==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
@@ -2715,10 +2594,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-mips64le/0.14.49:
- resolution: {integrity: sha512-n+rGODfm8RSum5pFIqFQVQpYBw+AztL8s6o9kfx7tjfK0yIGF6tm5HlG6aRjodiiKkH2xAiIM+U4xtQVZYU4rA==}
+ /esbuild-linux-arm64/0.15.0:
+ resolution: {integrity: sha512-bJc8k64Lss+2V8yx9kh4Q48SYPR/k0kxyep2pmvzaGm+AreeMnXI0J33zF4tU/OW9r3pwa74F3/MxF6x275Yhg==}
engines: {node: '>=12'}
- cpu: [mips64el]
+ cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
@@ -2733,10 +2612,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-ppc64le/0.14.49:
- resolution: {integrity: sha512-WP9zR4HX6iCBmMFH+XHHng2LmdoIeUmBpL4aL2TR8ruzXyT4dWrJ5BSbT8iNo6THN8lod6GOmYDLq/dgZLalGw==}
+ /esbuild-linux-mips64le/0.15.0:
+ resolution: {integrity: sha512-NoOxC4a1XfM4/zGBIujIuxhPVWvS6UgqE/ksyjZ6qgHQD9lWVjcEv3iPEKKIuHXPE1s+YHvJrdXVup96aVvflQ==}
engines: {node: '>=12'}
- cpu: [ppc64]
+ cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
@@ -2751,10 +2630,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-riscv64/0.14.49:
- resolution: {integrity: sha512-h66ORBz+Dg+1KgLvzTVQEA1LX4XBd1SK0Fgbhhw4akpG/YkN8pS6OzYI/7SGENiN6ao5hETRDSkVcvU9NRtkMQ==}
+ /esbuild-linux-ppc64le/0.15.0:
+ resolution: {integrity: sha512-OUkEhJAYPaYPvHZxjgnJhWB0qD8q8l1q8CnGLngmPAxb9WZrFwPYmykWBTSqGXeG08stScpkIQXy4HTSF8rH+w==}
engines: {node: '>=12'}
- cpu: [riscv64]
+ cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
@@ -2769,10 +2648,10 @@ packages:
dev: true
optional: true
- /esbuild-linux-s390x/0.14.49:
- resolution: {integrity: sha512-DhrUoFVWD+XmKO1y7e4kNCqQHPs6twz6VV6Uezl/XHYGzM60rBewBF5jlZjG0nCk5W/Xy6y1xWeopkrhFFM0sQ==}
+ /esbuild-linux-riscv64/0.15.0:
+ resolution: {integrity: sha512-DuSujKNrdCN+kvA0+BBS/ULaINuOeI0iU9XzhIRtTCR5cFJWd6aQTHluKEc3C/a/ib2KTVNjM21cUHi4Tj0NZA==}
engines: {node: '>=12'}
- cpu: [s390x]
+ cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
@@ -2787,11 +2666,11 @@ packages:
dev: true
optional: true
- /esbuild-netbsd-64/0.14.49:
- resolution: {integrity: sha512-BXaUwFOfCy2T+hABtiPUIpWjAeWK9P8O41gR4Pg73hpzoygVGnj0nI3YK4SJhe52ELgtdgWP/ckIkbn2XaTxjQ==}
+ /esbuild-linux-s390x/0.15.0:
+ resolution: {integrity: sha512-ttGGhgXRpJbsD+XXS2NIBThuEh8EvAJEnVQ9vzXviniPuvpuwKLFNBRPqtX3gE5o2bUQnh5ZugmDVuD9GW2ROg==}
engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
+ cpu: [s390x]
+ os: [linux]
requiresBuild: true
dev: true
optional: true
@@ -2805,11 +2684,11 @@ packages:
dev: true
optional: true
- /esbuild-openbsd-64/0.14.49:
- resolution: {integrity: sha512-lP06UQeLDGmVPw9Rg437Btu6J9/BmyhdoefnQ4gDEJTtJvKtQaUcOQrhjTq455ouZN4EHFH1h28WOJVANK41kA==}
+ /esbuild-netbsd-64/0.15.0:
+ resolution: {integrity: sha512-rb6sIQ/gZeQNrgplSLJ0zLirLwr3vQCzbL1jb0Ypay83Uup2s+OEI+Vw+oJ2SomrhVyOPwk/R4AY713bJKdLsQ==}
engines: {node: '>=12'}
cpu: [x64]
- os: [openbsd]
+ os: [netbsd]
requiresBuild: true
dev: true
optional: true
@@ -2823,11 +2702,11 @@ packages:
dev: true
optional: true
- /esbuild-sunos-64/0.14.49:
- resolution: {integrity: sha512-4c8Zowp+V3zIWje329BeLbGh6XI9c/rqARNaj5yPHdC61pHI9UNdDxT3rePPJeWcEZVKjkiAS6AP6kiITp7FSw==}
+ /esbuild-openbsd-64/0.15.0:
+ resolution: {integrity: sha512-CeU7hw291UJQpNg/oJLefmM9Rdeddo2ya9Vw9hdDrUyZAAZckqVRLDh9t4OdqJuXFdlo6BM2qhZCcY22O7wfGg==}
engines: {node: '>=12'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
requiresBuild: true
dev: true
optional: true
@@ -2841,11 +2720,11 @@ packages:
dev: true
optional: true
- /esbuild-windows-32/0.14.49:
- resolution: {integrity: sha512-q7Rb+J9yHTeKr9QTPDYkqfkEj8/kcKz9lOabDuvEXpXuIcosWCJgo5Z7h/L4r7rbtTH4a8U2FGKb6s1eeOHmJA==}
+ /esbuild-sunos-64/0.15.0:
+ resolution: {integrity: sha512-nE7EcgDw9RT4fR+GJZ5a0spPb2HKT77viCjrGl6GSeb/n3RhxGgVGwPQDI/KRwyVeQMqEOTtHQMNPwNr9TKDDQ==}
engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
+ cpu: [x64]
+ os: [sunos]
requiresBuild: true
dev: true
optional: true
@@ -2859,10 +2738,10 @@ packages:
dev: true
optional: true
- /esbuild-windows-64/0.14.49:
- resolution: {integrity: sha512-+Cme7Ongv0UIUTniPqfTX6mJ8Deo7VXw9xN0yJEN1lQMHDppTNmKwAM3oGbD/Vqff+07K2gN0WfNkMohmG+dVw==}
+ /esbuild-windows-32/0.15.0:
+ resolution: {integrity: sha512-FUPwJmPwBoqe8ShhOMfHtSElh1Nyc3s+Kru3m7lDJCjNr3ctx9YJKuzRsz4UXow6Wo79LMQGNyjysQ7UuKgvHQ==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
@@ -2877,10 +2756,10 @@ packages:
dev: true
optional: true
- /esbuild-windows-arm64/0.14.49:
- resolution: {integrity: sha512-v+HYNAXzuANrCbbLFJ5nmO3m5y2PGZWLe3uloAkLt87aXiO2mZr3BTmacZdjwNkNEHuH3bNtN8cak+mzVjVPfA==}
+ /esbuild-windows-64/0.15.0:
+ resolution: {integrity: sha512-zNM5bSVOY0SzMFB6k3ZdMwg4JmLVLpEmgVd2fU2STDmEOXdY1APAFPVWkbWMtLF/nfLfaJLfps7+IIJgGyQbGA==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
@@ -2895,33 +2774,14 @@ packages:
dev: true
optional: true
- /esbuild/0.14.49:
- resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==}
+ /esbuild-windows-arm64/0.15.0:
+ resolution: {integrity: sha512-sqhmDwUhUULUnViLD7jAqo4FaOhLN/FMW+dFVSvxSTA9pZSr2w6efky91vTWOcTUmspvYyHyOrJmtktp1ffIaw==}
engines: {node: '>=12'}
- hasBin: true
+ cpu: [arm64]
+ os: [win32]
requiresBuild: true
- optionalDependencies:
- esbuild-android-64: 0.14.49
- esbuild-android-arm64: 0.14.49
- esbuild-darwin-64: 0.14.49
- esbuild-darwin-arm64: 0.14.49
- esbuild-freebsd-64: 0.14.49
- esbuild-freebsd-arm64: 0.14.49
- esbuild-linux-32: 0.14.49
- esbuild-linux-64: 0.14.49
- esbuild-linux-arm: 0.14.49
- esbuild-linux-arm64: 0.14.49
- esbuild-linux-mips64le: 0.14.49
- esbuild-linux-ppc64le: 0.14.49
- esbuild-linux-riscv64: 0.14.49
- esbuild-linux-s390x: 0.14.49
- esbuild-netbsd-64: 0.14.49
- esbuild-openbsd-64: 0.14.49
- esbuild-sunos-64: 0.14.49
- esbuild-windows-32: 0.14.49
- esbuild-windows-64: 0.14.49
- esbuild-windows-arm64: 0.14.49
dev: true
+ optional: true
/esbuild/0.14.50:
resolution: {integrity: sha512-SbC3k35Ih2IC6trhbMYW7hYeGdjPKf9atTKwBUHqMCYFZZ9z8zhuvfnZihsnJypl74FjiAKjBRqFkBkAd0rS/w==}
@@ -2951,6 +2811,35 @@ packages:
esbuild-windows-arm64: 0.14.50
dev: true
+ /esbuild/0.15.0:
+ resolution: {integrity: sha512-UUDSelGc/EOhzn0zpkdhLA3iB+jq2OS5gnMUMz/BqAKBIsWR2fTHqrddNPt2PNj3OUchqcMcTHSUBr+VpYpcsQ==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/linux-loong64': 0.15.0
+ esbuild-android-64: 0.15.0
+ esbuild-android-arm64: 0.15.0
+ esbuild-darwin-64: 0.15.0
+ esbuild-darwin-arm64: 0.15.0
+ esbuild-freebsd-64: 0.15.0
+ esbuild-freebsd-arm64: 0.15.0
+ esbuild-linux-32: 0.15.0
+ esbuild-linux-64: 0.15.0
+ esbuild-linux-arm: 0.15.0
+ esbuild-linux-arm64: 0.15.0
+ esbuild-linux-mips64le: 0.15.0
+ esbuild-linux-ppc64le: 0.15.0
+ esbuild-linux-riscv64: 0.15.0
+ esbuild-linux-s390x: 0.15.0
+ esbuild-netbsd-64: 0.15.0
+ esbuild-openbsd-64: 0.15.0
+ esbuild-sunos-64: 0.15.0
+ esbuild-windows-32: 0.15.0
+ esbuild-windows-64: 0.15.0
+ esbuild-windows-arm64: 0.15.0
+ dev: true
+
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
@@ -2973,16 +2862,16 @@ packages:
engines: {node: '>=12'}
dev: false
- /eslint-config-prettier/8.5.0_eslint@8.20.0:
+ /eslint-config-prettier/8.5.0_eslint@8.21.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.20.0
+ eslint: 8.21.0
dev: true
- /eslint-plugin-prettier/4.2.1_g4fztgbwjyq2fvmcscny2sj6fy:
+ /eslint-plugin-prettier/4.2.1_h62lvancfh4b7r6zn2dgodrh5e:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2993,19 +2882,19 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.20.0
- eslint-config-prettier: 8.5.0_eslint@8.20.0
+ eslint: 8.21.0
+ eslint-config-prettier: 8.5.0_eslint@8.21.0
prettier: 2.7.1
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-svelte3/4.0.0_piwa6j2njmnknm35bh3wz5v52y:
+ /eslint-plugin-svelte3/4.0.0_a7wk4ghvg4hia4trwaglu7p6cq:
resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==}
peerDependencies:
eslint: '>=8.0.0'
svelte: ^3.2.0
dependencies:
- eslint: 8.20.0
+ eslint: 8.21.0
svelte: 3.49.0
dev: true
@@ -3025,13 +2914,13 @@ packages:
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.20.0:
+ /eslint-utils/3.0.0_eslint@8.21.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.20.0
+ eslint: 8.21.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -3045,13 +2934,14 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.20.0:
- resolution: {integrity: sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==}
+ /eslint/8.21.0:
+ resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
'@eslint/eslintrc': 1.3.0
- '@humanwhocodes/config-array': 0.9.5
+ '@humanwhocodes/config-array': 0.10.4
+ '@humanwhocodes/gitignore-to-minimatch': 1.0.2
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
@@ -3059,16 +2949,19 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.20.0
+ eslint-utils: 3.0.0_eslint@8.21.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.2
+ espree: 9.3.3
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
+ find-up: 5.0.0
functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
globals: 13.15.0
+ globby: 11.1.0
+ grapheme-splitter: 1.0.4
ignore: 5.2.0
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -3089,12 +2982,12 @@ packages:
- supports-color
dev: true
- /espree/9.3.2:
- resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==}
+ /espree/9.3.3:
+ resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.7.1
- acorn-jsx: 5.3.2_acorn@8.7.1
+ acorn: 8.8.0
+ acorn-jsx: 5.3.2_acorn@8.8.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -3196,7 +3089,7 @@ packages:
dependencies:
asn1.js: 5.4.1
ecdsa-sig-formatter: 1.0.11
- mnemonist: 0.39.1
+ mnemonist: 0.39.2
dev: false
/fast-levenshtein/2.0.6:
@@ -3223,16 +3116,12 @@ packages:
reusify: 1.0.4
dev: false
- /fastify-plugin/3.0.1:
- resolution: {integrity: sha512-qKcDXmuZadJqdTm6vlCqioEbyewF60b/0LOFCcYN1B6BIZGlYJumWWOYs70SFYLDAH4YqdE1cxH/RKMG7rFxgA==}
+ /fastify-plugin/4.1.0:
+ resolution: {integrity: sha512-Mf6lkbxHtFgI4sVaC0P/7sqlBvdpoyEUaOCD0cyKpqxjsdN+3EdD/FfSHByb7uXqxYu/DilH9Lb6mTCumN9TQQ==}
dev: false
- /fastify-plugin/4.0.0:
- resolution: {integrity: sha512-ZJcXPPcqkj7HFDYqbsCuOIAgIZ/sd2b+OnBxNGyxAcUDUJfIpxp4t23CwxO2E7LZpqUrIliA4TnjxTXG8mLoqw==}
- dev: false
-
- /fastify/4.3.0:
- resolution: {integrity: sha512-9q5Ron8jWmX6ElFkgZH4zmIIXdnkGIu16JozWG2ohcs7th5rAo1ymNi+rn6xCmbWc6jl9lf+9OxVe93LOg6/2w==}
+ /fastify/4.4.0:
+ resolution: {integrity: sha512-ePI4g9vPJXIBF4YlVcDSLxjvtdTrlM8QzdgYAPFGdCH+rot+4MXoFFAUb10fGrIcRRjaq6CvcbIzxiWQzMMHkw==}
dependencies:
'@fastify/ajv-compiler': 3.1.1
'@fastify/error': 3.0.0
@@ -3318,6 +3207,14 @@ packages:
path-exists: 4.0.0
dev: false
+ /find-up/5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+ dev: true
+
/flat-cache/3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -3510,7 +3407,7 @@ packages:
/globalyzer/0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
- dev: false
+ dev: true
/globby/11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
@@ -3526,10 +3423,10 @@ packages:
/globrex/0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- dev: false
+ dev: true
- /got/12.2.0:
- resolution: {integrity: sha512-A81ll5Z8wzeCmSdIlWVMDWFKDo82v2nmOaMZDQNHKGInNqDBcle+CSb6BBiZcn/Aiefz/kSpo520WBKi9QAO/A==}
+ /got/12.3.1:
+ resolution: {integrity: sha512-tS6+JMhBh4iXMSXF6KkIsRxmloPln31QHDlcb6Ec3bzxjjFJFr/8aXdpyuLmVc9I4i2HyBHYw1QU5K1ruUdpkw==}
engines: {node: '>=14.16'}
dependencies:
'@sindresorhus/is': 5.3.0
@@ -3551,6 +3448,10 @@ packages:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
+ /grapheme-splitter/1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+ dev: true
+
/has-ansi/2.0.0:
resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
engines: {node: '>=0.10.0'}
@@ -4102,6 +4003,13 @@ packages:
p-locate: 4.1.0
dev: false
+ /locate-path/6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-locate: 5.0.0
+ dev: true
+
/lodash-es/4.17.21:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
dev: false
@@ -4334,8 +4242,8 @@ packages:
minimist: 1.2.6
dev: true
- /mnemonist/0.39.1:
- resolution: {integrity: sha512-bY13FSvcbKLj+FaJcR2+xFZ3m2R1+BrLpavAh0BMyGSq0iPowbvYllwitlkvVyEowEYSulCMzxDaju9bC4+cow==}
+ /mnemonist/0.39.2:
+ resolution: {integrity: sha512-n3ZCEosuMH03DVivZ9N0fcXPWiZrBLEdfSlEJ+S/mJxmk3zuo1ur0dj9URDczFyP1VS3wfiyKzqLLDXoPJ6rPA==}
dependencies:
obliterator: 2.0.4
dev: false
@@ -4585,7 +4493,6 @@ packages:
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- dev: false
/p-limit/4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
@@ -4608,8 +4515,15 @@ packages:
p-limit: 2.3.0
dev: false
- /p-queue/7.2.0:
- resolution: {integrity: sha512-Kvv7p13M46lTYLQ/PsZdaj/1Vj6u/8oiIJgyQyx4oVkOfHdd7M2EZvXigDvcsSzRwanCzQirV5bJPQFoSQt5MA==}
+ /p-locate/5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-limit: 3.1.0
+ dev: true
+
+ /p-queue/7.3.0:
+ resolution: {integrity: sha512-5fP+yVQ0qp0rEfZoDTlP2c3RYBgxvRsw30qO+VtPPc95lyvSG+x6USSh1TuLB4n96IO6I8/oXQGsTgtna4q2nQ==}
engines: {node: '>=12'}
dependencies:
eventemitter3: 4.0.7
@@ -4716,7 +4630,6 @@ packages:
/path-exists/4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- dev: false
/path-is-absolute/1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
@@ -4804,33 +4717,33 @@ packages:
find-up: 3.0.0
dev: false
- /playwright-core/1.23.4:
- resolution: {integrity: sha512-h5V2yw7d8xIwotjyNrkLF13nV9RiiZLHdXeHo+nVJIYGVlZ8U2qV0pMxNJKNTvfQVT0N8/A4CW6/4EW2cOcTiA==}
+ /playwright-core/1.24.2:
+ resolution: {integrity: sha512-zfAoDoPY/0sDLsgSgLZwWmSCevIg1ym7CppBwllguVBNiHeixZkc1AdMuYUPZC6AdEYc4CxWEyLMBTw2YcmRrA==}
engines: {node: '>=14'}
hasBin: true
dev: true
- /postcss-import/14.1.0_postcss@8.4.14:
+ /postcss-import/14.1.0_postcss@8.4.16:
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.1
- /postcss-js/4.0.0_postcss@8.4.14:
+ /postcss-js/4.0.0_postcss@8.4.16:
resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.3.3
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.14
+ postcss: 8.4.16
- /postcss-load-config/3.1.4_postcss@8.4.14:
+ /postcss-load-config/3.1.4_postcss@8.4.16:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -4843,16 +4756,16 @@ packages:
optional: true
dependencies:
lilconfig: 2.0.6
- postcss: 8.4.14
+ postcss: 8.4.16
yaml: 1.10.2
- /postcss-nested/5.0.6_postcss@8.4.14:
+ /postcss-nested/5.0.6_postcss@8.4.16:
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.14
+ postcss: 8.4.16
postcss-selector-parser: 6.0.10
/postcss-selector-parser/6.0.10:
@@ -4865,8 +4778,8 @@ packages:
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ /postcss/8.4.16:
+ resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.4
@@ -4948,7 +4861,7 @@ packages:
dependencies:
aggregate-error: 4.0.1
dns-socket: 4.2.2
- got: 12.2.0
+ got: 12.3.1
is-ip: 4.0.0
dev: false
@@ -5597,7 +5510,7 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svelte-check/2.8.0_nxvsp6sjiltnatqa6jdm4mr6zu:
+ /svelte-check/2.8.0_vylzxgme5yisu3bsyvcau4hjtq:
resolution: {integrity: sha512-HRL66BxffMAZusqe5I5k26mRWQ+BobGd9Rxm3onh7ZVu0nTk8YTKJ9vu3LVPjUGLU9IX7zS+jmwPVhJYdXJ8vg==}
hasBin: true
peerDependencies:
@@ -5610,7 +5523,7 @@ packages:
picocolors: 1.0.0
sade: 1.8.1
svelte: 3.49.0
- svelte-preprocess: 4.10.7_bgntxiihuqhg5mwaa7nczjwpga
+ svelte-preprocess: 4.10.7_fje22ktja5v2dh6nbkissncqme
typescript: 4.7.4
transitivePeerDependencies:
- '@babel/core'
@@ -5634,7 +5547,7 @@ packages:
svelte: 3.49.0
dev: true
- /svelte-preprocess/4.10.7_bgntxiihuqhg5mwaa7nczjwpga:
+ /svelte-preprocess/4.10.7_fje22ktja5v2dh6nbkissncqme:
resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==}
engines: {node: '>= 9.11.2'}
requiresBuild: true
@@ -5679,7 +5592,7 @@ packages:
'@types/sass': 1.43.1
detect-indent: 6.1.0
magic-string: 0.25.9
- postcss: 8.4.14
+ postcss: 8.4.16
sorcery: 0.10.0
strip-indent: 3.0.0
svelte: 3.49.0
@@ -5704,16 +5617,16 @@ packages:
svelte: 3.49.0
dev: false
- /tailwindcss-scrollbar/0.1.0_tailwindcss@3.1.6:
+ /tailwindcss-scrollbar/0.1.0_tailwindcss@3.1.8:
resolution: {integrity: sha512-egipxw4ooQDh94x02XQpPck0P0sfwazwoUGfA9SedPATIuYDR+6qe8d31Gl7YsSMRiOKDkkqfI0kBvEw9lT/Hg==}
peerDependencies:
tailwindcss: '>= 2.x.x'
dependencies:
- tailwindcss: 3.1.6
+ tailwindcss: 3.1.8
dev: true
- /tailwindcss/3.1.6:
- resolution: {integrity: sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg==}
+ /tailwindcss/3.1.8:
+ resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==}
engines: {node: '>=12.13.0'}
hasBin: true
dependencies:
@@ -5730,11 +5643,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.14
- postcss-import: 14.1.0_postcss@8.4.14
- postcss-js: 4.0.0_postcss@8.4.14
- postcss-load-config: 3.1.4_postcss@8.4.14
- postcss-nested: 5.0.6_postcss@8.4.14
+ postcss: 8.4.16
+ postcss-import: 14.1.0_postcss@8.4.16
+ postcss-js: 4.0.0_postcss@8.4.16
+ postcss-load-config: 3.1.4_postcss@8.4.16
+ postcss-nested: 5.0.6_postcss@8.4.16
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
@@ -5788,7 +5701,7 @@ packages:
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
- dev: false
+ dev: true
/tiny-lru/8.0.2:
resolution: {integrity: sha512-ApGvZ6vVvTNdsmt676grvCkUCGwzG9IqXma5Z07xJgiC5L7akUMof5U8G2JTI9Rz/ovtVhJBlY6mNhEvtjzOIg==}
@@ -5834,7 +5747,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /ts-node/10.8.2_f6w67sjx3imwytyzb2qhabnzqe:
+ /ts-node/10.8.2_cvilj4l3ytrlnvtlqw3tscihve:
resolution: {integrity: sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA==}
hasBin: true
peerDependencies:
@@ -5853,7 +5766,7 @@ packages:
'@tsconfig/node12': 1.0.9
'@tsconfig/node14': 1.0.1
'@tsconfig/node16': 1.0.2
- '@types/node': 18.6.1
+ '@types/node': 18.6.5
acorn: 8.7.1
acorn-walk: 8.2.0
arg: 4.1.3
@@ -5865,8 +5778,9 @@ packages:
yn: 3.1.1
dev: false
- /tsconfig-paths/4.0.0:
- resolution: {integrity: sha512-SLBg2GBKlR6bVtMgJJlud/o3waplKtL7skmLkExomIiaAtLGtVsoXIqP3SYdjbcH9lq/KVv7pMZeCBpLYOit6Q==}
+ /tsconfig-paths/4.1.0:
+ resolution: {integrity: sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==}
+ engines: {node: '>=6'}
dependencies:
json5: 2.2.1
minimist: 1.2.6
@@ -5950,13 +5864,13 @@ packages:
engines: {node: '>=8'}
dev: false
- /update-browserslist-db/1.0.4_browserslist@4.21.2:
- resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==}
+ /update-browserslist-db/1.0.5_browserslist@4.21.3:
+ resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.2
+ browserslist: 4.21.3
escalade: 3.1.1
picocolors: 1.0.0
@@ -5989,13 +5903,8 @@ packages:
spdx-correct: 3.1.1
spdx-expression-parse: 3.0.1
- /vary/1.1.2:
- resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
- engines: {node: '>= 0.8'}
- dev: false
-
- /vite/3.0.1:
- resolution: {integrity: sha512-nefKSglkoEsDpYUkBuT2++L04ktcP8fz8dxLtmZdDdMyhubFSOLFw6BTh/46Fc6tIX/cibs/NVYWNrsqn0k6pQ==}
+ /vite/3.0.5:
+ resolution: {integrity: sha512-bRvrt9Tw8EGW4jj64aYFTnVg134E8hgDxyl/eEHnxiGqYk7/pTPss6CWlurqPOUzqvEoZkZ58Ws+Iu8MB87iMA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -6013,8 +5922,8 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.14.49
- postcss: 8.4.14
+ esbuild: 0.14.50
+ postcss: 8.4.16
resolve: 1.22.1
rollup: 2.77.0
optionalDependencies:
@@ -6076,7 +5985,6 @@ packages:
/yocto-queue/0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- dev: false
/yocto-queue/1.0.0:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}