Files
SatsFaucet/backend/package.json
2026-03-01 01:24:51 +01:00

37 lines
910 B
JSON

{
"name": "lnfaucet-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && cp src/db/*.sql dist/db/",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"migrate": "tsx src/db/migrate.ts"
},
"dependencies": {
"better-sqlite3": "^11.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"nostr-tools": "^2.4.4",
"pg": "^8.13.1",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}