-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "chain-alert",
"version": "1.0.0",
"description": "A backend-only application that allows users to monitor wallet addresses on EVM-compatible blockchains and Solana. The system tracks wallet balances, detects new token purchases, trades, or transactions, and sends real-time notifications via Telegram.",
"main": "index.js",
"scripts": {
"start": "ts-node backend/server.ts",
"dev": "nodemon --exec ts-node backend/server.ts",
"build": "tsc",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Patrick-Ehimen/chain-alert.git"
},
"keywords": [
"node"
],
"author": "0xOse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Patrick-Ehimen/chain-alert/issues"
},
"homepage": "https://github.com/Patrick-Ehimen/chain-alert#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"chai": "^5.1.2",
"express": "^4.21.2",
"express-validator": "^7.2.0",
"helmet": "^8.0.0",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"mongodb-memory-server": "^9.5.0",
"morgan": "^1.10.0",
"sinon": "^19.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@solana/web3.js": "^1.98.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/node": "^22.10.2",
"@types/node-telegram-bot-api": "^0.64.7",
"alchemy-sdk": "^3.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"mongoose": "^8.9.1",
"node-telegram-bot-api": "^0.64.0",
"redis": "^4.6.11",
"web3": "^4.3.0",
"winston": "^3.11.0"
}
}