Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
63 changes: 61 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"test:coverage": "vitest run --coverage",
"test:api": "vitest run --config tests/vitest.api.config.ts",
"test:e2e": "playwright test",
"i18n:check": "tsx scripts/check-translations.ts",
"i18n:check:verbose": "tsx scripts/check-translations.ts --verbose",
"i18n:find-hardcoded": "tsx scripts/find-hardcoded-text.ts",
"hold-my-beer": "npm run format && npm run lint && npm run types && npm run check && npm run build-check && npm run test"
},
"devDependencies": {
Expand Down Expand Up @@ -52,6 +55,7 @@
"sass-embedded": "^1.91.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0",
"typescript-eslint": "^8.44.0",
"vite": "^7.0.4",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173,
timeout: 120000,
timeout: 180000,
reuseExistingServer: !process.env.CI,
},
});
Loading
Loading