-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 KB
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
75
76
77
{
"name": "chatbot",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "NEXT_IGNORE_TYPE_ERRORS=true next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint"
},
"dependencies": {
"@discordjs/ws": "^2.0.2",
"@fontsource/poppins": "^5.2.6",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.3",
"@google/genai": "^1.12.0",
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"@vibrant/core": "^4.0.0",
"@vibrant/image": "^4.0.0",
"bcryptjs": "^3.0.2",
"biguint-format": "^1.0.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"flake-idgen": "^1.4.0",
"framer-motion": "^12.15.0",
"groq-sdk": "^0.29.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.22",
"luxon": "^3.6.1",
"md5": "^2.3.0",
"mime": "^4.0.7",
"mongodb": "^6.16.0",
"next": "^15.4.6",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-select": "^5.10.2",
"react-simple-typewriter": "^5.0.1",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.3",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^2.0.4",
"ws": "^8.18.3",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.0",
"@types/luxon": "^3.6.2",
"@types/node": "^20.19.9",
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.18",
"bufferutil": "^4.0.9",
"eslint": "^9.0.0",
"eslint-config-next": "15.1.8",
"node-loader": "^2.1.0",
"null-loader": "^4.0.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"webpack-obfuscator": "^3.5.1"
},
"browser": {
"zlib-sync": false,
"discord.js": false
}
}