discord-clone/package.json

70 lines
2.0 KiB
JSON
Raw Normal View History

2023-09-04 19:53:50 -07:00
{
"name": "discord-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2023-10-07 12:43:16 -07:00
"@clerk/nextjs": "^4.25.3",
2023-10-26 20:24:09 -07:00
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
2023-10-08 02:33:09 -07:00
"@hookform/resolvers": "^3.3.1",
"@livekit/components-react": "^1.4.0",
"@livekit/components-styles": "^1.0.7",
2023-10-07 23:17:51 -07:00
"@prisma/client": "^5.4.1",
"@radix-ui/react-avatar": "^1.0.4",
2023-10-08 02:33:09 -07:00
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
2023-10-08 02:33:09 -07:00
"@radix-ui/react-label": "^2.0.2",
2023-10-26 20:24:09 -07:00
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
2023-10-15 16:11:10 -07:00
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
2023-10-07 11:27:43 -07:00
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
2023-10-27 22:44:45 -07:00
"@tanstack/react-query": "^5.0.5",
2023-09-04 19:53:50 -07:00
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@uploadthing/react": "^5.6.2",
2023-09-04 19:53:50 -07:00
"autoprefixer": "10.4.15",
2023-10-08 18:17:11 -07:00
"axios": "^1.5.1",
2023-09-05 23:47:24 -07:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
2023-10-15 20:29:08 -07:00
"cmdk": "^0.2.0",
2023-10-28 00:30:44 -07:00
"date-fns": "^2.30.0",
2023-10-26 20:24:09 -07:00
"emoji-mart": "^5.5.2",
2023-09-04 19:53:50 -07:00
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"livekit-client": "^1.14.4",
"livekit-server-sdk": "^1.2.7",
2023-09-05 23:47:24 -07:00
"lucide-react": "^0.274.0",
"next": "^13.5.4",
"next-themes": "^0.2.1",
2023-10-26 20:24:09 -07:00
"postcss": "^8.4.31",
"query-string": "^8.1.0",
2023-09-04 19:53:50 -07:00
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
2023-10-08 02:33:09 -07:00
"react-hook-form": "^7.47.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
2023-09-05 23:47:24 -07:00
"tailwind-merge": "^1.14.0",
2023-09-04 19:53:50 -07:00
"tailwindcss": "3.3.3",
2023-09-05 23:47:24 -07:00
"tailwindcss-animate": "^1.0.7",
2023-10-08 02:33:09 -07:00
"typescript": "5.2.2",
"uploadthing": "^5.7.1",
2023-10-08 18:17:11 -07:00
"uuid": "^9.0.1",
2023-10-10 21:30:19 -07:00
"zod": "^3.22.4",
"zustand": "^4.4.3"
2023-10-07 23:17:51 -07:00
},
"devDependencies": {
2023-10-08 18:17:11 -07:00
"@types/uuid": "^9.0.5",
2023-10-07 23:17:51 -07:00
"prisma": "^5.4.1"
2023-09-04 19:53:50 -07:00
}
}