-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.62 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
{
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "PORT=3000 remix-serve ./build/server/index.js",
"db:gen": "prisma generate",
"db:push": "prisma db push",
"fmt": "prettier -w .",
"clean": "rm -rf build node_modules pnpm-lock.yaml",
"deploy": "sh deploy.sh"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "5.20.0",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@tanstack/react-query": "^5.59.11",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"cookie": "^1.0.1",
"isbot": "^5.1.17",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.451.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"superjson": "^2.2.1",
"tailwind-merge": "^2.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@remix-run/dev": "^2.13.1",
"@tanstack/react-query-devtools": "^5.59.9",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.13",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}