forked from hummingbot/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "hummingbot-gateway",
"version": "dev-1.13.0",
"description": "Middleware that helps Hummingbot clients access standardized DEX API endpoints on different blockchain networks",
"main": "index.js",
"license": "Apache-2.0",
"repository": "https://github.com/hummingbot/gateway",
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "tsc --skipLibCheck --project ./ && yarn copy-files",
"clean": "rm -rf ./node_modules && rm -rf ./coverage && rm -rf ./logs && yarn run clean:config",
"clean:config": "find ./conf -maxdepth 1 -regextype posix-extended -regex '.*\\.yml' -delete",
"format": "prettier . --write",
"lint": "eslint src test test-scripts --format table --fix",
"dev": "nodemon src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts",
"start": "/bin/bash ./startup.sh",
"copy-files": "copyfiles -a 'src/**/schema/*.json' 'src/templates/*.yml' 'test/services/data/**/*.*' dist",
"test": "jest --verbose",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand",
"test:unit": "NODE_OPTIONS=--max_old_space_size=8192 jest -w 1 --verbose --forceExit ./test/",
"test:cov": "NODE_OPTIONS=--max_old_space_size=8192 jest -w 1 --coverage --forceExit ./test/",
"test:scripts": "jest -i --verbose ./test-scripts/*.test.ts"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.28.10",
"@cosmjs/stargate": "^0.28.13",
"@crocswap/sdk": "^2.4.5",
"@ethersproject/abstract-provider": "5.7.0",
"@ethersproject/address": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/networks": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@ethersproject/solidity": "5.7.0",
"@harmony-js/core": "^0.1.57",
"@harmony-js/utils": "^0.1.56",
"@pancakeswap/sdk": "^2.4.5",
"@pangolindex/sdk": "^1.1.0",
"@perp/sdk-curie": "^1.16.0",
"@sushiswap/sdk": "^5.0.0-canary.116",
"@switchboard-xyz/defikingdoms-sdk": "^1.0.7",
"@traderjoe-xyz/sdk": "^1.6.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.178",
"@types/minimist": "^1.2.2",
"@types/morgan": "^1.9.3",
"@types/uuid": "^8.3.4",
"@uniswap/sdk": "3.0.2",
"@uniswap/sdk-core": "^3.0.0",
"@uniswap/smart-order-router": "^2.5.26",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"@uniswap/v3-sdk": "^3.7.0",
"@zuzu-cat/defira-sdk": "^1.0.0",
"abi-decoder": "^2.4.0",
"ajv": "^8.6.3",
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"big.js": "6.1.1",
"bn.js": "^5.2.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"coinalpha-ref-sdk": "1.1.0",
"dayjs": "^1.10.6",
"decimal.js-light": "^2.5.1",
"ethers": "^5.6.2",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"level": "^8.0.0",
"lodash": "^4.17.21",
"mathjs": "^10.5.0",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"near-api-js": "1.0.0",
"quickswap-sdk": "^3.0.8",
"swagger-ui-express": "^4.1.6",
"tslib": "^2.3.1",
"uuid": "^8.3.2",
"vvs-sdk": "^2.4.0",
"web3": "^1.7.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"yarn": "^1.22.17"
},
"devDependencies": {
"@connectis/diff-test-coverage": "^1.5.1",
"@types/app-root-path": "^1.2.4",
"@types/big.js": "^6.1.3",
"@types/bs58": "^4.0.1",
"@types/express": "^4.17.12",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.2",
"@types/level": "^6.0.0",
"@types/mathjs": "^9.4.2",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.6.1",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"copyfiles": "^2.4.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.0.1",
"hardhat": "^2.0.0",
"jest": "^27.3.1",
"jest-extended": "^0.11.5",
"mock-ethers-provider": "^1.0.2",
"node-cache": "5.1.2",
"nodemon": "^2.0.16",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"resolutions": {
"web3-utils": "1.7.3"
}
}