This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "swap.bot",
"version": "0.1.0",
"description": "REST API trading interface for swap.core",
"main": "app.js",
"scripts": {
"prestart": "mkdir .storage &2> /dev/null",
"api": "DEBUG=swap.bot*,swap.core* node app",
"start": "npm run api",
"pm2": "DEBUG=swap.bot*,swap.core* pm2 start 'npm run api' --name swapbot && pm2 log",
"dev": "DEBUG=swap.bot*,swap.core* nodemon app",
"storage:clean": "cp -r .storage ../storage; rm -rf .storage/**/swap.flow.*; rm -rf .storage/**/swap.swap.*",
"e2e": "pm2 start ecosystem.config.js && sleep 10 && cd test && sh testdrive.sh",
"test": "mocha -w --recursive --timeout 30000 test",
"autopilot": "DEBUG=swap.bot*,swap.core* node microbot",
"autopilot:mainnet": "NETWORK=mainnet DEBUG=swap.bot*,swap.core* node microbot"
},
"keywords": [
"trade",
"atomic swap",
"dex",
"swap.core"
],
"author": "Aleksey Bykhun",
"license": "ISC",
"dependencies": {
"asciichart": "^1.5.7",
"babel-core": "^6.26.3",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.24.1",
"basic-auth": "^2.0.1",
"bchaddrjs": "^0.2.2",
"bignumber.js": "^7.2.1",
"bitcoincashjs": "^0.1.10",
"bitcoinjs-lib": "^5.1.7",
"body-parser": "^1.18.3",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"ip": "^1.1.5",
"ipfs-pubsub-room": "^1.4.0",
"kraken-api": "^1.0.0",
"node-localstorage": "^1.3.1",
"puppeteer": "^2.1.1",
"request-promise-cache": "^2.0.1",
"request-promise-native": "^1.0.7",
"simple.swap.core": "latest",
"swap.core": "latest",
"web3": "^1.2.4",
"ws": "^5.2.2"
},
"resolutions": {
"libp2p": "git+https://[email protected]/DaoCasino/js-libp2p.git#dc-patch-2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"pm2": "^3.4.0"
}
}