This repository was archived by the owner on Dec 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.97 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.97 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
{
"name": "analysis-assistant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx concurrently \"npm run client-dev\" \"npm run server-dev\"",
"build": "next build",
"start": "npx concurrently \"npm run client-start\" \"npm run server-start\"",
"lint": "next lint",
"kill-port": "kill-port 8000",
"client-dev": "cross-env NODE_OPTIONS='--no-warnings' node node_modules/next/dist/bin/next dev",
"client-start": "cross-env NODE_OPTIONS='--no-warnings' node node_modules/next/dist/bin/next start",
"server-dev": "npm run kill-port && cd py-backend && source venv/bin/activate && uvicorn app.app:app --host 0.0.0.0 --port 8000",
"server-start": "cd py-backend && source venv/bin/activate && uvicorn app.app:app --host 0.0.0.0 --port 8000"
},
"engines": {
"node": ">=16.0.0 <24.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.29.0",
"@aws-sdk/client-bedrock-runtime": "^3.679.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.3.0",
"@radix-ui/react-dialog": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"html2canvas": "^1.4.1",
"lucide-react": "^0.452.0",
"next": "^15.3.2",
"next-themes": "^0.3.0",
"pdfjs-dist": "^4.7.76",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"recharts": "^2.13.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "15.0.0",
"kill-port": "^2.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}