37 lines
773 B
JSON
37 lines
773 B
JSON
{
|
|
"name": "p2p-poll-server",
|
|
"version": "1.0.0",
|
|
"description": "Backend server for P2P polling app with Yjs and WebRTC signaling",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"keywords": [
|
|
"yjs",
|
|
"websocket",
|
|
"webrtc",
|
|
"p2p"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"ws": "^8.14.2",
|
|
"y-websocket": "^1.5.0",
|
|
"yjs": "^13.6.8",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.15",
|
|
"@types/express": "^4.17.20",
|
|
"@types/node": "^20.9.0",
|
|
"@types/ws": "^8.5.8",
|
|
"tsx": "^4.6.2",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|