-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
{
"name": "frost-hack",
"version": "0.1.0",
"private": true,
"exports": {
"@db/client": "./db/index.ts",
"@lib/auth": "./apps/lib/auth.ts"
},
"scripts": {
"corner": "concurrently \"node server.js\" \"next dev\" \"node aiBackend/src/index.js\"",
"dev": "next dev",
"devsocket": "node server.js",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"type": "module",
"dependencies": {
"@excalidraw/excalidraw": "^0.17.5",
"@fullcalendar/daygrid": "^6.1.11",
"@fullcalendar/interaction": "^6.1.11",
"@fullcalendar/react": "^6.1.11",
"@fullcalendar/resource-timegrid": "^6.1.11",
"@fullcalendar/timegrid": "^6.1.11",
"@hookform/resolvers": "^3.3.4",
"@nivo/bar": "^0.85.1",
"@nivo/pie": "^0.85.1",
"@prisma/client": "^5.12.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@tabler/icons-react": "^3.2.0",
"@typebot.io/js": "^0.2.73",
"@typebot.io/nextjs": "^0.2.73",
"@types/bcrypt": "^5.0.2",
"apexcharts": "^3.48.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"framer-motion": "^11.0.28",
"lucide-react": "^0.368.0",
"next": "14.2.1",
"next-auth": "^4.24.7",
"prisma": "^5.12.1",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-big-calendar": "^1.11.3",
"react-chat-elements": "^12.0.14",
"react-day-picker": "^8.10.0",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.51.3",
"react-icons": "^5.0.1",
"react-quill": "^2.0.0",
"react-social-icons": "^6.16.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/draft-js": "^0.11.18",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-big-calendar": "^1.8.9",
"@types/react-dom": "^18",
"@types/react-google-recaptcha": "^2.1.9",
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}