-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "TriangularArbitrage",
"version": "0.2.0",
"description": "Monitor multiple currencies in a single exchange via websockets to detect triangular arbitrage opportunities.",
"devtoolsFrontendUrl": "chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=0.0.0.0:9229/0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e",
"webSocketDebuggerUrl": "ws://0.0.0.0:9229/0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"start": "node index.js",
"dev": "node --inspect index.js",
"debug": "node --inspect index.js",
"lint": "eslint .",
"test": "echo 'test logic not done yet'"
},
"repository": {
"type": "git",
"url": "https://github.com/tiagosiebler/TriangularArbitrage.git"
},
"author": "Tiago Siebler",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiagosiebler/TriangularArbitrage/issues"
},
"homepage": "https://github.com/tiagosiebler/TriangularArbitrage#readme",
"dependencies": {
"binance": "^1.3.3",
"ccxt": "^1.16.66",
"clui": "^0.3.6",
"fs": "0.0.1-security",
"moment": "^2.22.2",
"mongodb": "^3.0.1",
"node-env-file": "^0.1.8",
"numbers": "^0.6.0",
"sosa_mongo": "^1.0.3",
"winston": "^3.0.0-rc1",
"ws": "^3.1.0"
},
"devDependencies": {
"eslint": "^4.15.0"
}
}