-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "my-next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"db:generate": "cd backend && npx prisma generate",
"db:migrate": "cd backend && npx prisma migrate dev"
},
"dependencies": {
"@prisma/client": "^6.16.3",
"@radix-ui/react-slot": "^1.2.3",
"@types/axios": "^0.9.36",
"@xyflow/react": "^12.8.6",
"axios": "^1.12.2",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.23.22",
"lucide-react": "^0.545.0",
"next": "15.5.4",
"openai": "^6.3.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0",
"react-resizable-panels": "^3.0.6",
"reactflow": "^11.11.4",
"recharts": "^3.2.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"prisma": "^6.16.3",
"tailwindcss": "^4",
"typescript": "^5.9.3"
}
}