-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "shrinkit",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:web": "bun --bun vinext dev",
"dev:cron": "bun --bun run app/workers/cron.ts",
"dev": "concurrently -k -n \"WEB,CRON\" -c \"bgBlue.bold,bgMagenta.bold\" \"bun run dev:web\" \"bun run dev:cron\"",
"build": "bun --bun vinext build",
"start:web": "bun --bun vinext start",
"start": "concurrently -k -n \"WEB,CRON\" -c \"bgBlue.bold,bgMagenta.bold\" \"bun run start:web\" \"bun run dev:cron\"",
"generate": "bunx --bun prisma generate",
"migrate": "bunx --bun prisma migrate dev",
"reset": "bunx --bun prisma migrate reset"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.3",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitejs/plugin-rsc": "^0.5.25",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"prisma": "^7.8.0",
"react-server-dom-webpack": "^19.2.5",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vinext": "^0.0.47",
"vite": "^8.0.10",
"vite-plugin-babel": "^1.6.0"
},
"dependencies": {
"@better-auth/redis-storage": "^1.6.9",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/manrope": "^5.2.8",
"@fortedigital/nextjs-cache-handler": "^3.2.0",
"@hookform/resolvers": "^5.2.2",
"@mrjasonroy/cache-components-cache-handler": "^16.1.6",
"@orpc/client": "^1.14.1",
"@orpc/server": "^1.14.1",
"@orpc/tanstack-query": "^1.14.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-query": "5.100.9",
"@types/react": "^19.2.14",
"@types/turndown": "^5.0.6",
"better-auth": "^1.6.9",
"bullmq": "^5.76.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cronbake": "^0.4.0",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"lucide-react": "^1.14.0",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"pg": "^8.20.0",
"postcss": "^8.5.14",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-hook-form": "^7.75.0",
"redis": "^5.12.1",
"shadcn": "^4.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"turndown": "^7.2.4",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.13"
}
}