Files
tpf/package.json
2026-03-11 11:08:01 +01:00

57 lines
1.3 KiB
JSON

{
"name": "therapyfinder",
"private": true,
"version": "2026.03.11",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"e2e": "playwright test",
"lint": "biome check .",
"format": "biome check --write ."
},
"dependencies": {
"@electric-sql/pglite": "^0.3.16",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-form": "^1.28.4",
"@tanstack/react-router": "^1.166.7",
"@tanstack/router-plugin": "^1.166.7",
"@tanstack/zod-form-adapter": "^0.42.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,json,css}": [
"biome check --write"
]
}
}