This repository has been archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.62 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
{
"name": "gateway-api",
"version": "0.3.1",
"description": "Hummingbot Gateway",
"main": "index.js",
"license": "Apache 2",
"repository": "https://github.com/coinalpha/gateway-api",
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "tsc --project ./",
"format": "prettier . --write",
"lint": "eslint src tests --format table --fix",
"debug": "DEBUG=*router nodemon --ext 'ts,js,json' --exec 'ts-node' src/index.ts",
"start": "pm2 start dist/index.js --no-daemon",
"status": "pm2 monit",
"stop": "pm2 stop all",
"logs": "pm2 logs",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@balancer-labs/sor":"github:mifeng/balancer-sor#john/v2-package",
"@ethersproject/experimental": "^5.3.0",
"@perp/contract": "^1.0.6",
"@terra-money/terra.js": "^1.8.8",
"@types/node": "^15.12.4",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.0.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.0.0",
"@uniswap/v3-sdk": "3.0.0",
"abi-decoder": "^2.4.0",
"add": "^2.0.6",
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"capture-console": "^1.0.1",
"cross-fetch": "^3.0.6",
"debug": "^4.2.0",
"esm": "^3.2.25",
"ethers": "^5.3.1",
"express": "^4.17.1",
"express-ipfilter": "^1.1.2",
"express-winston": "^4.1.0",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.3",
"lodash": "^4.17.20",
"mathjs": "^9.3.0",
"moment": "^2.29.1",
"pm2": "^4.5.6",
"util": "^0.12.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.4",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.24",
"@types/mathjs": "^9.4.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"chai": "^4.2.0",
"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",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.4",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}