-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 760 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
{
"name": "blockchain-sleuth",
"version": "1.0.0",
"description": "Blockchain Intelligence Investigation Tool",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"analyze": "tsx src/scripts/analyze.ts",
"monitor": "tsx src/scripts/monitor.ts"
},
"dependencies": {
"@solana/web3.js": "^1.87.6",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helius-sdk": "^2.1.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}