-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "cvd-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.2.19",
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint .",
"backend": "cd backend && python app.py",
"install:backend": "cd backend && pip install -r requirements.txt"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@neondatabase/serverless": "^1.1.0",
"@prisma/adapter-neon": "^7.8.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"framer-motion": "^12.23.24",
"lucide-react": "^0.536.0",
"mongodb": "^7.2.0",
"next": "16.2.4",
"prisma": "^7.8.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-hook-form": "^7.62.0",
"tailwind-merge": "^3.3.1",
"ws": "^8.20.1",
"zod": "^4.0.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}