Skip to content

Commit

Permalink
fix(dependencies): clean up dev and prod dependencies (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Lilleby <[email protected]>
  • Loading branch information
an2n and Anton Lilleby authored Jul 24, 2024
1 parent 382edeb commit 95300dc
Show file tree
Hide file tree
Showing 4 changed files with 554 additions and 367 deletions.
40 changes: 18 additions & 22 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "0.0.1",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite dev",
Expand All @@ -12,56 +12,52 @@
"dependencies": {
"@auth/core": "^0.34.1",
"@auth/sveltekit": "^1.4.1",
"@sanity/client": "^6.20.1",
"@sanity/client": "^6.21.1",
"@sanity/image-url": "^1.0.2",
"@sanity/svelte-loader": "^1.11.32",
"@sanity/visual-editing": "^2.1.5",
"@supabase/supabase-js": "^2.44.0",
"date-fns": "^3.6.0",
"globals": "^15.8.0",
"groq": "^3.48.1",
"groq": "^3.52.1",
"ical-generator": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.27.3",
"kysely-postgres-js": "^2.0.0",
"nodemailer": "^6.9.14",
"playwright": "^1.45.0",
"postgres": "^3.4.4",
"validator": "^13.12.0",
"date-fns": "^3.6.0"
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@portabletext/svelte": "^2.1.11",
"@portabletext/types": "^2.0.13",
"@sanity/types": "^3.48.1",
"@supabase/supabase-js": "^2.44.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-vercel": "^5.4.1",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.5.0",
"eslint-plugin-svelte": "^2.41.0",
"eslint": "^9.7.0",
"eslint-plugin-svelte": "^2.43.0",
"flowbite": "^2.4.0",
"flowbite-svelte": "^0.46.11",
"jsonwebtoken": "^9.0.2",
"kysely-supabase": "^0.1.0",
"flowbite-svelte": "^0.46.15",
"kysely-supabase": "^0.2.0",
"phosphor-svelte": "^2.0.1",
"playwright": "^1.45.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "^4.2.18",
"svelte-eslint-parser": "^0.41.0",
"sveltekit-rate-limiter": "^0.5.1",
"sveltekit-superforms": "^2.15.2",
"sveltekit-superforms": "^2.16.1",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vite": "^5.3.1",
"zod": "^3.23.8"
"typescript-eslint": "^7.17.0",
"vite": "^5.3.1"
},
"type": "module",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions app/src/components/shared/SignInOrOut.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</script>

{#if auth}
<div class="flex flex-row items-center gap-2">
<div class="flex flex-row items-center gap-3">
<img class="h-7 rounded-2xl" alt="Profilbilde" src={auth.user.image} />
<span class="mr-6 hidden text-sm font-normal sm:block">{auth.user.name}</span>
<span class="hidden text-sm font-normal sm:block">{auth.user.name}</span>
<Button
color="dark"
class="h-7"
Expand Down
2 changes: 1 addition & 1 deletion app/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import adapter from "@sveltejs/adapter-auto";
import adapter from "@sveltejs/adapter-vercel";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";

/** @type {import('@sveltejs/kit').Config} */
Expand Down
Loading

0 comments on commit 95300dc

Please sign in to comment.