Compare commits

..

No commits in common. "da4e4b4bd2eb9bfde64ec12633695136c6b1791e" and "829c73a50ff7e8eb95eea60e46c6aa72e9e03027" have entirely different histories.

6 changed files with 304 additions and 471 deletions

View file

@ -7,10 +7,8 @@ repos:
pass_filenames: false pass_filenames: false
entry: npm run check entry: npm run check
files: \.(js|ts|svelte)$ files: \.(js|ts|svelte)$
- id: eslint - id: svelte-lint
name: eslint name: eslint
language: system language: system
entry: npx eslint entry: npx eslint
args:
- "--max-warnings=0"
files: \.(js|ts|svelte)$ files: \.(js|ts|svelte)$

View file

@ -4,6 +4,7 @@ WORKDIR /app
# copy dependency list # copy dependency list
COPY package.json pnpm-lock.yaml run/entrypoint.sh ./ COPY package.json pnpm-lock.yaml run/entrypoint.sh ./
COPY patches ./patches
COPY prisma ./prisma COPY prisma ./prisma
# Setup pnpm, install Prisma CLI (for generating client) and install dependencies # Setup pnpm, install Prisma CLI (for generating client) and install dependencies

View file

@ -17,7 +17,7 @@
"test:e2e": "playwright test" "test:e2e": "playwright test"
}, },
"dependencies": { "dependencies": {
"@auth/core": "^0.31.0", "@auth/core": "^0.30.0",
"@floating-ui/core": "^1.6.1", "@floating-ui/core": "^1.6.1",
"@mdi/js": "^7.4.47", "@mdi/js": "^7.4.47",
"@prisma/client": "^5.13.0", "@prisma/client": "^5.13.0",
@ -28,44 +28,44 @@
"qs": "^6.12.1", "qs": "^6.12.1",
"set-cookie-parser": "^2.6.0", "set-cookie-parser": "^2.6.0",
"svelte-floating-ui": "^1.5.8", "svelte-floating-ui": "^1.5.8",
"zod": "^3.23.8", "zod": "^3.23.6",
"zod-form-data": "^2.0.2" "zod-form-data": "^2.0.2"
}, },
"devDependencies": { "devDependencies": {
"@faker-js/faker": "^8.4.1", "@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.44.0", "@playwright/test": "^1.43.1",
"@stylistic/eslint-plugin": "^2.1.0", "@stylistic/eslint-plugin": "^1.8.0",
"@sveltejs/adapter-node": "^5.0.1", "@sveltejs/adapter-node": "^5.0.1",
"@sveltejs/kit": "^2.5.7", "@sveltejs/kit": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^3.1.0", "@sveltejs/vite-plugin-svelte": "^3.1.0",
"@tailwindcss/typography": "^0.5.13", "@tailwindcss/typography": "^0.5.13",
"@trpc/client": "^10.45.2", "@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2", "@trpc/server": "^10.45.2",
"@types/diff": "^5.2.1", "@types/diff": "^5.2.0",
"@types/node": "^20.12.11", "@types/node": "^20.12.8",
"@types/qs": "^6.9.15", "@types/qs": "^6.9.15",
"@types/set-cookie-parser": "^2.4.7", "@types/set-cookie-parser": "^2.4.7",
"@zerodevx/svelte-toast": "^0.9.5", "@zerodevx/svelte-toast": "^0.9.5",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"daisyui": "^4.11.1", "daisyui": "^4.10.5",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-relative-import-paths": "^1.5.4", "eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-svelte": "^2.39.0", "eslint-plugin-svelte": "^2.38.0",
"eslint-plugin-unused-imports": "^3.2.0", "eslint-plugin-unused-imports": "^3.2.0",
"globals": "^15.2.0", "globals": "^15.1.0",
"postcss-import": "^16.1.0", "postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.3", "postcss-nesting": "^12.1.2",
"rollup-license-plugin": "^3.0.0", "rollup-license-plugin": "^3.0.0",
"svelte": "^4.2.16", "svelte": "^4.2.15",
"svelte-check": "^3.7.1", "svelte-check": "^3.7.1",
"sveltekit-superforms": "^2.13.1", "sveltekit-superforms": "^2.13.0",
"tailwindcss": "^3.4.3", "tailwindcss": "^3.4.3",
"trpc-sveltekit": "^3.6.1", "trpc-sveltekit": "^3.6.1",
"tslib": "^2.6.2", "tslib": "^2.6.2",
"tsx": "^4.10.1", "tsx": "^4.9.1",
"typescript": "^5.4.5", "typescript": "^5.4.5",
"typescript-eslint": "^7.8.0", "typescript-eslint": "^7.8.0",
"vite": "^5.2.11", "vite": "^5.2.11",

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
CHANGELOG="CHANGELOG.md" CHANGELOG="CHANGELOG.md"

BIN
src/lib/assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB