-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.17 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.17 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
85
86
87
88
89
90
91
92
93
{
"name": "datachat",
"version": "1.0.0",
"description": "AI-powered data analytics with natural language queries",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"clean": "rm -rf .next node_modules",
"clean:win": "rmdir /s /q .next && rmdir /s /q node_modules",
"setup": "pnpm install && echo 'Run database setup scripts from scripts/ folder'",
"prod": "pnpm build && pnpm start",
"docker:build": "docker build -t datachat:latest .",
"docker:run": "docker run -d -p 3000:3000 --env-file .env.local --name datachat datachat:latest",
"docker:stop": "docker stop datachat && docker rm datachat",
"pm2:start": "pnpm build && pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop datachat",
"pm2:restart": "pm2 restart datachat",
"pm2:logs": "pm2 logs datachat"
},
"dependencies": {
"@ai-sdk/groq": "latest",
"@hookform/resolvers": "^3.10.0",
"@neondatabase/serverless": "latest",
"@radix-ui/react-accordion": "latest",
"@radix-ui/react-alert-dialog": "latest",
"@radix-ui/react-aspect-ratio": "latest",
"@radix-ui/react-avatar": "latest",
"@radix-ui/react-checkbox": "latest",
"@radix-ui/react-collapsible": "latest",
"@radix-ui/react-context-menu": "latest",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-dropdown-menu": "latest",
"@radix-ui/react-hover-card": "latest",
"@radix-ui/react-label": "latest",
"@radix-ui/react-menubar": "latest",
"@radix-ui/react-navigation-menu": "latest",
"@radix-ui/react-popover": "latest",
"@radix-ui/react-progress": "latest",
"@radix-ui/react-radio-group": "latest",
"@radix-ui/react-scroll-area": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-separator": "latest",
"@radix-ui/react-slider": "latest",
"@radix-ui/react-slot": "latest",
"@radix-ui/react-switch": "latest",
"@radix-ui/react-tabs": "latest",
"@radix-ui/react-toast": "latest",
"@radix-ui/react-toggle": "latest",
"@radix-ui/react-toggle-group": "latest",
"@radix-ui/react-tooltip": "latest",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"ai": "latest",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "latest",
"date-fns": "4.1.0",
"embla-carousel-react": "latest",
"geist": "^1.3.1",
"input-otp": "latest",
"lucide-react": "^0.454.0",
"nanoid": "latest",
"next": "15.2.4",
"next-themes": "latest",
"papaparse": "latest",
"react": "^19",
"react-day-picker": "latest",
"react-dom": "^19",
"react-hook-form": "latest",
"react-resizable-panels": "latest",
"recharts": "latest",
"sonner": "latest",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"vaul": "latest",
"zod": "3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.9",
"@types/node": "^22",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8.5",
"tailwindcss": "^4.1.9",
"tw-animate-css": "1.3.3",
"typescript": "^5"
}
}