-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "bot-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/zmzimpl/bot-template"
},
"bugs": "",
"keywords": [
"bot",
"blockchain"
],
"author": {
"name": "zmzimpl",
"email": "[email protected]",
"url": "https://github.com/zmzimpl"
},
"contributors": [],
"scripts": {
"dev": "nodemon --no-warnings --experimental-specifier-resolution=node index.js",
"test": "mocha --no-warnings --experimental-specifier-resolution=node",
"start": "node --no-warnings --experimental-specifier-resolution=node index.js"
},
"dependencies": {
"@getbrevo/brevo": "^2.0.0-beta.4",
"axios": "^1.5.0",
"bignumber.js": "^9.1.2",
"chalk": "^5.3.0",
"console-stamp": "^3.1.2",
"decimal.js": "^10.4.3",
"ethers": "^6.7.1",
"express": "^4.18.2",
"figlet": "^1.6.0",
"lodash": "^4.17.21",
"log-update": "^5.0.1",
"puppeteer": "^21.5.2",
"readline-sync": "^1.4.10",
"socks-proxy-agent": "^8.0.2",
"viem": "^1.19.8",
"winston": "^3.12.0",
"ws": "^8.16.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"nodemon": "^2.0.22"
}
}