-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "stellar-notify",
"version": "0.1.0",
"description": "Open-source webhook & notification engine for Stellar blockchain events",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"worker": "node src/workers/streamWorker.js",
"migrate": "node src/db/migrate.js",
"test": "jest --coverage",
"lint": "eslint src/"
},
"keywords": [
"stellar",
"blockchain",
"webhook",
"notifications",
"events",
"horizon",
"soroban"
],
"author": "stellar-notify contributors",
"license": "MIT",
"dependencies": {
"@stellar/stellar-sdk": "^12.3.0",
"axios": "^1.7.2",
"better-sqlite3": "^9.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"p-queue": "^8.0.1",
"uuid": "^10.0.0",
"winston": "^3.13.0",
"ws": "^8.17.1"
},
"devDependencies": {
"eslint": "^9.5.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}