Merge branch 'dependencies-p' into 'main'

(dependencies) remove some unused dependencies, only install production dependencies on deploy

See merge request PronounsPage/PronounsPage!583
This commit is contained in:
Valentyne Stigloher 2025-02-23 11:29:49 +00:00
commit 7a9dcedc50
4 changed files with 95 additions and 556 deletions

View File

@ -37,7 +37,7 @@ build: install
pnpm run-file server/sentry.ts release pnpm run-file server/sentry.ts release
deploy: deploy:
pnpm install pnpm install -P
pnpm run-file server/migrate.ts pnpm run-file server/migrate.ts
-pnpm run-file server/sentry.ts deploy -pnpm run-file server/sentry.ts deploy

View File

@ -1,15 +1,6 @@
<template> <template>
<Tooltip v-if="celebrate1M" :text="$t('home.million')">
<span
ref="confettiLogo"
:class="['bg-primary logo-wrapper rounded-circle d-inline-flex justify-content-center align-items-center', $attrs.class]"
@mouseenter="fireConfetti"
>
<span class="logo" v-html="svg.replace(`<path `, `<path style='fill: #fff' `)"></span>
</span>
</Tooltip>
<span <span
v-else-if="flag" v-if="flag"
:class="['logo-wrapper rounded-circle d-inline-flex justify-content-center align-items-center', forceShowFlag || forceShowFlagDyn ? 'logo-flag-forced' : '', flagName ? 'logo-has-flag' : '', $attrs.class]" :class="['logo-wrapper rounded-circle d-inline-flex justify-content-center align-items-center', forceShowFlag || forceShowFlagDyn ? 'logo-flag-forced' : '', flagName ? 'logo-has-flag' : '', $attrs.class]"
:style="flagName ? `--flag: url('/flags/${flagName}.png')` : ''" :style="flagName ? `--flag: url('/flags/${flagName}.png')` : ''"
@transitionend="resetFlagIfNotOverwritten" @transitionend="resetFlagIfNotOverwritten"
@ -20,7 +11,6 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { useFetch } from 'nuxt/app';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { defineComponent } from 'vue'; import { defineComponent } from 'vue';
@ -36,10 +26,6 @@ interface Data {
forceShowFlagDyn: boolean; forceShowFlagDyn: boolean;
} }
interface Refs {
confettiLogo: HTMLSpanElement | undefined;
}
export default defineComponent({ export default defineComponent({
props: { props: {
flag: { type: Boolean }, flag: { type: Boolean },
@ -48,13 +34,8 @@ export default defineComponent({
}, },
async setup() { async setup() {
const calendarPromise = loadCalendar(); const calendarPromise = loadCalendar();
const { data: stats } = await useFetch<{ overall: { users: number } }>(
'/api/admin/stats-public',
{ lazy: true },
);
return { return {
stats,
selectedDay: storeToRefs(useMainStore()).selectedDay, selectedDay: storeToRefs(useMainStore()).selectedDay,
calendar: await calendarPromise, calendar: await calendarPromise,
}; };
@ -66,14 +47,6 @@ export default defineComponent({
forceShowFlagDyn: false, forceShowFlagDyn: false,
}; };
}, },
computed: {
$tRefs(): Refs {
return this.$refs as unknown as Refs;
},
celebrate1M(): boolean {
return this.stats !== null && this.stats.overall.users >= 1_000_000 && this.stats.overall.users < 1_005_000;
},
},
watch: { watch: {
selectedDay() { selectedDay() {
this.forceShowFlagDyn = !!this.selectedDay; this.forceShowFlagDyn = !!this.selectedDay;
@ -84,42 +57,7 @@ export default defineComponent({
} }
}, },
}, },
mounted() {
setTimeout(() => this.fireConfetti(), 1000);
},
methods: { methods: {
async fireConfetti() {
await this.$nextTick();
if (!this.$tRefs.confettiLogo?.offsetParent) {
return;
}
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
return;
}
const confetti = (await import('canvas-confetti')).default;
const origin = {
x: (this.$tRefs.confettiLogo.offsetLeft + this.$tRefs.confettiLogo.offsetWidth) / window.innerWidth,
y: (this.$tRefs.confettiLogo.offsetTop + this.$tRefs.confettiLogo.offsetHeight) / window.innerHeight,
};
const centre = { x: 0.5, y: 0.5 };
const angleRadians = -Math.atan((centre.y - origin.y) / (centre.x - origin.x));
const angleDegrees = angleRadians * (180 / Math.PI);
await confetti({
particleCount: 200,
angle: angleDegrees,
spread: 120,
shapes: ['star'],
origin,
scalar: 0.8,
decay: 0.9,
});
},
selectFlag(): string | null { selectFlag(): string | null {
const events = this.calendar.getCurrentYear()!.eventsByDate[(this.selectedDay || this.day).toString()]; const events = this.calendar.getCurrentYear()!.eventsByDate[(this.selectedDay || this.day).toString()];
if (!events) { if (!events) {

View File

@ -22,26 +22,12 @@
"@sentry/browser": "^7.109.0", "@sentry/browser": "^7.109.0",
"@sentry/cli": "^2.31.0", "@sentry/cli": "^2.31.0",
"@sentry/node": "^7.109.0", "@sentry/node": "^7.109.0",
"@sentry/vue": "^7.109.0",
"@vuepic/vue-datepicker": "^8.8.1",
"@vueuse/core": "^12.2.0",
"abort-controller": "^3.0.0", "abort-controller": "^3.0.0",
"avris-columnist": "^0.3.4",
"avris-futurus": "^1.0.2",
"avris-generator": "^0.8.2",
"avris-sorter": "^0.0.3",
"avris-vue-share": "^1.0.1",
"canvas": "^2.11.2", "canvas": "^2.11.2",
"canvas-confetti": "^1.9.3",
"chart.js": "3.7.0",
"cookie-parser": "^1.4.5",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"feed": "^4.2.2", "feed": "^4.2.2",
"generic-diff": "^1.0.1", "generic-diff": "^1.0.1",
"grant": "^5.4.22", "grant": "^5.4.22",
"h3-express": "https://github.com/pixunil/h3-express#built",
"he-date": "^1.2.2", "he-date": "^1.2.2",
"html2canvas": "^1.4.1", "html2canvas": "^1.4.1",
"ics": "^3.7.6", "ics": "^3.7.6",
@ -50,34 +36,25 @@
"js-md5": "^0.7.3", "js-md5": "^0.7.3",
"jsdom": "^24.1.1", "jsdom": "^24.1.1",
"luxon": "^1.28.1", "luxon": "^1.28.1",
"markdown-it": "^14.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"mastodon": "^1.2.2", "mastodon": "^1.2.2",
"memorystore": "^1.6.7",
"minisearch": "^7.1.1", "minisearch": "^7.1.1",
"nepali-calendar-js": "https://github.com/pixunil/nepali-calendar-js", "nepali-calendar-js": "https://github.com/pixunil/nepali-calendar-js",
"nodemailer": "^6.7.8", "nodemailer": "^6.7.8",
"pageres": "^8.1.0", "pageres": "^8.1.0",
"papaparse": "^5.4.1", "papaparse": "^5.4.1",
"plausible-api": "https://github.com/avo7/plausible-api.git#main", "plausible-api": "https://github.com/avo7/plausible-api.git#main",
"postcss-rtl": "^2.0.0",
"qr-code-styling": "^1.6.0-rc.1",
"query-string": "^7.1.1",
"querystringify": "^2.2.0",
"sha1": "^1.1.1", "sha1": "^1.1.1",
"sharp": "^0.33.5",
"speakeasy": "^2.0.0", "speakeasy": "^2.0.0",
"sql-template-strings": "^2.2.2", "sql-template-strings": "^2.2.2",
"sqlite": "^4.0.12", "sqlite": "^4.0.12",
"sqlite3": "^5.1.6", "sqlite3": "^5.1.6",
"suml": "^0.2.3", "suml": "^0.2.3",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"tsconfig-paths": "3.14.2",
"twitter": "^1.7.1", "twitter": "^1.7.1",
"ulid": "^2.3.0", "ulid": "^2.3.0",
"uuid": "^8.3.2", "uuid": "^8.3.2",
"vue3-lazy-hydration": "^1.2.1",
"vuedraggable": "^4.1.0",
"zh_cn_zh_tw": "^1.0.7" "zh_cn_zh_tw": "^1.0.7"
}, },
"devDependencies": { "devDependencies": {
@ -92,30 +69,34 @@
"@rollup/plugin-yaml": "^4.1.2", "@rollup/plugin-yaml": "^4.1.2",
"@sentry/types": "^7.109.0", "@sentry/types": "^7.109.0",
"@sentry/vite-plugin": "^2.22.0", "@sentry/vite-plugin": "^2.22.0",
"@sentry/webpack-plugin": "^2.14.2", "@sentry/vue": "^7.109.0",
"@smithy/types": "^2.12.0", "@smithy/types": "^2.12.0",
"@types/canvas-confetti": "^1.6.4",
"@types/connect": "^3.4.38", "@types/connect": "^3.4.38",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"@types/express-session": "^1.17.10", "@types/express-session": "^1.17.10",
"@types/js-md5": "^0.7.2", "@types/js-md5": "^0.7.2",
"@types/jsdom": "^21.1.7", "@types/jsdom": "^21.1.7",
"@types/luxon": "^1.27.1", "@types/luxon": "^1.27.1",
"@types/markdown-it": "^14.0.1", "@types/markdown-it": "^14.0.1",
"@types/multer": "1.4.5",
"@types/node": "^20.16.5", "@types/node": "^20.16.5",
"@types/nodemailer": "^6.4.14", "@types/nodemailer": "^6.4.14",
"@types/papaparse": "^5.3.14", "@types/papaparse": "^5.3.14",
"@types/rtlcss": "^3.1.2",
"@types/sharp": "^0.31.1", "@types/sharp": "^0.31.1",
"@types/speakeasy": "^2.0.10", "@types/speakeasy": "^2.0.10",
"@types/uuid": "8.3.2", "@types/uuid": "8.3.2",
"@vite-pwa/nuxt": "^0.10.6", "@vite-pwa/nuxt": "^0.10.6",
"@vitest/coverage-v8": "^2.1.9", "@vitest/coverage-v8": "^2.1.9",
"@vue/test-utils": "^2.4.6", "@vue/test-utils": "^2.4.6",
"@vuepic/vue-datepicker": "^8.8.1",
"@vueuse/core": "^12.2.0",
"avris-columnist": "^0.3.4",
"avris-daemonise": "^0.0.2", "avris-daemonise": "^0.0.2",
"avris-futurus": "^1.0.2",
"avris-generator": "^0.8.2",
"avris-sorter": "^0.0.3",
"avris-vue-share": "^1.0.1",
"bootstrap": "^5.3.1", "bootstrap": "^5.3.1",
"chart.js": "3.7.0",
"clipboard": "^2.0.6", "clipboard": "^2.0.6",
"eslint": "^9.13.0", "eslint": "^9.13.0",
"eslint-formatter-gitlab": "^5.1.0", "eslint-formatter-gitlab": "^5.1.0",
@ -123,20 +104,30 @@
"eslint-plugin-jsonc": "^2.16.0", "eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-yml": "^1.14.0", "eslint-plugin-yml": "^1.14.0",
"execa": "^9.5.2", "execa": "^9.5.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"globals": "^13.24.0", "globals": "^13.24.0",
"h3-express": "https://github.com/pixunil/h3-express#built",
"html-validate": "^9.2.2", "html-validate": "^9.2.2",
"markdown-it": "^14.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"marked": "^0.7.0", "marked": "^0.7.0",
"memorystore": "^1.6.7",
"nuxt": "^3.15.4", "nuxt": "^3.15.4",
"path-to-regexp": "0.1.7", "path-to-regexp": "0.1.7",
"postcss-rtl": "^2.0.0",
"qr-code-styling": "1.6.0-rc.1",
"sass": "1.32.12", "sass": "1.32.12",
"sharp": "^0.33.4",
"tree-kill": "^1.2.2", "tree-kill": "^1.2.2",
"ts-json-schema-generator": "^1.5.0", "ts-json-schema-generator": "^1.5.0",
"tsconfig-paths": "3.14.2",
"typescript": "^5.7.2", "typescript": "^5.7.2",
"vitest": "^2.1.9", "vitest": "^2.1.9",
"vue-component-type-helpers": "^2.1.6", "vue-component-type-helpers": "^2.1.6",
"vue-tsc": "^2.2.0" "vue-tsc": "^2.2.0",
"vue3-lazy-hydration": "^1.2.1",
"vuedraggable": "^4.1.0"
}, },
"packageManager": "pnpm@10.4.1+sha256.4b702887986995933d4300836b04d6d02a43bc72b52e4f7e93a4ca608b959197", "packageManager": "pnpm@10.4.1+sha256.4b702887986995933d4300836b04d6d02a43bc72b52e4f7e93a4ca608b959197",
"pnpm": { "pnpm": {

528
pnpm-lock.yaml generated
View File

@ -29,54 +29,15 @@ importers:
'@sentry/node': '@sentry/node':
specifier: ^7.109.0 specifier: ^7.109.0
version: 7.119.0 version: 7.119.0
'@sentry/vue':
specifier: ^7.109.0
version: 7.119.0(vue@3.5.13(typescript@5.7.2))
'@vuepic/vue-datepicker':
specifier: ^8.8.1
version: 8.8.1(vue@3.5.13(typescript@5.7.2))
'@vueuse/core':
specifier: ^12.2.0
version: 12.2.0(typescript@5.7.2)
abort-controller: abort-controller:
specifier: ^3.0.0 specifier: ^3.0.0
version: 3.0.0 version: 3.0.0
avris-columnist:
specifier: ^0.3.4
version: 0.3.4
avris-futurus:
specifier: ^1.0.2
version: 1.0.2
avris-generator:
specifier: ^0.8.2
version: 0.8.2
avris-sorter:
specifier: ^0.0.3
version: 0.0.3
avris-vue-share:
specifier: ^1.0.1
version: 1.0.1(typescript@5.7.2)
canvas: canvas:
specifier: ^2.11.2 specifier: ^2.11.2
version: 2.11.2(encoding@0.1.13) version: 2.11.2(encoding@0.1.13)
canvas-confetti:
specifier: ^1.9.3
version: 1.9.3
chart.js:
specifier: 3.7.0
version: 3.7.0
cookie-parser:
specifier: ^1.4.5
version: 1.4.6
dotenv: dotenv:
specifier: ^16.4.5 specifier: ^16.4.5
version: 16.4.7 version: 16.4.7
express:
specifier: ^4.17.1
version: 4.21.0
express-session:
specifier: ^1.17.1
version: 1.18.0
feed: feed:
specifier: ^4.2.2 specifier: ^4.2.2
version: 4.2.2 version: 4.2.2
@ -86,9 +47,6 @@ importers:
grant: grant:
specifier: ^5.4.22 specifier: ^5.4.22
version: 5.4.23 version: 5.4.23
h3-express:
specifier: https://github.com/pixunil/h3-express#built
version: https://codeload.github.com/pixunil/h3-express/tar.gz/0dd96342062c6190cc50101e7b48480587ca9582
he-date: he-date:
specifier: ^1.2.2 specifier: ^1.2.2
version: 1.2.2 version: 1.2.2
@ -113,24 +71,9 @@ importers:
luxon: luxon:
specifier: ^1.28.1 specifier: ^1.28.1
version: 1.28.1 version: 1.28.1
markdown-it:
specifier: ^14.0.0
version: 14.1.0
markdown-it-mark:
specifier: ^4.0.0
version: 4.0.0
markdown-it-sub:
specifier: ^2.0.0
version: 2.0.0
markdown-it-sup:
specifier: ^2.0.0
version: 2.0.0
mastodon: mastodon:
specifier: ^1.2.2 specifier: ^1.2.2
version: 1.2.2 version: 1.2.2
memorystore:
specifier: ^1.6.7
version: 1.6.7
minisearch: minisearch:
specifier: ^7.1.1 specifier: ^7.1.1
version: 7.1.1 version: 7.1.1
@ -149,21 +92,12 @@ importers:
plausible-api: plausible-api:
specifier: https://github.com/avo7/plausible-api.git#main specifier: https://github.com/avo7/plausible-api.git#main
version: https://codeload.github.com/avo7/plausible-api/tar.gz/0bb79ad1d26754a71b3ec1351255dbf5a32e6e2a version: https://codeload.github.com/avo7/plausible-api/tar.gz/0bb79ad1d26754a71b3ec1351255dbf5a32e6e2a
postcss-rtl:
specifier: ^2.0.0
version: 2.0.0(postcss@8.5.1)
qr-code-styling:
specifier: ^1.6.0-rc.1
version: 1.6.0-rc.1
query-string:
specifier: ^7.1.1
version: 7.1.3
querystringify:
specifier: ^2.2.0
version: 2.2.0
sha1: sha1:
specifier: ^1.1.1 specifier: ^1.1.1
version: 1.1.1 version: 1.1.1
sharp:
specifier: ^0.33.5
version: 0.33.5
speakeasy: speakeasy:
specifier: ^2.0.0 specifier: ^2.0.0
version: 2.0.0 version: 2.0.0
@ -182,6 +116,9 @@ importers:
ts-node: ts-node:
specifier: ^10.9.2 specifier: ^10.9.2
version: 10.9.2(@types/node@20.16.5)(typescript@5.7.2) version: 10.9.2(@types/node@20.16.5)(typescript@5.7.2)
tsconfig-paths:
specifier: 3.14.2
version: 3.14.2
twitter: twitter:
specifier: ^1.7.1 specifier: ^1.7.1
version: 1.7.1 version: 1.7.1
@ -191,12 +128,6 @@ importers:
uuid: uuid:
specifier: ^8.3.2 specifier: ^8.3.2
version: 8.3.2 version: 8.3.2
vue3-lazy-hydration:
specifier: ^1.2.1
version: 1.2.1(vue@3.5.13(typescript@5.7.2))
vuedraggable:
specifier: ^4.1.0
version: 4.1.0(vue@3.5.13(typescript@5.7.2))
zh_cn_zh_tw: zh_cn_zh_tw:
specifier: ^1.0.7 specifier: ^1.0.7
version: 1.0.7 version: 1.0.7
@ -234,21 +165,15 @@ importers:
'@sentry/vite-plugin': '@sentry/vite-plugin':
specifier: ^2.22.0 specifier: ^2.22.0
version: 2.22.4(encoding@0.1.13) version: 2.22.4(encoding@0.1.13)
'@sentry/webpack-plugin': '@sentry/vue':
specifier: ^2.14.2 specifier: ^7.109.0
version: 2.22.4(encoding@0.1.13)(webpack@5.94.0(esbuild@0.24.2)) version: 7.119.0(vue@3.5.13(typescript@5.7.2))
'@smithy/types': '@smithy/types':
specifier: ^2.12.0 specifier: ^2.12.0
version: 2.12.0 version: 2.12.0
'@types/canvas-confetti':
specifier: ^1.6.4
version: 1.6.4
'@types/connect': '@types/connect':
specifier: ^3.4.38 specifier: ^3.4.38
version: 3.4.38 version: 3.4.38
'@types/cookie-parser':
specifier: ^1.4.6
version: 1.4.7
'@types/express': '@types/express':
specifier: ^4.17.21 specifier: ^4.17.21
version: 4.17.21 version: 4.17.21
@ -267,9 +192,6 @@ importers:
'@types/markdown-it': '@types/markdown-it':
specifier: ^14.0.1 specifier: ^14.0.1
version: 14.1.2 version: 14.1.2
'@types/multer':
specifier: 1.4.5
version: 1.4.5
'@types/node': '@types/node':
specifier: ^20.16.5 specifier: ^20.16.5
version: 20.16.5 version: 20.16.5
@ -279,9 +201,6 @@ importers:
'@types/papaparse': '@types/papaparse':
specifier: ^5.3.14 specifier: ^5.3.14
version: 5.3.14 version: 5.3.14
'@types/rtlcss':
specifier: ^3.1.2
version: 3.5.4
'@types/sharp': '@types/sharp':
specifier: ^0.31.1 specifier: ^0.31.1
version: 0.31.1 version: 0.31.1
@ -300,12 +219,36 @@ importers:
'@vue/test-utils': '@vue/test-utils':
specifier: ^2.4.6 specifier: ^2.4.6
version: 2.4.6 version: 2.4.6
'@vuepic/vue-datepicker':
specifier: ^8.8.1
version: 8.8.1(vue@3.5.13(typescript@5.7.2))
'@vueuse/core':
specifier: ^12.2.0
version: 12.2.0(typescript@5.7.2)
avris-columnist:
specifier: ^0.3.4
version: 0.3.4
avris-daemonise: avris-daemonise:
specifier: ^0.0.2 specifier: ^0.0.2
version: 0.0.2 version: 0.0.2
avris-futurus:
specifier: ^1.0.2
version: 1.0.2
avris-generator:
specifier: ^0.8.2
version: 0.8.2
avris-sorter:
specifier: ^0.0.3
version: 0.0.3
avris-vue-share:
specifier: ^1.0.1
version: 1.0.1(typescript@5.7.2)
bootstrap: bootstrap:
specifier: ^5.3.1 specifier: ^5.3.1
version: 5.3.3(@popperjs/core@2.11.8) version: 5.3.3(@popperjs/core@2.11.8)
chart.js:
specifier: 3.7.0
version: 3.7.0
clipboard: clipboard:
specifier: ^2.0.6 specifier: ^2.0.6
version: 2.0.11 version: 2.0.11
@ -327,36 +270,60 @@ importers:
execa: execa:
specifier: ^9.5.2 specifier: ^9.5.2
version: 9.5.2 version: 9.5.2
express:
specifier: ^4.17.1
version: 4.21.0
express-session:
specifier: ^1.17.1
version: 1.18.0
globals: globals:
specifier: ^13.24.0 specifier: ^13.24.0
version: 13.24.0 version: 13.24.0
h3-express:
specifier: https://github.com/pixunil/h3-express#built
version: https://codeload.github.com/pixunil/h3-express/tar.gz/0dd96342062c6190cc50101e7b48480587ca9582
html-validate: html-validate:
specifier: ^9.2.2 specifier: ^9.2.2
version: 9.3.0(vitest@2.1.9(@types/node@20.16.5)(jsdom@24.1.3(canvas@2.11.2(encoding@0.1.13)))(sass@1.32.12)(terser@5.33.0)) version: 9.3.0(vitest@2.1.9(@types/node@20.16.5)(jsdom@24.1.3(canvas@2.11.2(encoding@0.1.13)))(sass@1.32.12)(terser@5.33.0))
markdown-it:
specifier: ^14.0.0
version: 14.1.0
markdown-it-mark:
specifier: ^4.0.0
version: 4.0.0
markdown-it-sub:
specifier: ^2.0.0
version: 2.0.0
markdown-it-sup:
specifier: ^2.0.0
version: 2.0.0
marked: marked:
specifier: ^0.7.0 specifier: ^0.7.0
version: 0.7.0 version: 0.7.0
memorystore:
specifier: ^1.6.7
version: 1.6.7
nuxt: nuxt:
specifier: ^3.15.4 specifier: ^3.15.4
version: 3.15.4(@parcel/watcher@2.5.1)(@types/node@20.16.5)(db0@0.2.3(sqlite3@5.1.7))(encoding@0.1.13)(eslint@9.13.0(jiti@2.4.2))(ioredis@5.5.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(sass@1.32.12)(sqlite3@5.1.7)(terser@5.33.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.16.5)(sass@1.32.12)(terser@5.33.0))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.7.0) version: 3.15.4(@parcel/watcher@2.5.1)(@types/node@20.16.5)(db0@0.2.3(sqlite3@5.1.7))(encoding@0.1.13)(eslint@9.13.0(jiti@2.4.2))(ioredis@5.5.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(sass@1.32.12)(sqlite3@5.1.7)(terser@5.33.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.16.5)(sass@1.32.12)(terser@5.33.0))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.7.0)
path-to-regexp: path-to-regexp:
specifier: 0.1.7 specifier: 0.1.7
version: 0.1.7 version: 0.1.7
postcss-rtl:
specifier: ^2.0.0
version: 2.0.0(postcss@8.5.1)
qr-code-styling:
specifier: 1.6.0-rc.1
version: 1.6.0-rc.1
sass: sass:
specifier: 1.32.12 specifier: 1.32.12
version: 1.32.12 version: 1.32.12
sharp:
specifier: ^0.33.4
version: 0.33.5
tree-kill: tree-kill:
specifier: ^1.2.2 specifier: ^1.2.2
version: 1.2.2 version: 1.2.2
ts-json-schema-generator: ts-json-schema-generator:
specifier: ^1.5.0 specifier: ^1.5.0
version: 1.5.1 version: 1.5.1
tsconfig-paths:
specifier: 3.14.2
version: 3.14.2
typescript: typescript:
specifier: ^5.7.2 specifier: ^5.7.2
version: 5.7.2 version: 5.7.2
@ -369,6 +336,12 @@ importers:
vue-tsc: vue-tsc:
specifier: ^2.2.0 specifier: ^2.2.0
version: 2.2.0(typescript@5.7.2) version: 2.2.0(typescript@5.7.2)
vue3-lazy-hydration:
specifier: ^1.2.1
version: 1.2.1(vue@3.5.13(typescript@5.7.2))
vuedraggable:
specifier: ^4.1.0
version: 4.1.0(vue@3.5.13(typescript@5.7.2))
packages: packages:
@ -2300,12 +2273,6 @@ packages:
peerDependencies: peerDependencies:
vue: 2.x || 3.x vue: 2.x || 3.x
'@sentry/webpack-plugin@2.22.4':
resolution: {integrity: sha512-Y7+RBrXBZlEuvoC0SbuClHZ8VC0nM0wZXroFuY/157EfUFtWr0J8f3b8+mzNshDGaCWV/UzFn6092M/BlAXCQA==}
engines: {node: '>= 14'}
peerDependencies:
webpack: '>=4.40.0'
'@sidvind/better-ajv-errors@3.0.1': '@sidvind/better-ajv-errors@3.0.1':
resolution: {integrity: sha512-++1mEYIeozfnwWI9P1ECvOPoacy+CgDASrmGvXPMCcqgx0YUzB01vZ78uHdQ443V6sTY+e9MzHqmN9DOls02aw==} resolution: {integrity: sha512-++1mEYIeozfnwWI9P1ECvOPoacy+CgDASrmGvXPMCcqgx0YUzB01vZ78uHdQ443V6sTY+e9MzHqmN9DOls02aw==}
engines: {node: '>= 16.14'} engines: {node: '>= 16.14'}
@ -2562,18 +2529,12 @@ packages:
'@types/body-parser@1.19.5': '@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
'@types/canvas-confetti@1.6.4':
resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==}
'@types/chrome@0.0.278': '@types/chrome@0.0.278':
resolution: {integrity: sha512-PDIJodOu7o54PpSOYLybPW/MDZBCjM1TKgf31I3Q/qaEbNpIH09rOM3tSEH3N7Q+FAqb1933LhF8ksUPYeQLNg==} resolution: {integrity: sha512-PDIJodOu7o54PpSOYLybPW/MDZBCjM1TKgf31I3Q/qaEbNpIH09rOM3tSEH3N7Q+FAqb1933LhF8ksUPYeQLNg==}
'@types/connect@3.4.38': '@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
'@types/cookie-parser@1.4.7':
resolution: {integrity: sha512-Fvuyi354Z+uayxzIGCwYTayFKocfV7TuDYZClCdIP9ckhvAu/ixDtCB6qx2TT0FKjPLf1f3P/J1rgf6lPs64mw==}
'@types/doctrine@0.0.9': '@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
@ -2643,9 +2604,6 @@ packages:
'@types/mime@1.3.5': '@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
'@types/multer@1.4.5':
resolution: {integrity: sha512-9b/0a8JyrR0r2nQhL73JR86obWL7cogfX12augvlrvcpciCo/hkvEsgu80Z4S2g2DHGVXHr8pUIi1VhqFJ8Ufw==}
'@types/node@20.16.5': '@types/node@20.16.5':
resolution: {integrity: sha512-VwYCweNo3ERajwy0IUlqqcyZ8/A7Zwa9ZP3MnENWcB11AejO+tLy3pu850goUW2FC/IJMdZUfKpX/yxL1gymCA==} resolution: {integrity: sha512-VwYCweNo3ERajwy0IUlqqcyZ8/A7Zwa9ZP3MnENWcB11AejO+tLy3pu850goUW2FC/IJMdZUfKpX/yxL1gymCA==}
@ -2673,9 +2631,6 @@ packages:
'@types/responselike@1.0.3': '@types/responselike@1.0.3':
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
'@types/rtlcss@3.5.4':
resolution: {integrity: sha512-MgGlOoTwu0SjpqBqVr9vwwezysD+ZoM0q6eS3ULAYuoKDYBlJMVz73Du/paSER9AOxv/UepGfcAzeO5otP72aQ==}
'@types/send@0.17.4': '@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
@ -2937,57 +2892,6 @@ packages:
'@vueuse/shared@12.2.0': '@vueuse/shared@12.2.0':
resolution: {integrity: sha512-SRr4AZwv/giS+EmyA1ZIzn3/iALjjnWAGaBNmoDTMEob9JwQaevAocuaMDnPAvU7Z35Y5g3CFRusCWgp1gVJ3Q==} resolution: {integrity: sha512-SRr4AZwv/giS+EmyA1ZIzn3/iALjjnWAGaBNmoDTMEob9JwQaevAocuaMDnPAvU7Z35Y5g3CFRusCWgp1gVJ3Q==}
'@webassemblyjs/ast@1.12.1':
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
'@webassemblyjs/floating-point-hex-parser@1.11.6':
resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
'@webassemblyjs/helper-api-error@1.11.6':
resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
'@webassemblyjs/helper-buffer@1.12.1':
resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
'@webassemblyjs/helper-numbers@1.11.6':
resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
'@webassemblyjs/helper-wasm-bytecode@1.11.6':
resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
'@webassemblyjs/helper-wasm-section@1.12.1':
resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
'@webassemblyjs/ieee754@1.11.6':
resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
'@webassemblyjs/leb128@1.11.6':
resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
'@webassemblyjs/utf8@1.11.6':
resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
'@webassemblyjs/wasm-edit@1.12.1':
resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
'@webassemblyjs/wasm-gen@1.12.1':
resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
'@webassemblyjs/wasm-opt@1.12.1':
resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
'@webassemblyjs/wasm-parser@1.12.1':
resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
'@webassemblyjs/wast-printer@1.12.1':
resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
abbrev@1.1.1: abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
@ -3042,11 +2946,6 @@ packages:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'} engines: {node: '>=8'}
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
ajv@6.12.6: ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@ -3408,9 +3307,6 @@ packages:
caniuse-lite@1.0.30001692: caniuse-lite@1.0.30001692:
resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==} resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==}
canvas-confetti@1.9.3:
resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==}
canvas@2.11.2: canvas@2.11.2:
resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==} resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==}
engines: {node: '>=6'} engines: {node: '>=6'}
@ -3477,10 +3373,6 @@ packages:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'} engines: {node: '>=18'}
chrome-trace-event@1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
chromium-bidi@0.5.8: chromium-bidi@0.5.8:
resolution: {integrity: sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==} resolution: {integrity: sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==}
peerDependencies: peerDependencies:
@ -3618,10 +3510,6 @@ packages:
cookie-es@1.2.2: cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
cookie-parser@1.4.6:
resolution: {integrity: sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==}
engines: {node: '>= 0.8.0'}
cookie-signature@1.0.6: cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
@ -3632,10 +3520,6 @@ packages:
resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==} resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
engines: {node: '>=6.6.0'} engines: {node: '>=6.6.0'}
cookie@0.4.1:
resolution: {integrity: sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==}
engines: {node: '>= 0.6'}
cookie@0.6.0: cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
@ -3869,10 +3753,6 @@ packages:
decimal.js@10.4.3: decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
decompress-response@4.2.1: decompress-response@4.2.1:
resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==} resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -4475,10 +4355,6 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'} engines: {node: '>=8'}
filter-obj@1.1.0:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
finalhandler@1.3.1: finalhandler@1.3.1:
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
@ -4695,9 +4571,6 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'} engines: {node: '>=10.13.0'}
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
glob@10.4.5: glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true hasBin: true
@ -5293,10 +5166,6 @@ packages:
engines: {node: '>=10'} engines: {node: '>=10'}
hasBin: true hasBin: true
jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
jiti@2.4.2: jiti@2.4.2:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true hasBin: true
@ -5491,10 +5360,6 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
local-pkg@0.5.1: local-pkg@0.5.1:
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'} engines: {node: '>=14'}
@ -5889,9 +5754,6 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
nepali-calendar-js@https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde: nepali-calendar-js@https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde:
resolution: {tarball: https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde} resolution: {tarball: https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde}
version: 1.0.3 version: 1.0.3
@ -6674,10 +6536,6 @@ packages:
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'} engines: {node: '>=0.6'}
query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
querystringify@2.2.0: querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
@ -6957,10 +6815,6 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'} engines: {node: '>=v12.22.7'}
schema-utils@3.3.0:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
scslre@0.3.0: scslre@0.3.0:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
engines: {node: ^14.0.0 || >=16.0.0} engines: {node: ^14.0.0 || >=16.0.0}
@ -7166,10 +7020,6 @@ packages:
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
engines: {node: '>=6'}
sprintf-js@1.1.3: sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
@ -7211,10 +7061,6 @@ packages:
streamx@2.20.1: streamx@2.20.1:
resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==} resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==}
strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
string-width@1.0.2: string-width@1.0.2:
resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -7347,10 +7193,6 @@ packages:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'} engines: {node: '>=8'}
supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
supports-color@9.4.0: supports-color@9.4.0:
resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
engines: {node: '>=12'} engines: {node: '>=12'}
@ -7415,22 +7257,6 @@ packages:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'} engines: {node: '>=10'}
terser-webpack-plugin@5.3.10:
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
esbuild: '*'
uglify-js: '*'
webpack: ^5.1.0
peerDependenciesMeta:
'@swc/core':
optional: true
esbuild:
optional: true
uglify-js:
optional: true
terser@5.33.0: terser@5.33.0:
resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==} resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -8189,10 +8015,6 @@ packages:
engines: {node: '>=4'} engines: {node: '>=4'}
hasBin: true hasBin: true
watchpack@2.4.2:
resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
webidl-conversions@3.0.1: webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@ -8213,16 +8035,6 @@ packages:
webpack-virtual-modules@0.6.2: webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
webpack@5.94.0:
resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
webpack-cli: '*'
peerDependenciesMeta:
webpack-cli:
optional: true
whatwg-encoding@3.1.1: whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'} engines: {node: '>=18'}
@ -11066,16 +10878,6 @@ snapshots:
'@sentry/utils': 7.119.0 '@sentry/utils': 7.119.0
vue: 3.5.13(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2)
'@sentry/webpack-plugin@2.22.4(encoding@0.1.13)(webpack@5.94.0(esbuild@0.24.2))':
dependencies:
'@sentry/bundler-plugin-core': 2.22.4(encoding@0.1.13)
unplugin: 1.0.1
uuid: 9.0.1
webpack: 5.94.0(esbuild@0.24.2)
transitivePeerDependencies:
- encoding
- supports-color
'@sidvind/better-ajv-errors@3.0.1(ajv@8.17.1)': '@sidvind/better-ajv-errors@3.0.1(ajv@8.17.1)':
dependencies: dependencies:
ajv: 8.17.1 ajv: 8.17.1
@ -11459,8 +11261,6 @@ snapshots:
'@types/connect': 3.4.38 '@types/connect': 3.4.38
'@types/node': 20.16.5 '@types/node': 20.16.5
'@types/canvas-confetti@1.6.4': {}
'@types/chrome@0.0.278': '@types/chrome@0.0.278':
dependencies: dependencies:
'@types/filesystem': 0.0.36 '@types/filesystem': 0.0.36
@ -11470,10 +11270,6 @@ snapshots:
dependencies: dependencies:
'@types/node': 20.16.5 '@types/node': 20.16.5
'@types/cookie-parser@1.4.7':
dependencies:
'@types/express': 4.17.21
'@types/doctrine@0.0.9': {} '@types/doctrine@0.0.9': {}
'@types/estree@0.0.39': {} '@types/estree@0.0.39': {}
@ -11545,10 +11341,6 @@ snapshots:
'@types/mime@1.3.5': {} '@types/mime@1.3.5': {}
'@types/multer@1.4.5':
dependencies:
'@types/express': 4.17.21
'@types/node@20.16.5': '@types/node@20.16.5':
dependencies: dependencies:
undici-types: 6.19.8 undici-types: 6.19.8
@ -11575,10 +11367,6 @@ snapshots:
dependencies: dependencies:
'@types/node': 20.16.5 '@types/node': 20.16.5
'@types/rtlcss@3.5.4':
dependencies:
postcss: 8.5.1
'@types/send@0.17.4': '@types/send@0.17.4':
dependencies: dependencies:
'@types/mime': 1.3.5 '@types/mime': 1.3.5
@ -12001,86 +11789,6 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- typescript - typescript
'@webassemblyjs/ast@1.12.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/floating-point-hex-parser@1.11.6': {}
'@webassemblyjs/helper-api-error@1.11.6': {}
'@webassemblyjs/helper-buffer@1.12.1': {}
'@webassemblyjs/helper-numbers@1.11.6':
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.6
'@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
'@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
'@webassemblyjs/helper-wasm-section@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-buffer': 1.12.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/ieee754@1.11.6':
dependencies:
'@xtuc/ieee754': 1.2.0
'@webassemblyjs/leb128@1.11.6':
dependencies:
'@xtuc/long': 4.2.2
'@webassemblyjs/utf8@1.11.6': {}
'@webassemblyjs/wasm-edit@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-buffer': 1.12.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/helper-wasm-section': 1.12.1
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-opt': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wast-printer': 1.12.1
'@webassemblyjs/wasm-gen@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/ieee754': 1.11.6
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
'@webassemblyjs/wasm-opt@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-buffer': 1.12.1
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wasm-parser@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-api-error': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/ieee754': 1.11.6
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
'@webassemblyjs/wast-printer@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
abbrev@1.1.1: {} abbrev@1.1.1: {}
abbrev@2.0.0: {} abbrev@2.0.0: {}
@ -12133,10 +11841,6 @@ snapshots:
indent-string: 4.0.0 indent-string: 4.0.0
optional: true optional: true
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
ajv@6.12.6: ajv@6.12.6:
dependencies: dependencies:
fast-deep-equal: 3.1.3 fast-deep-equal: 3.1.3
@ -12543,8 +12247,6 @@ snapshots:
caniuse-lite@1.0.30001692: {} caniuse-lite@1.0.30001692: {}
canvas-confetti@1.9.3: {}
canvas@2.11.2(encoding@0.1.13): canvas@2.11.2(encoding@0.1.13):
dependencies: dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
@ -12626,8 +12328,6 @@ snapshots:
chownr@3.0.0: {} chownr@3.0.0: {}
chrome-trace-event@1.0.4: {}
chromium-bidi@0.5.8(devtools-protocol@0.0.1232444): chromium-bidi@0.5.8(devtools-protocol@0.0.1232444):
dependencies: dependencies:
devtools-protocol: 0.0.1232444 devtools-protocol: 0.0.1232444
@ -12750,11 +12450,6 @@ snapshots:
cookie-es@1.2.2: {} cookie-es@1.2.2: {}
cookie-parser@1.4.6:
dependencies:
cookie: 0.4.1
cookie-signature: 1.0.6
cookie-signature@1.0.6: {} cookie-signature@1.0.6: {}
cookie-signature@1.0.7: {} cookie-signature@1.0.7: {}
@ -12762,8 +12457,6 @@ snapshots:
cookie-signature@1.2.1: cookie-signature@1.2.1:
optional: true optional: true
cookie@0.4.1: {}
cookie@0.6.0: {} cookie@0.6.0: {}
copy-anything@3.0.5: copy-anything@3.0.5:
@ -12988,8 +12681,6 @@ snapshots:
decimal.js@10.4.3: {} decimal.js@10.4.3: {}
decode-uri-component@0.2.2: {}
decompress-response@4.2.1: decompress-response@4.2.1:
dependencies: dependencies:
mimic-response: 2.1.0 mimic-response: 2.1.0
@ -13822,8 +13513,6 @@ snapshots:
dependencies: dependencies:
to-regex-range: 5.0.1 to-regex-range: 5.0.1
filter-obj@1.1.0: {}
finalhandler@1.3.1: finalhandler@1.3.1:
dependencies: dependencies:
debug: 2.6.9 debug: 2.6.9
@ -14078,8 +13767,6 @@ snapshots:
dependencies: dependencies:
is-glob: 4.0.3 is-glob: 4.0.3
glob-to-regexp@0.4.1: {}
glob@10.4.5: glob@10.4.5:
dependencies: dependencies:
foreground-child: 3.3.0 foreground-child: 3.3.0
@ -14695,12 +14382,6 @@ snapshots:
filelist: 1.0.4 filelist: 1.0.4
minimatch: 3.1.2 minimatch: 3.1.2
jest-worker@27.5.1:
dependencies:
'@types/node': 20.16.5
merge-stream: 2.0.0
supports-color: 8.1.1
jiti@2.4.2: {} jiti@2.4.2: {}
jose@5.9.6: {} jose@5.9.6: {}
@ -14919,8 +14600,6 @@ snapshots:
load-tsconfig@0.2.5: {} load-tsconfig@0.2.5: {}
loader-runner@4.3.0: {}
local-pkg@0.5.1: local-pkg@0.5.1:
dependencies: dependencies:
mlly: 1.7.4 mlly: 1.7.4
@ -15292,8 +14971,6 @@ snapshots:
negotiator@0.6.3: {} negotiator@0.6.3: {}
neo-async@2.6.2: {}
nepali-calendar-js@https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde: {} nepali-calendar-js@https://codeload.github.com/pixunil/nepali-calendar-js/tar.gz/a6e12cb1db54c508c49dc0c619cef0674e7c1cde: {}
netmask@2.0.2: {} netmask@2.0.2: {}
@ -16279,13 +15956,6 @@ snapshots:
qs@6.5.3: {} qs@6.5.3: {}
query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
filter-obj: 1.1.0
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
querystringify@2.2.0: {} querystringify@2.2.0: {}
queue-microtask@1.2.3: {} queue-microtask@1.2.3: {}
@ -16621,12 +16291,6 @@ snapshots:
dependencies: dependencies:
xmlchars: 2.2.0 xmlchars: 2.2.0
schema-utils@3.3.0:
dependencies:
'@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
scslre@0.3.0: scslre@0.3.0:
dependencies: dependencies:
'@eslint-community/regexpp': 4.11.1 '@eslint-community/regexpp': 4.11.1
@ -16891,8 +16555,6 @@ snapshots:
speakingurl@14.0.1: {} speakingurl@14.0.1: {}
split-on-first@1.1.0: {}
sprintf-js@1.1.3: {} sprintf-js@1.1.3: {}
sql-template-strings@2.2.2: {} sql-template-strings@2.2.2: {}
@ -16946,8 +16608,6 @@ snapshots:
optionalDependencies: optionalDependencies:
bare-events: 2.4.2 bare-events: 2.4.2
strict-uri-encode@2.0.0: {}
string-width@1.0.2: string-width@1.0.2:
dependencies: dependencies:
code-point-at: 1.1.0 code-point-at: 1.1.0
@ -17096,10 +16756,6 @@ snapshots:
dependencies: dependencies:
has-flag: 4.0.0 has-flag: 4.0.0
supports-color@8.1.1:
dependencies:
has-flag: 4.0.0
supports-color@9.4.0: {} supports-color@9.4.0: {}
supports-preserve-symlinks-flag@1.0.0: {} supports-preserve-symlinks-flag@1.0.0: {}
@ -17185,17 +16841,6 @@ snapshots:
type-fest: 0.16.0 type-fest: 0.16.0
unique-string: 2.0.0 unique-string: 2.0.0
terser-webpack-plugin@5.3.10(esbuild@0.24.2)(webpack@5.94.0(esbuild@0.24.2)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.33.0
webpack: 5.94.0(esbuild@0.24.2)
optionalDependencies:
esbuild: 0.24.2
terser@5.33.0: terser@5.33.0:
dependencies: dependencies:
'@jridgewell/source-map': 0.3.6 '@jridgewell/source-map': 0.3.6
@ -17977,11 +17622,6 @@ snapshots:
got: 6.7.1 got: 6.7.1
meow: 3.7.0 meow: 3.7.0
watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
webidl-conversions@3.0.1: {} webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {} webidl-conversions@4.0.2: {}
@ -17994,36 +17634,6 @@ snapshots:
webpack-virtual-modules@0.6.2: {} webpack-virtual-modules@0.6.2: {}
webpack@5.94.0(esbuild@0.24.2):
dependencies:
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.14.0
acorn-import-attributes: 1.9.5(acorn@8.14.0)
browserslist: 4.24.4
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.6.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
terser-webpack-plugin: 5.3.10(esbuild@0.24.2)(webpack@5.94.0(esbuild@0.24.2))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
whatwg-encoding@3.1.1: whatwg-encoding@3.1.1:
dependencies: dependencies:
iconv-lite: 0.6.3 iconv-lite: 0.6.3