forked from dotneet/smart-chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
{
"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": "^2.18.0",
"@tanstack/react-query": "^4.35.3",
"@trpc/client": "^10.38.1",
"@trpc/next": "^10.38.1",
"@trpc/react-query": "^10.38.1",
"@trpc/server": "^10.38.1",
"chalk": "^5.2.0",
"classnames": "^2.3.2",
"eventsource-parser": "^1.0.0",
"i18next": "^22.4.15",
"langchain": "^0.0.72",
"mongodb": "^5.5.0",
"next": "13.3.1",
"next-auth": "^4.22.1",
"next-i18next": "^13.2.2",
"openai": "^3.2.1",
"pino": "^8.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.2.2",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^4.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sass": "^1.62.1",
"tiktoken": "^1.0.10",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@mozilla/readability": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jsdom": "^21.1.1",
"@types/node": "20.4.2",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.1",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.14",
"endent": "^2.1.0",
"eslint": "8.40.0",
"eslint-config-next": "13.3.1",
"gpt-3-encoder": "^1.1.4",
"jsdom": "^21.1.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.2",
"typescript": "4.9.5",
"vitest": "^0.30.1"
}
}