-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "arbbot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "npm run build && pm2 start dist/index.js --interpreter ts-node --name arbbot --no-daemon",
"start:dev": "ts-node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"description": "",
"dependencies": {
"@balancer/sdk": "^1.1.0",
"@circles-sdk/adapter-ethers": "^0.15.1",
"@circles-sdk/data": "^0.15.1",
"@circles-sdk/profiles": "^0.15.1",
"@circles-sdk/sdk": "^0.15.1",
"@circles-sdk/utils": "^0.15.1",
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"express": "^4.21.2",
"pg": "^8.13.1",
"pm2": "^5.4.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.6",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}