forked from mckaywrigley/chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "ai-chatbot-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3007",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@tabler/icons-react": "^2.20.0",
"@tanstack/react-query": "^4.29.7",
"eventsource-parser": "^1.0.0",
"i18next": "^22.5.0",
"next": "13.4.3",
"next-i18next": "^13.2.2",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-query": "^4.0.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^4.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.0"
},
"resolutions": {
"@types/react": "17.0.40"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jsdom": "^21.1.1",
"@types/node": "20.2.3",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"gpt-3-encoder": "^1.1.4",
"jsdom": "^22.0.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.15.0"
}
}