-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "faircount",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply faircount-db --local",
"db:studio": "drizzle-kit studio",
"worker:dev": "wrangler dev",
"worker:deploy": "wrangler deploy",
"generate:icons": "tsx scripts/generate-icons.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@ark-ui/react": "^5.30.0",
"@hono/zod-validator": "^0.7.6",
"@hookform/resolvers": "5.2.2",
"@tanstack/react-query": "^5.90.20",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "7.71.1",
"react-router-dom": "^7.13.0",
"tailwind-merge": "^3.4.0",
"worker-mailer": "^1.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@cloudflare/workers-types": "^4.20260128.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query-devtools": "^5.91.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.19.7",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.8",
"jsdom": "^27.4.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"workbox-window": "^7.4.0",
"wrangler": "^4.61.0"
}
}