32 lines
735 B
JSON
32 lines
735 B
JSON
{
|
|||
|
|
"name": "podpuddle-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": {
|
||
|
|
"@fastify/cookie": "^11.0.2",
|
||
|
|
"@fastify/static": "^8.1.1",
|
||
|
|
"better-sqlite3": "^12.2.0",
|
||
|
|
"fastify": "^5.4.0",
|
||
|
|
"fastify-plugin": "^5.1.0",
|
||
|
|
"nostr-tools": "^2.15.0",
|
||
|
|
"ws": "^8.18.0",
|
||
|
|
"zod": "^3.25.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/better-sqlite3": "^7.6.13",
|
||
|
|
"@types/node": "^22.15.0",
|
||
|
|
"@types/ws": "^8.18.0",
|
||
|
|
"tsx": "^4.20.0",
|
||
|
|
"typescript": "^5.9.0",
|
||
|
|
"vitest": "^3.2.0"
|
||
|
|
}
|
||
|
|
}
|