forked from run-llama/chat-llamaindex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.62 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "chat-llamaindex",
"private": false,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:check": "prettier --check --ignore-path .gitignore app",
"format": "prettier --write --ignore-path .gitignore app",
"prepare": "husky install",
"generate": "node ./scripts/generate.mjs"
},
"dependencies": {
"@fortaine/fetch-event-source": "^3.0.6",
"@google/generative-ai": "^0.1.3",
"@radix-ui/react-alert-dialog": "1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.110.0",
"@vercel/analytics": "^1.2.2",
"@vercel/blob": "^0.14.1",
"@vercel/kv": "^0.2.4",
"autoprefixer": "10.4.15",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"emoji-picker-react": "^4.9.2",
"encoding": "^0.1.13",
"llamaindex": "^0.2.8",
"lucide-react": "^0.277.0",
"mermaid": "^10.9.0",
"nanoid": "^5.0.7",
"next": "^14.2.1",
"next-themes": "^0.2.1",
"pdf-parse": "^1.1.1",
"postcss": "8.4.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-router-dom": "^6.22.3",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"rehype-parse": "^8.0.5",
"rehype-remark": "^9.1.2",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-stringify": "^10.0.3",
"sass": "^1.75.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"unified": "^10.1.2",
"unist-util-remove": "^4.0.0",
"use-debounce": "^9.0.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"@types/react-katex": "^3.0.4",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5",
"typescript": "5.1.6"
}
}