Added first draft of channel page

This commit is contained in:
2022-09-29 15:05:46 +02:00
parent db1bee79ac
commit 2433d0c225
29 changed files with 1851 additions and 9 deletions

30
client/package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --outDir ../dist",
"preview": "vite preview"
},
"dependencies": {
"@heroicons/react": "^2.0.11",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.1",
"tailwind-scrollbar": "^2.0.1"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}