-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 KB
/
package.json
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
67
68
69
70
{
"name": "logbook",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"check": "pnpm biome check",
"check:write": "pnpm biome check --write",
"ts-check": "tsc --noEmit",
"db:": "bun run --env-file=.env.local drizzle-kit"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.4.1",
"@hookform/resolvers": "^3.9.0",
"@internationalized/date": "^3.5.5",
"@libsql/client": "^0.14.0",
"@next-safe-action/adapter-react-hook-form": "^1.0.13",
"@nextui-org/react": "^2.4.6",
"@t3-oss/env-nextjs": "^0.11.0",
"@tabler/icons-react": "^3.16.0",
"drizzle-orm": "^0.36.0",
"framer-motion": "^11.3.28",
"next": "15.0.2",
"next-auth": "5.0.0-beta.25",
"next-safe-action": "^7.9.2",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-hook-form": "^7.53.0",
"sonner": "^1.5.0",
"uuid": "^11.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@hookform/devtools": "4.3.1",
"@types/bun": "1.1.13",
"@types/node": "22.9.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/uuid": "10.0.0",
"@vitest/ui": "2.1.4",
"drizzle-kit": "0.27.1",
"eslint": "9.14.0",
"eslint-config-next": "15.0.2",
"jiti": "2.4.0",
"postcss": "8.4.47",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-tsconfig-paths": "5.1.0",
"vitest": "2.1.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}