noauthd/package.json

25 lines
635 B
JSON
Raw Permalink Normal View History

2023-12-01 10:15:15 +00:00
{
"name": "noauthd",
"version": "0.1.0",
"description": "noauth daemon - server side of noauth nostr key manager",
"main": "index.js",
"scripts": {
2024-03-15 04:52:34 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "node -r dotenv/config src/index.js dotenv_config_path=.env"
2023-12-01 10:15:15 +00:00
},
"author": "artur@nostr.band",
"license": "MIT",
"dependencies": {
"@nostr-dev-kit/ndk": "^2.4.0",
2023-12-01 10:15:15 +00:00
"@prisma/client": "^5.6.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
2024-03-15 04:52:34 +00:00
"web-push": "^3.6.7",
2023-12-01 10:15:15 +00:00
"websocket-polyfill": "^0.0.3"
},
"devDependencies": {
"prisma": "^5.6.0"
}
}