initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-11-24 00:34:30 +01:00
commit 20b2a9ad9c
Se han modificado 25 ficheros con 2819 adiciones y 0 borrados

29
package.json Archivo normal
Ver fichero

@@ -0,0 +1,29 @@
{
"name": "p2p-media-next",
"version": "1.0.0",
"description": "Plataforma de streaming P2P con WebRTC, Socket.IO y HLS.js",
"author": "ale",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build --turbopack",
"start": "NODE_ENV=production node server.js",
"lint": "eslint"
},
"dependencies": {
"hls.js": "^1.6.13",
"next": "15.5.5",
"react": "19.1.0",
"react-dom": "19.1.0",
"simple-peer": "^9.11.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.5.5",
"tailwindcss": "^4"
}
}