Compare commits
3 commits
829c73a50f
...
da4e4b4bd2
Author | SHA1 | Date | |
---|---|---|---|
da4e4b4bd2 | |||
cdefc7ca90 | |||
dc43b429e0 |
6 changed files with 471 additions and 304 deletions
|
@ -7,8 +7,10 @@ repos:
|
|||
pass_filenames: false
|
||||
entry: npm run check
|
||||
files: \.(js|ts|svelte)$
|
||||
- id: svelte-lint
|
||||
- id: eslint
|
||||
name: eslint
|
||||
language: system
|
||||
entry: npx eslint
|
||||
args:
|
||||
- "--max-warnings=0"
|
||||
files: \.(js|ts|svelte)$
|
||||
|
|
|
@ -4,7 +4,6 @@ WORKDIR /app
|
|||
|
||||
# copy dependency list
|
||||
COPY package.json pnpm-lock.yaml run/entrypoint.sh ./
|
||||
COPY patches ./patches
|
||||
COPY prisma ./prisma
|
||||
|
||||
# Setup pnpm, install Prisma CLI (for generating client) and install dependencies
|
||||
|
|
26
package.json
26
package.json
|
@ -17,7 +17,7 @@
|
|||
"test:e2e": "playwright test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@auth/core": "^0.30.0",
|
||||
"@auth/core": "^0.31.0",
|
||||
"@floating-ui/core": "^1.6.1",
|
||||
"@mdi/js": "^7.4.47",
|
||||
"@prisma/client": "^5.13.0",
|
||||
|
@ -28,44 +28,44 @@
|
|||
"qs": "^6.12.1",
|
||||
"set-cookie-parser": "^2.6.0",
|
||||
"svelte-floating-ui": "^1.5.8",
|
||||
"zod": "^3.23.6",
|
||||
"zod": "^3.23.8",
|
||||
"zod-form-data": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@faker-js/faker": "^8.4.1",
|
||||
"@playwright/test": "^1.43.1",
|
||||
"@stylistic/eslint-plugin": "^1.8.0",
|
||||
"@playwright/test": "^1.44.0",
|
||||
"@stylistic/eslint-plugin": "^2.1.0",
|
||||
"@sveltejs/adapter-node": "^5.0.1",
|
||||
"@sveltejs/kit": "^2.5.7",
|
||||
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
||||
"@tailwindcss/typography": "^0.5.13",
|
||||
"@trpc/client": "^10.45.2",
|
||||
"@trpc/server": "^10.45.2",
|
||||
"@types/diff": "^5.2.0",
|
||||
"@types/node": "^20.12.8",
|
||||
"@types/diff": "^5.2.1",
|
||||
"@types/node": "^20.12.11",
|
||||
"@types/qs": "^6.9.15",
|
||||
"@types/set-cookie-parser": "^2.4.7",
|
||||
"@zerodevx/svelte-toast": "^0.9.5",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"daisyui": "^4.10.5",
|
||||
"daisyui": "^4.11.1",
|
||||
"dotenv": "^16.4.5",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-no-relative-import-paths": "^1.5.4",
|
||||
"eslint-plugin-svelte": "^2.38.0",
|
||||
"eslint-plugin-svelte": "^2.39.0",
|
||||
"eslint-plugin-unused-imports": "^3.2.0",
|
||||
"globals": "^15.1.0",
|
||||
"globals": "^15.2.0",
|
||||
"postcss-import": "^16.1.0",
|
||||
"postcss-nesting": "^12.1.2",
|
||||
"postcss-nesting": "^12.1.3",
|
||||
"rollup-license-plugin": "^3.0.0",
|
||||
"svelte": "^4.2.15",
|
||||
"svelte": "^4.2.16",
|
||||
"svelte-check": "^3.7.1",
|
||||
"sveltekit-superforms": "^2.13.0",
|
||||
"sveltekit-superforms": "^2.13.1",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"trpc-sveltekit": "^3.6.1",
|
||||
"tslib": "^2.6.2",
|
||||
"tsx": "^4.9.1",
|
||||
"tsx": "^4.10.1",
|
||||
"typescript": "^5.4.5",
|
||||
"typescript-eslint": "^7.8.0",
|
||||
"vite": "^5.2.11",
|
||||
|
|
742
pnpm-lock.yaml
742
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
CHANGELOG="CHANGELOG.md"
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in a new issue