-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "chat-with-pdf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export NODE_OPTIONS='--max-old-space-size=8192' && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate --dialect=postgresql --schema=src/lib/db/schema.ts --out=./drizzle",
"db:migrate": "tsx ./src/migrate.ts"
},
"dependencies": {
"@ai-sdk/deepseek": "^0.2.2",
"@ai-sdk/openai": "^1.1.15",
"@ai-sdk/provider": "^1.1.0",
"@aws-sdk/client-s3": "^3.675.0",
"@clerk/nextjs": "^5.7.5",
"@emotion/styled": "^11.14.0",
"@google-cloud/text-to-speech": "^6.0.1",
"@huggingface/transformers": "^3.3.3",
"@langchain/community": "^0.3.7",
"@langchain/core": "^0.3.13",
"@neondatabase/serverless": "^0.10.1",
"@pinecone-database/doc-splitter": "^0.0.1",
"@pinecone-database/pinecone": "^3.0.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.2.0",
"@react-pdf/renderer": "^4.3.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.59.15",
"@tensorflow/tfjs-node": "^4.22.0",
"@types/md5": "^2.3.5",
"@uiw/react-markdown-preview": "^5.1.3",
"ai": "^4.1.50",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.2",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.7.2",
"fs": "^0.0.1-security",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"langchain": "^0.3.2",
"lucide-react": "^0.453.0",
"marked": "^15.0.7",
"md5": "^2.3.0",
"next": "14.2.15",
"next-themes": "^0.4.4",
"onnxruntime-node": "^1.20.1",
"openai-edge": "^1.2.2",
"pdf-parse": "^1.1.1",
"pg": "^8.14.1",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.10",
"react-hot-toast": "^2.4.1",
"react-markdown": "^10.1.0",
"react-pdf": "^9.2.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/pdf-parse": "^1.1.5",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.26.2",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.1",
"typescript": "^5"
}
}