init commit. working to connect express server to react with socket io

This commit is contained in:
2022-06-04 12:19:36 -05:00
commit 14e4b53d54
16 changed files with 4009 additions and 0 deletions

21
client/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "client",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"vite": "^2.9.9"
}
}