anydrop/server/package.json
ordinarthur 9d6e4da4ae
Some checks failed
Build & Deploy / build-and-deploy (push) Failing after 8s
feat: initial commit with full deployment setup
Includes React PWA frontend, WebSocket signaling server, shared types,
K8s manifests, Gitea CI/CD workflow, nginx config, and Dockerfiles.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-14 10:30:45 +02:00

24 lines
471 B
JSON

{
"name": "@anydrop/server",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anydrop/shared": "*",
"nanoid": "^5.1.5",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/ws": "^8.18.1",
"tsx": "^4.19.4"
}
}