-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
78 lines (78 loc) · 2.4 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
71
72
73
74
75
76
77
78
{
"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=3001 react-router-serve ./build/server/index.js",
"db:push": "drizzle-kit push --config app/.server/db/config.ts",
"db:gen": "drizzle-kit generate --config app/.server/db/config.ts",
"db:task": "tsx --env-file=.env app/.server/db/task.ts",
"fmt": "prettier -w .",
"typecheck": "react-router typegen && tsc",
"clean": "rm -rf node_modules pnpm-lock.yaml build",
"deploy": "sh deploy.sh"
},
"dependencies": {
"@fontsource/merriweather": "^5.1.1",
"@hookform/resolvers": "^3.10.0",
"@nextui-org/react": "^2.6.11",
"@nextui-org/theme": "^2.4.5",
"@react-router/fs-routes": "^7.1.1",
"@react-router/node": "^7.1.1",
"@react-router/serve": "^7.1.1",
"@tanstack/react-query": "^5.63.0",
"@tanstack/react-query-devtools": "^5.63.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"boring-avatars": "^1.11.2",
"chance": "^1.1.12",
"cookie": "^1.0.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.38.3",
"framer-motion": "^11.16.1",
"isbot": "^5.1.21",
"jotai": "^2.11.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.469.0",
"next-themes": "^0.4.4",
"nodemailer": "^6.9.16",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-activity-calendar": "^2.7.6",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.1",
"react-infinite-scroll-hook": "^5.0.1",
"react-router": "^7.1.1",
"superjson": "^2.2.2",
"tailwind-merge": "^2.6.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@react-router/dev": "^7.1.1",
"@types/chance": "^1.1.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}