forked from mayooear/gpt4-pdf-chatbot-langchain
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.97 KB
/
package.json
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
{
"name": "gpt4-langchain-pdf-chatbot",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "Mayooear<twitter:@mayowaoshin> | Jethro Reeve <@CampaignLab>",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
"ingest-text": "tsx -r dotenv/config scripts/ingest-txt.ts",
"ingest-pdf": "tsx -r dotenv/config scripts/ingest-pdf.ts"
},
"engines": {
"node": ">=18.15.0",
"npm": "9.8.1"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@microsoft/fetch-event-source": "^2.0.1",
"@pinecone-database/pinecone": "0.0.14",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-toast": "^1.1.5",
"@swc/core": "^1.3.100",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"autoprefixer": "^10.4.13",
"axios": "^1.6.3",
"clsx": "^1.2.1",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"django-express": "^1.0.0",
"dotenv": "^16.0.3",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"langchain": "^0.0.125",
"lucide-react": "^0.125.0",
"next": "^13.2.3",
"pdf-lib": "^1.17.1",
"pdf-parse": "1.1.1",
"pdfjs": "^2.5.3",
"pdfjs-dist": "^4.0.379",
"pg": "^8.11.3",
"postcss": "^8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"update": "^0.7.4"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"prettier": "^2.8.4"
},
"keywords": [
"starter",
"gpt4",
"pinecone",
"typescript",
"nextjs",
"langchain",
"law",
"legal",
"pdf",
"openai"
]
}