-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 918 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "nostr-profile-api",
"version": "1.0.0",
"description": "API service that connects to Nostr relays and provides Lightning address lookups",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"lint": "eslint .",
"generate-key": "node -e \"console.log(require('crypto').randomBytes(32).toString('hex'))\""
},
"keywords": [
"nostr",
"lightning",
"api",
"npub"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"nostr-tools": "^1.17.0",
"node-cache": "^5.1.2",
"winston": "^3.11.0",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"ws": "^8.14.2",
"express-rate-limit": "^7.1.5",
"express-slow-down": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
}
}