-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.45 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
81
82
83
84
{
"name": "typetest",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"lint": "next lint",
"start": "cross-env NODE_ENV=production node ./dist/server/server.js",
"migrate": "prisma migrate dev",
"gen": "prisma generate",
"studio": "prisma studio",
"seed": "prisma db seed",
"dbpull": "prisma db pull"
},
"dependencies": {
"@auth/prisma-adapter": "^2.8.0",
"@hookform/resolvers": "^4.1.3",
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^6.4.1",
"@prisma/client": "6.4.1",
"@prisma/extension-accelerate": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.6",
"@socket.io/redis-adapter": "^8.3.0",
"@tabler/icons-react": "^3.28.1",
"@types/jsonwebtoken": "^9.0.9",
"axios": "^1.8.2",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"framer-motion": "^11.18.1",
"input-otp": "^1.4.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.472.0",
"motion": "^11.18.1",
"next": "^15.2.3",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.4",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.0",
"redis": "^4.7.0",
"resend": "^4.1.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"ws": "^8.18.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ws": "^8.18.0",
"bufferutil": "^4.0.9",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"prisma": "^6.4.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.3",
"typescript": "^5"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}