-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1005 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
{
"name": "auctioneer-bot",
"version": "0.2.1",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:docker-arm": "npm run build && docker buildx build --platform=linux/arm64 -t auctioneer-bot-arm .",
"build:docker-x86": "npm run build && docker buildx build --platform=linux/amd64 -t auctioneer-bot-x86 .",
"test": "jest --config jest.config.cjs"
},
"author": "[email protected]",
"license": "MIT",
"description": "A bot that creates and bids on auctions for a Blend pool",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/better-sqlite3": "^7.6.11",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@blend-capital/blend-sdk": "2.2.0",
"@stellar/stellar-sdk": "13.0.0",
"better-sqlite3": "^11.1.2",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
}
}