forked from hendrayoga/hackergpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "hacker-gpt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@babel/traverse": "^7.23.9",
"@dqbd/tiktoken": "^1.0.7",
"@headlessui/react": "^1.7.18",
"@tabler/icons-react": "^2.47.0",
"@vercel/analytics": "^1.1.2",
"@vercel/kv": "^0.2.4",
"cheerio": "^1.0.0-rc.12",
"eventsource-parser": "^1.1.1",
"firebase": "^10.7.2",
"i18next": "^22.5.1",
"langchain": "^0.1.20",
"next": "^14.1.0",
"next-i18next": "^13.3.0",
"openai": "^4.28.0",
"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": "^3.39.3",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^6.0.0",
"remark-gfm": "^3.0.1",
"remark-math": "^6.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@mozilla/readability": "^0.5.0",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jsdom": "^21.1.6",
"@types/node": "20.11.14",
"@types/react": "18.2.56",
"@types/react-dom": "18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.17",
"endent": "^2.1.0",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"gpt-3-encoder": "^1.1.4",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
}
}