2026-08-05 13:14:03 +00:00
|
|
|
{
|
|
|
|
|
"name": "regress-server",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "tsx watch src/index.ts",
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-08-05 17:32:54 +00:00
|
|
|
"@fastify/compress": "^9.1.1",
|
2026-08-05 13:14:03 +00:00
|
|
|
"@fastify/cookie": "^11.0.2",
|
|
|
|
|
"@fastify/cors": "^11.3.0",
|
2026-08-05 17:32:54 +00:00
|
|
|
"@fastify/static": "^10.1.2",
|
2026-08-05 13:14:03 +00:00
|
|
|
"better-sqlite3": "^12.2.0",
|
|
|
|
|
"fastify": "^5.4.0",
|
|
|
|
|
"fastify-plugin": "^5.1.0",
|
|
|
|
|
"nostr-tools": "^2.15.0",
|
|
|
|
|
"zod": "^3.25.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
|
|
|
"@types/node": "^22.15.0",
|
|
|
|
|
"tsx": "^4.20.0",
|
|
|
|
|
"typescript": "^5.9.0",
|
|
|
|
|
"vitest": "^3.2.0"
|
|
|
|
|
}
|
|
|
|
|
}
|