-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "gateway-api",
"version": "0.3.1",
"description": "Hummingbot Gateway",
"main": "index.js",
"license": "Apache 2",
"repository": "https://github.com/coinalpha/gateway-api",
"scripts": {
"start": "babel-node src/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"debug": "DEBUG=*router nodemon --exec babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@balancer-labs/sor": "^0.3.3",
"@complus/sdk-ava": "^0.2.0",
"@ethersproject/experimental": "^5.3.0",
"@olive-dev/avax-sdk": "^1.0.3",
"@pangolindex/sdk": "^1.1.0",
"@perp/contract": "^1.0.6",
"@terra-money/terra.js": "^0.5.8",
"@uniswap/sdk": "^3.0.3",
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"capture-console": "^1.0.1",
"cross-fetch": "^3.0.6",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.14",
"express": "^4.17.1",
"express-ipfilter": "^1.1.2",
"helmet": "^4.1.1",
"http-status-codes": "^2.1.3",
"lodash": "^4.17.20",
"mathjs": "^9.3.0",
"moment": "^2.29.1",
"quickswap-sdk": "^3.0.8",
"util": "^0.12.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4"
},
"engines": {
"node": ">=10"
},
"type": "module"
}