- Server: NIP-98 nostr auth (session cookies), BTC Map sync, claim/link/field routes, physical-presence checks via geolocation distance. 31 tests passing. - Frontend: Leaflet map, team pick, claim/link UI, Archipelago identity bridge vendored (nostr-provider.js) for dashboard launch support. - Verified end-to-end against the live BTC Map API (167 real Madeira places) and via genuine NIP-98-signed HTTP requests against the built app.
31 lines
716 B
JSON
31 lines
716 B
JSON
{
|
|
"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": {
|
|
"@fastify/cookie": "^11.0.2",
|
|
"@fastify/cors": "^11.3.0",
|
|
"@fastify/static": "^8.1.1",
|
|
"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"
|
|
}
|
|
}
|