-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"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 tsx watch src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.48.1",
"axios": "^1.7.9",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"uuid": "^11.0.5"
},
"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"
}
}