Initial WatchLink scaffold
Some checks failed
Build / build (push) Failing after 1m29s
Release Dry Run / release-dry-run (push) Successful in 1m24s
Template Compliance / compliance (push) Failing after 5s

This commit is contained in:
MrSphay
2026-05-15 03:11:41 +02:00
commit d3e84feedd
51 changed files with 2215 additions and 0 deletions

47
package.json Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "watchlink",
"version": "0.1.0",
"private": true,
"description": "Persistent shared watch rooms with accounts, friends, roles, and admin controls.",
"scripts": {
"dev": "node server.js",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"build": "prisma generate && next build",
"start": "NODE_ENV=production node server.js",
"audit": "npm audit --omit=dev --audit-level=high",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"release:check": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "^6.1.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "^15.1.0",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"prisma": "^6.1.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.0.0"
}
}