-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.13 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "codearena",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"docker:build": "bash docker/scripts/build-images.sh"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@socket.io/redis-adapter": "^8.3.0",
"axios": "^1.14.0",
"bcryptjs": "^3.0.3",
"bullmq": "^5.70.1",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dockerode": "^4.0.9",
"firebase": "^12.9.0",
"framer-motion": "^12.35.2",
"groq-sdk": "^0.37.0",
"gsap": "^3.14.2",
"html-to-image": "^1.11.13",
"jsonwebtoken": "^9.0.3",
"katex": "^0.16.33",
"lenis": "^1.3.18",
"lucide-react": "^0.564.0",
"mongoose": "^8.13.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"prom-client": "^15.1.3",
"prop-types": "^15.8.1",
"radix-ui": "^1.4.3",
"rate-limiter-flexible": "^11.0.0",
"react": "19.2.3",
"react-activity-calendar": "^3.1.1",
"react-confetti": "^6.4.0",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.2",
"react-icons": "^5.6.0",
"react-loader-spinner": "^8.0.2",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.6.5",
"react-tooltip": "^5.30.0",
"react-use": "^17.6.0",
"recharts": "^3.8.1",
"redis": "^5.11.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.7",
"sweetalert2": "^11.26.21",
"swr": "^2.4.0",
"tailwind-merge": "^3.5.0",
"tar-stream": "^3.1.7",
"three": "^0.183.2",
"web-push": "^3.6.7",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.3",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^4.1.1",
"eslint-config-next": "^0.2.4",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lightningcss": "^1.32.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,mjs}": "prettier --write"
}
}