-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "staker-bots",
"version": "1.0.0",
"description": "Staker bot implementation",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"start:monitor": "COMPONENTS=monitor tsx src/index.ts",
"start:calculator": "COMPONENTS=calculator tsx src/index.ts",
"start:all": "COMPONENTS=monitor,calculator tsx src/index.ts",
"dev:monitor": "COMPONENTS=monitor tsx watch src/index.ts",
"dev:calculator": "COMPONENTS=calculator tsx watch src/index.ts",
"dev:all": "COMPONENTS=monitor,calculator,profitability, tsx watch src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/defender-relay-client": "^1.54.6",
"@openzeppelin/defender-sdk": "^2.3.0",
"@supabase/supabase-js": "^2.48.1",
"axios": "^1.7.9",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"uuid": "^11.0.5",
"web3": "4.7.0"
},
"devDependencies": {
"@types/node": "^20.17.17",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}