-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 983 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
{
"name": "tether-watcher",
"version": "2.0.0",
"description": "A blockchain service that watches for USDT transactions on TRON and BSC networks, providing automated monitoring with webhook notifications.",
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development ts-node-dev src/index.ts",
"build": "tsc"
},
"keywords": [],
"author": "Moha Abdi",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/express-rate-limit": "^6.0.0",
"axios": "^1.7.7",
"bignumber.js": "^9.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"express-winston": "^4.2.0",
"helmet": "^8.0.0",
"tronweb": "^6.0.0",
"winston": "^3.14.2",
"zod": "^3.23.8"
}
}