-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "owat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=4000 next dev",
"build": "next build",
"build:vercel": "bun db:migrate && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "bun run lib/db/migrate.ts",
"db:reset": "bun run lib/db/reset.ts",
"prepare": "husky",
"email:dev": "email dev"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@logtail/pino": "^0.4.22",
"@neondatabase/serverless": "^0.9.3",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/themes": "^3.0.5",
"@react-email/components": "0.0.21",
"drizzle-orm": "^0.31.0",
"http-status-codes": "^2.3.0",
"jotai": "^2.8.1",
"next": "14.2.10",
"next-auth": "beta",
"normalize-url": "^8.0.1",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0",
"react": "^18",
"react-dom": "^18",
"react-email": "2.1.5",
"react-hook-form": "^7.51.5",
"resend": "^3.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.1",
"husky": "^9.0.11",
"typescript": "^5"
}
}