Initial commit

This commit is contained in:
AG
2025-12-20 16:32:05 +02:00
commit f430c2b757
31 changed files with 4797 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "ag-beats",
"version": "1.0.0",
"description": "A web-based drum machine.",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"build": "vite build",
"postinstall": "npm run build",
"dev": "node server.dev.js"
},
"dependencies": {
"express": "^4.19.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"ws": "^8.18.0",
"uuid": "^9.0.1"
}
}