Some checks failed
CI / Unit & Component Tests (push) Has been cancelled
CI / OCR Service Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / fail2ban Regex (push) Has been cancelled
CI / Compose Bucket Idempotency (push) Has been cancelled
CI / Unit & Component Tests (pull_request) Has been cancelled
CI / OCR Service Tests (pull_request) Has been cancelled
CI / Backend Unit Tests (pull_request) Has been cancelled
CI / fail2ban Regex (pull_request) Has been cancelled
CI / Compose Bucket Idempotency (pull_request) Has been cancelled
Replace && with ; in test:coverage so the client vitest run is not short-circuited when the server run exits non-zero (e.g. threshold violation or test failure). Without this the upload-artifact step only ever sees coverage/server. Also updates the stale CLAUDE.md comment that said server-only. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
74 lines
2.4 KiB
JSON
74 lines
2.4 KiB
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || true && git -C .. config core.hooksPath .husky 2>/dev/null || true",
|
|
"postinstall": "patch-package",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && eslint .",
|
|
"lint:boundary-demo": "eslint src/lib/tag/__fixtures__/",
|
|
"test:unit": "vitest",
|
|
"test": "npm run test:unit -- --run",
|
|
"test:coverage": "vitest run --coverage --project=server; vitest run -c vitest.client-coverage.config.ts --coverage",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"generate:api": "openapi-typescript http://localhost:8080/v3/api-docs -o ./src/lib/generated/api.ts"
|
|
},
|
|
"dependencies": {
|
|
"@tiptap/core": "3.22.5",
|
|
"@tiptap/extension-mention": "3.22.5",
|
|
"@tiptap/starter-kit": "3.22.5",
|
|
"diff": "^8.0.3",
|
|
"isomorphic-dompurify": "^3.12.0",
|
|
"openapi-fetch": "^0.13.5",
|
|
"pdfjs-dist": "^5.5.207"
|
|
},
|
|
"devDependencies": {
|
|
"@axe-core/playwright": "^4.11.1",
|
|
"@eslint/compat": "^1.4.0",
|
|
"@eslint/js": "^9.39.1",
|
|
"@inlang/paraglide-js": "^2.5.0",
|
|
"@playwright/test": "^1.58.2",
|
|
"@sveltejs/adapter-node": "^5.4.0",
|
|
"@sveltejs/kit": "^2.48.5",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"@types/diff": "^7.0.2",
|
|
"@types/node": "^24",
|
|
"@vitest/browser-playwright": "^4.0.10",
|
|
"@vitest/coverage-istanbul": "^4.1.0",
|
|
"@vitest/coverage-v8": "^4.1.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
"eslint-plugin-boundaries": "6.0.2",
|
|
"eslint-plugin-svelte": "^3.13.0",
|
|
"globals": "^16.5.0",
|
|
"openapi-typescript": "^7.8.0",
|
|
"patch-package": "^8.0.0",
|
|
"playwright": "^1.56.1",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-svelte": "^3.4.0",
|
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
"svelte": "^5.43.8",
|
|
"svelte-check": "^4.3.4",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.47.0",
|
|
"vite": "^7.2.2",
|
|
"vite-plugin-devtools-json": "^1.0.0",
|
|
"vitest": "^4.0.10",
|
|
"vitest-browser-svelte": "^2.0.1"
|
|
}
|
|
}
|