-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 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
{
"name": "medbrief-ai",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"backend": "cd backend && npm start",
"dev:full": "concurrently \"npm run dev\" \"npm run backend\"",
"install:all": "npm install && cd backend && npm install",
"setup:env": "cd backend && if not exist .env (copy env.example .env && echo Created .env file from env.example. Please edit it with your Groq API key.) else (echo .env file already exists.)"
},
"dependencies": {
"@clerk/clerk-react": "^5.41.1",
"@supabase/supabase-js": "^2.55.0",
"axios": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"multer": "^2.0.2",
"pdfjs-dist": "^5.4.54",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.8.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^5.0.1",
"concurrently": "^9.2.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"vite": "^7.1.3"
}
}