-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.24 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tedx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"test": "jest",
"build": "next build",
"start": "next start",
"lint": "next lint",
"email": "email dev",
"migrate-latest": "export $(grep -v '^#' .env | xargs) && LATEST_MIGRATION=$(find prisma/migrations/*/ -type d -name '[0-9]*_*' | sort -r | head -n 1) && turso db shell $TURSO_DB_NAME < ${LATEST_MIGRATION}migration.sql",
"migrate-latest-w": "wsl sh -c \"export $(grep -v '^#' .env.local | xargs) && LATEST_MIGRATION=$(find prisma/migrations/*/ -type d -name '[0-9]*_*' | sort -r | head -n 1) && turso db shell $TURSO_DB_NAME < '${LATEST_MIGRATION}migration.sql'\""
},
"dependencies": {
"@edgestore/react": "^0.2.2",
"@edgestore/server": "^0.2.2",
"@gsap/react": "^2.1.1",
"@hookform/resolvers": "^3.9.0",
"@libsql/client": "^0.8.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-libsql": "^5.19.1",
"@prisma/client": "^5.19.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-email/components": "^0.0.25",
"@react-email/tailwind": "0.1.0",
"@react-three/drei": "^9.114.0",
"@studio-freight/lenis": "^1.0.42",
"@tabler/icons-react": "^3.21.0",
"@tanstack/react-query": "^5.56.2",
"@types/canvas-confetti": "^1.6.4",
"@types/ioredis": "^4.28.10",
"@types/lodash.debounce": "^4.0.9",
"@uploadthing/react": "^7.0.2",
"@yudiel/react-qr-scanner": "^2.0.8",
"axios": "^1.7.7",
"bullmq": "^5.13.0",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto": "^1.0.1",
"framer-motion": "^11.13.5",
"gsap": "^3.12.5",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"ldrs": "^1.0.2",
"lenis": "^1.1.17",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.441.0",
"next": "14.2.6",
"next-auth": "^4.24.7",
"nodemailer": "^6.9.15",
"otp-generator": "^4.0.1",
"razorpay": "^2.9.4",
"react": "^18.3.1",
"react-dom": "^18",
"react-dropzone": "^14.2.10",
"react-email": "^3.0.1",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"resend": "^4.0.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"three": "^0.169.0",
"uploadthing": "^7.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/canvas-confetti": "^1.6.4",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/otp-generator": "^4.0.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-qr-reader": "^2.1.7",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"postcss": "^8",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}