-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "celo-gpt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@supabase/supabase-js": "^2.15.0",
"@types/estree": "^1.0.0",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"axios": "^1.3.5",
"common-tags": "^1.8.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eventsource": "^2.0.2",
"eventsource-parser": "^1.0.0",
"gpt3-tokenizer": "^1.1.4",
"he": "^1.2.0",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.3.0",
"mdast-util-mdx": "^2.0.1",
"mdast-util-to-markdown": "^1.5.0",
"micromark-extension-mdxjs": "^1.0.0",
"next": "13.3.0",
"next-connect": "^1.0.0-next.3",
"nextjs-openai": "^4.0.0",
"node-estree": "^3.1.0",
"openai": "^3.2.1",
"openai-streams": "^5.0.0",
"postcss": "8.4.21",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.6",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"sse": "^0.0.8",
"sse-client": "^0.0.10",
"sse.js": "^0.6.1",
"tailwindcss": "3.3.1",
"typescript": "5.0.4",
"unist-builder": "^3.0.1",
"unist-util-filter": "^4.0.1",
"yield-stream": "^3.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/common-tags": "^1.8.1",
"@types/cors": "^2.8.13",
"@types/eventsource": "^1.1.11",
"@types/he": "^1.2.0",
"@types/prismjs": "^1.26.0",
"@types/react-syntax-highlighter": "^15.5.6",
"supabase": "^1.49.4",
"tailwind-scrollbar": "^3.0.0"
}
}