-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"license": "MIT",
"type": "module",
"scripts": {
"dev": "react-router dev",
"build": "pnpm typecheck && cross-env NODE_ENV=production react-router build",
"start": "cross-env NODE_ENV=production PORT=3000 react-router-serve ./build/server/index.js",
"db:gen": "prisma generate",
"db:push": "prisma db push",
"fmt": "prettier -w .",
"typecheck": "react-router typegen && tsc",
"clean": "rm -rf build node_modules pnpm-lock.yaml",
"deploy": "sh deploy.sh"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "6.3.0",
"@react-router/fs-routes": "^7.1.3",
"@react-router/node": "^7.1.5",
"@react-router/serve": "^7.1.5",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.65.1",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"cookie": "^1.0.2",
"cross-env": "^7.0.3",
"isbot": "^5.1.22",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.474.0",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.1",
"react-router": "^7.1.5",
"superjson": "^2.2.2",
"tailwind-merge": "^3.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@react-router/dev": "^7.1.5",
"@tailwindcss/vite": "^4.0.3",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"daisyui": "^5.0.0-beta.6",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.3.0",
"tailwindcss": "^4.0.3",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}