-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "my-react-router-app",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "pnpm dotenv -- node server.js",
"db:generate": "dotenv -- drizzle-kit generate",
"db:migrate": "dotenv -- drizzle-kit migrate",
"start": "node server.js",
"typecheck": "react-router typegen && tsc -b"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-router/express": "^7.6.1",
"@react-router/node": "^7.5.3",
"@react-router/serve": "^7.5.3",
"better-auth": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compression": "^1.8.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"express": "^5.1.0",
"isbot": "^5.1.28",
"lucide-react": "^0.511.0",
"morgan": "^1.10.0",
"postgres": "^3.4.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.4",
"react-router": "^7.5.3",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@react-router/dev": "^7.5.3",
"@tailwindcss/vite": "^4.1.4",
"@types/compression": "^1.8.0",
"@types/express": "^5.0.2",
"@types/express-serve-static-core": "^5.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20",
"@types/pg": "^8.15.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "^0.31.1",
"tailwindcss": "^4.1.4",
"tsx": "^4.19.4",
"tw-animate-css": "^1.3.0",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-tsconfig-paths": "^5.1.4"
}
}