Files
chad/server/package.json

50 lines
1.3 KiB
JSON

{
"name": "server",
"type": "module",
"packageManager": "yarn@4.10.3",
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"dev": "nodemon",
"start": "ts-node --transpile-only server.ts",
"db:deploy": "npx prisma migrate deploy && npx prisma generate"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/multipart": "^10.0.0",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/adapter-better-sqlite3": "^7.7.0",
"@prisma/client": "7",
"@scalar/fastify-api-reference": "^1.52.3",
"bcrypt": "^6.0.0",
"consola": "^3.4.2",
"dotenv": "^17.2.3",
"fastify": "^5.6.1",
"fastify-plugin": "^5.1.0",
"lucia": "^3.2.2",
"mediasoup": "^3.19.21",
"prisma": "7",
"socket.io": "^4.8.1",
"typebox": "^1.1.27",
"uuid": "^13.0.0",
"ws": "^8.18.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@types/bcrypt": "^6",
"@types/better-sqlite3": "^7.6.13",
"@types/ws": "^8",
"eslint": "^9.36.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}