⬆️ Updated dependencies

This commit is contained in:
Mawoka
2022-04-13 20:44:27 +02:00
parent 63fc9562b9
commit f4441f9843
10 changed files with 3080 additions and 695 deletions
+31 -31
View File
@@ -3,7 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "svelte-kit dev", "dev": "svelte-kit dev",
"build": "svelte-kit build", "build": "NODE_ENV=production svelte-kit build",
"package": "svelte-kit package", "package": "svelte-kit package",
"preview": "svelte-kit preview", "preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json", "check": "svelte-check --tsconfig ./tsconfig.json",
@@ -14,51 +14,51 @@
"translations-scan": "i18next-scanner --config i18next-scanner.config.engine.cjs src/**/*.svelte" "translations-scan": "i18next-scanner --config i18next-scanner.config.engine.cjs src/**/*.svelte"
}, },
"devDependencies": { "devDependencies": {
"@felte/validator-yup": "^1.0.1", "@felte/validator-yup": "^1.0.3",
"@fontsource/marck-script": "^4.5.2", "@fontsource/marck-script": "^4.5.5",
"@sentry/browser": "^6.18.2", "@sentry/browser": "^6.19.6",
"@sentry/tracing": "^6.18.2", "@sentry/tracing": "^6.19.6",
"@sveltejs/adapter-auto": "next", "@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-node": "^1.0.0-next.71", "@sveltejs/adapter-node": "^1.0.0-next.73",
"@sveltejs/kit": "next", "@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.0-alpha.3", "@tailwindcss/typography": "^0.5.2",
"@types/cookie": "^0.4.1", "@types/cookie": "^0.4.1",
"@types/ioredis": "^4.28.10",
"@types/js-cookie": "^3.0.1", "@types/js-cookie": "^3.0.1",
"@types/luxon": "^2.0.9", "@types/luxon": "^2.3.1",
"@types/yup": "^0.29.13", "@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.10.1", "@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.10.1", "@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.2", "autoprefixer": "^10.4.4",
"cookie": "^0.4.2", "cookie": "^0.5.0",
"eslint": "^7.32.0", "cssnano": "^5.1.7",
"eslint-config-prettier": "^8.3.0", "eslint": "^8.13.0",
"eslint-plugin-svelte3": "^3.2.1", "eslint-config-prettier": "^8.5.0",
"felte": "^1.0.1", "eslint-plugin-svelte3": "^3.4.1",
"highlight.js": "^11.4.0", "felte": "^1.1.5",
"highlight.js": "^11.5.1",
"i18next-browser-languagedetector": "^6.1.4", "i18next-browser-languagedetector": "^6.1.4",
"ioredis": "^4.28.5", "ioredis": "^5.0.4",
"js-cookie": "^3.0.1", "js-cookie": "^3.0.1",
"luxon": "^2.3.1", "luxon": "^2.3.1",
"node-fetch": "^3.2.0", "node-fetch": "^3.2.3",
"postcss": "^8.4.5", "postcss": "^8.4.12",
"postcss-load-config": "^3.1.1", "postcss-load-config": "^3.1.4",
"prettier": "^2.5.1", "prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.5.0", "prettier-plugin-svelte": "^2.7.0",
"sass": "^1.49.9", "sass": "^1.50.0",
"socket.io-client": "^4.4.1", "socket.io-client": "^4.4.1",
"svelte": "^3.44.0", "svelte": "^3.47.0",
"svelte-check": "^2.2.6", "svelte-check": "^2.6.0",
"svelte-preprocess": "^4.10.1", "svelte-preprocess": "^4.10.5",
"sveltejs-tippy": "^3.0.0", "sveltejs-tippy": "^3.0.0",
"swiper": "^8.1.0", "swiper": "^8.1.0",
"tailwindcss": "^3.0.12", "tailwindcss": "^3.0.24",
"tslib": "^2.3.1", "tslib": "^2.3.1",
"typescript": "~4.5.4", "typescript": "~4.6",
"yup": "^0.32.11" "yup": "^0.32.11"
}, },
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"i18next": "^21.6.14" "i18next": "^21.6.16"
} }
} }
+3036 -646
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -1,12 +1,14 @@
const tailwindcss = require('tailwindcss'); const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer'); const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const config = { const config = {
plugins: [ plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind, //Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(), tailwindcss(),
//But others, like autoprefixer, need to run after, //But others, like autoprefixer, need to run after,
autoprefixer autoprefixer,
cssnano({ preset: 'default' })
] ]
}; };
+1 -1
View File
@@ -2,7 +2,7 @@
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@fontsource /marck-script; /*@fontsource/marck-script;*/
.marck-script { .marck-script {
font-family: 'Marck Script'; font-family: 'Marck Script';
+1 -1
View File
@@ -6,7 +6,7 @@
/> />
</svelte:head> </svelte:head>
<article <article
class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-pink text-yellow-50 px-4" class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-slate text-yellow-50 px-4"
> >
<h1>Development-setup</h1> <h1>Development-setup</h1>
@@ -5,9 +5,7 @@
content="How to import quizzes from KAHOOT! into ClassQuiz, the open-source quiz-application, easily" content="How to import quizzes from KAHOOT! into ClassQuiz, the open-source quiz-application, easily"
/> />
</svelte:head> </svelte:head>
<article <article class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-slate px-4">
class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-pink text-yellow-50 px-4"
>
<h1>Import Quizzes from Kahoot into ClassQuiz</h1> <h1>Import Quizzes from Kahoot into ClassQuiz</h1>
<p> <p>
+1 -3
View File
@@ -5,9 +5,7 @@
content="The overview about the docs for ClassQuiz, the open-source quiz-application" content="The overview about the docs for ClassQuiz, the open-source quiz-application"
/> />
</svelte:head> </svelte:head>
<article <article class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-slate px-4">
class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-pink text-yellow-50 px-4"
>
<h1>Welcome to the ClassQuiz docs!</h1> <h1>Welcome to the ClassQuiz docs!</h1>
<h2>Index</h2> <h2>Index</h2>
<ul> <ul>
+1 -3
View File
@@ -5,9 +5,7 @@
content="The roadmap for ClassQuiz, the open-source quiz-application" content="The roadmap for ClassQuiz, the open-source quiz-application"
/> />
</svelte:head> </svelte:head>
<article <article class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-slate px-4">
class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-pink text-yellow-50 px-4"
>
<h1>Roadmap</h1> <h1>Roadmap</h1>
<ul> <ul>
+1 -3
View File
@@ -15,9 +15,7 @@
content="How to self-host ClassQuiz, the open-source quiz-application" content="How to self-host ClassQuiz, the open-source quiz-application"
/> />
</svelte:head> </svelte:head>
<article <article class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-gray px-4">
class="prose prose-sm sm:prose lg:prose-lg xl:prose-xl mx-auto mt-10 prose-pink text-yellow-50 px-4"
>
<h1>Self-Hosting</h1> <h1>Self-Hosting</h1>
<p>Since ClassQuiz is open-source, it can also be self-hosted.</p> <p>Since ClassQuiz is open-source, it can also be self-hosted.</p>
+4 -3
View File
@@ -11,9 +11,10 @@ const config = {
typography: (theme) => ({ typography: (theme) => ({
DEFAULT: { DEFAULT: {
css: { css: {
color: theme('colors.yellow.50'), // color: theme('colors.yellow.50'),
textDecoration: 'none', textDecoration: 'none',
a: { textColor: '#000',
/*a: {
color: theme('colors.blue.200') color: theme('colors.blue.200')
}, },
blockquote: { blockquote: {
@@ -36,7 +37,7 @@ const config = {
}, },
strong: { strong: {
color: theme('colors.yellow.50') color: theme('colors.yellow.50')
}, },*/
'code::before': { 'code::before': {
content: '""', content: '""',
'padding-left': '0.25rem' 'padding-left': '0.25rem'