-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"scripts": {
"dev": "DATABASE_URL=postgresql://classifai:classifai_password@localhost:5433/classifai?schema=public next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:seed": "prisma db seed"
},
"packageManager": "npm@10.8.2",
"dependencies": {
"prisma": "6.17.1",
"@prisma/client": "6.17.1",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.5",
"autoprefixer": "^10.4.21",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"lucide-react": "^0.546.0",
"next": "^15.5.6",
"next-auth": "5.0.0-beta.29",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.3.0",
"tailwindcss": "^4.1.14",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.14",
"@types/bcryptjs": "^3.0.0",
"@types/node": "24.8.1",
"@types/react": "19.2.2",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.6",
"tailwind-merge": "^3.3.1",
"typescript": "5.9.3"
}
}