⬆️ Upgraded dependencies

This commit is contained in:
Mawoka
2022-06-10 19:13:33 +02:00
parent f1a4b2236c
commit 924326c0ab
4 changed files with 1703 additions and 702 deletions
+33 -33
View File
@@ -15,57 +15,57 @@
},
"devDependencies": {
"@beyonk/svelte-mapbox": "^8.1.4",
"@felte/reporter-tippy": "^1.0.7",
"@felte/validator-yup": "^1.0.5",
"@fontsource/marck-script": "^4.5.5",
"@sentry/browser": "^6.19.6",
"@sentry/tracing": "^6.19.6",
"@felte/reporter-tippy": "^1.1.2",
"@felte/validator-yup": "^1.0.8",
"@fontsource/marck-script": "^4.5.9",
"@sentry/browser": "^7.1.1",
"@sentry/tracing": "^7.1.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-node": "^1.0.0-next.73",
"@sveltejs/adapter-node": "^1.0.0-next.78",
"@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.2",
"@types/cookie": "^0.5.0",
"@types/js-cookie": "^3.0.1",
"@types/luxon": "^2.3.1",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.2",
"@types/luxon": "^2.3.2",
"@types/ua-parser-js": "^0.7.36",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.4",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"autoprefixer": "^10.4.7",
"cookie": "^0.5.0",
"cssnano": "^5.1.7",
"eslint": "^8.13.0",
"cssnano": "^5.1.11",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"felte": "^1.1.7",
"eslint-plugin-svelte3": "^4.0.0",
"felte": "^1.2.2",
"highlight.js": "^11.5.1",
"i18next-browser-languagedetector": "^6.1.4",
"ioredis": "^5.0.4",
"ioredis": "^5.0.6",
"js-cookie": "^3.0.1",
"luxon": "^2.3.1",
"mapbox-gl": "^2.8.1",
"node-fetch": "^3.2.3",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"luxon": "^2.4.0",
"mapbox-gl": "^2.8.2",
"node-fetch": "^3.2.6",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.50.0",
"socket.io-client": "^4.4.1",
"svelte": "^3.47.0",
"svelte-check": "^2.7.0",
"svelte-preprocess": "^4.10.6",
"sass": "^1.52.3",
"socket.io-client": "^4.5.1",
"svelte": "^3.48.0",
"svelte-check": "^2.7.2",
"svelte-preprocess": "^4.10.7",
"svelte-tippy": "^1.3.2",
"swiper": "^8.1.0",
"tailwindcss": "^3.0.24",
"swiper": "^8.2.3",
"tailwindcss": "^3.1.2",
"tippy.js": "^6.3.7",
"tslib": "^2.3.1",
"typescript": "~4.6.3",
"tslib": "^2.4.0",
"typescript": "~4.7.3",
"ua-parser-js": "^1.0.2",
"vite-plugin-iso-import": "^0.1.3",
"yup": "^0.32.11"
},
"type": "module",
"dependencies": {
"i18next": "^21.6.16"
"i18next": "^21.8.9"
}
}
+1641 -654
View File
File diff suppressed because it is too large Load Diff
+22 -8
View File
@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="description" content="" />
<!-- <link rel="icon" href="%svelte.assets%/favicon.png" />-->
<!-- <link rel="icon" href="%sveltekit.assets%/favicon.png" />-->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
async=""
@@ -20,18 +20,32 @@
};
</script>
<link rel="apple-touch-icon" sizes="180x180" href="%svelte.assets%/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="%svelte.assets%/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="%svelte.assets%/favicon-16x16.png" />
<link rel="manifest" href="%svelte.assets%/site.webmanifest" />
<link rel="mask-icon" href="%svelte.assets%/safari-pinned-tab.svg" color="#5bbad5" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="%sveltekit.assets%/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="%sveltekit.assets%/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="%sveltekit.assets%/favicon-16x16.png"
/>
<link rel="manifest" href="%sveltekit.assets%/site.webmanifest" />
<link rel="mask-icon" href="%sveltekit.assets%/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="apple-mobile-web-app-title" content="ClassQuiz" />
<meta name="application-name" content="ClassQuiz" />
<meta name="msapplication-TileColor" content="#00a300" />
<meta name="theme-color" content="#ffffff" />
%svelte.head%
%sveltekit.head%
</head>
<body>
<div>%svelte.body%</div>
<div>%sveltekit.body%</div>
</body>
</html>