-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"name": "timewise",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"bot": "node src/discord-bot/index.js"
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/google-calendar": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@nextui-org/button": "^2.0.38",
"@nextui-org/react": "^2.4.8",
"@nextui-org/system": "^2.2.6",
"@nextui-org/theme": "^2.2.11",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"discord.js": "^14.18.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"framer-motion": "^11.13.1",
"lucide-react": "^0.456.0",
"next": "^15.0.3",
"node-fetch": "^3.3.2",
"openai": "^4.71.1",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-modal": "^3.16.1",
"react-router-dom": "^6.28.0",
"rsuite": "^5.74.2",
"shadcn-ui": "^0.2.3",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.1",
"@types/react-modal": "^3.16.3",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "^13.5.8",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5"
}
}