forked from houtenbos/krakura-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "krakura",
"version": "0.0.1",
"description": "Arbitrage Trading Bot",
"main": "index.js",
"scripts": {
"build": "rm -rf build && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/houtenbos/krakura-bot.git"
},
"keywords": [
"trading",
"bot",
"arbitrage",
"defi",
"kasuma",
"karura"
],
"author": "Lester Houtenbos",
"contributors": [
"Matthew Ashley"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/houtenbos/krakura-bot/issues"
},
"homepage": "https://github.com/houtenbos/krakura-bot#readme",
"dependencies": {
"@acala-network/api": "^3.0.1",
"@acala-network/app-util": "^3.0.2",
"@acala-network/sdk-swap": "^3.0.2",
"@acala-network/sdk-wallet": "^3.0.2",
"@polkadot/api": "^6.5.2",
"@polkadot/keyring": "^7.6.1",
"@polkadot/wasm-crypto": "^4.4.1",
"bunyan": "^1.8.15",
"crypto-js": "^4.1.1",
"kraken-api": "^1.0.1",
"lodash": "^4.17.21",
"prompts": "^2.4.2",
"reconnecting-websocket": "^4.4.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/prompts": "^2.0.14"
}
}