forked from pinecone-io/chatbot-demo
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "chatbot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_INSEPCT=true & next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chatscope/chat-ui-kit-react": "^1.10.1",
"@langchain/community": "^0.0.30",
"@langchain/core": "^0.1.30",
"@langchain/openai": "^0.0.14",
"@next/font": "13.1.6",
"@supabase/auth-helpers-nextjs": "^0.7.2",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/auth-ui-shared": "^0.1.6",
"@supabase/supabase-js": "^2.24.0",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0-rc.12",
"langchain": "^0.1.20",
"next": "13.1.6",
"node-spider": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"rehype-katex": "^6.0.2",
"remark-math": "^5.1.1",
"timeago": "^1.6.7",
"timeago.js": "^4.0.2",
"turndown": "^7.1.1",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@types/async": "^3.2.18",
"@types/node": "^18.16.11",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/url-parse": "^1.4.8",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"typescript": "4.9.5"
}
}