forked from mikehostetler/autofi_bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
{
"name": "autofi_bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bots:logs": "pm2 logs",
"bots:start": "pm2 start ecosystem.config.js",
"bots:stop": "pm2 stop ecosystem.config.js",
"bots:restart": "pm2 restart ecosystem.config.js",
"bots:reload": "pm2 reload ecosystem.config.js",
"bots:delete": "pm2 delete ecosystem.config.js",
"cli": "ts-node src/index.ts",
"docs": "typedoc",
"format": "prettier --write '**/*.ts'",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest --verbose --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/terminal-kit": "^2.5.6",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "9.x",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.2.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"@eslint/js": "^9.3.0",
"@magma-layer/default-token-list": "github:Magma-Layer/default-token-list",
"axios": "^1.6.8",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ethers": "^6.12.1",
"graphql": "^16.8.1",
"graphql-request": "^7.0.1",
"pm2": "^5.3.1",
"tslog": "^4.9.2",
"viem": "^2.10.9",
"znv": "^0.4.0",
"zod": "^3.23.8"
}
}