-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "wallet-tracking-bot",
"version": "1.0.0",
"description": "this bot is designed to monitor native token and token transfer and swap in the specific wallet",
"main": "index.ts",
"keywords": [
"wallet",
"tracking",
"bot",
"telegram"
],
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"author": "",
"license": "ISC",
"dependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@prisma/client": "^5.21.1",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"axios": "^1.7.7",
"bs58": "^6.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"node-telegram-bot-api": "^0.66.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node-telegram-bot-api": "^0.64.7",
"pre-commit": "^1.2.2",
"prisma": "^5.21.1",
"ts-node-dev": "^2.0.0"
},
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"build": "tsc --build",
"add-build": "git add dist",
"migrate": "npx prisma migrate dev --name init"
}
}