-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "tx-bot",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && rm -f tsconfig.tsbuildinfo && tsc",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evmos/bots.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/evmos/bots/issues"
},
"homepage": "https://github.com/evmos/bots#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.11.13",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@ethersproject/experimental": "^5.6.3",
"@evmos/eip712": "^0.3.1-rc1",
"@evmos/proto": "^0.2.1-rc1",
"@evmos/provider": "^0.3.1",
"@hanchon/evmos-ts-wallet": "^0.2.0",
"child_process": "^1.0.2",
"ethers": "^5.6.9",
"evmosjs": "^0.3.2-rc2",
"express": "^4.18.1",
"express-prom-bundle": "^6.5.0",
"no-try": "^3.1.0",
"node-fetch": "^3.3.0",
"prom-client": "^14.0.1",
"winston": "^3.8.1"
}
}