forked from dotneet/smart-chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "smart-chatbot-ui",
"version": "0.1.1",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@tabler/icons-react": "^3.3.0",
"@tanstack/react-query": "^4.35.3",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"eventsource-parser": "^1.1.2",
"i18next": "^23.11.4",
"langchain": "^0.1.37",
"mongodb": "^6.6.1",
"next": "14.2.3",
"next-auth": "^4.24.7",
"next-i18next": "^15.3.0",
"openai": "^4.46.1",
"pino": "^9.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.1.1",
"react-markdown": "^9.0.1",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sass": "^1.77.1",
"tiktoken": "^1.0.15",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@mozilla/readability": "^0.5.0",
"@tailwindcss/typography": "^0.5.13",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jsdom": "^21.1.6",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^9.0.8",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.19",
"endent": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"gpt-3-encoder": "^1.1.4",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5",
"vitest": "^0.30.1"
}
}