-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
91 lines (91 loc) · 2.42 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
{
"name": "xcoin",
"version": "1.3.0",
"description": "Cryptocurrency trading bot",
"bugs": "https://github.com/rainfu/xcoin/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rainfu/xcoin.git"
},
"main": "./index.js",
"bin": {
"xcoin": "./xcoin.sh"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix",
"precommit": "lint-staged",
"exchange": "node xcoin.js exchange",
"trade": "node xcoin.js trade",
"server": "node xcoin.js server",
"binanceusdm": "pm2 start ./config/binanceusdm.config.js",
"binance": "pm2 start ./config/binance.config.js",
"jenny": "pm2 start ./config/jenny.config.js",
"mexc": "pm2 start ./config/mexc.config.js",
"xcoin": "pm2 start ./data/pm2/xcoin.config.js",
"ciiat": "pm2 start ./data/pm2/ciiat.config.js",
"uniswap": "pm2 start ./data/pm2/uniswap.config.js",
"dev": "yarn trade mexc --conf ./data/config/mexc/30m.json --paper"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@uniswap/sdk": "^3.0.3",
"ccxt": "^2.6.36",
"cheerio": "^1.0.0-rc.10",
"child_process": "^1.0.2",
"colors": "^1.4.0",
"commander": "^5.1.0",
"cross-fetch": "^3.1.4",
"fs": "0.0.2",
"global": "^4.4.0",
"graphql": "^15.5.3",
"https-proxy-agent": "^5.0.0",
"ip": "~1.1.5",
"lint-staged": "^10.5.3",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"lolex": "^6.0.0",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"mongodb": "^4.2.0",
"numbro": "1.11.x",
"path": "^0.12.7",
"pm2": "^5.3.0",
"random-port": "^0.1.0",
"react": "^17.0.2",
"round-precision": "^1.0.0",
"shelljs": "^0.8.0",
"timebucket": "^0.4.0",
"ws": "^7.5.3",
"zero-fill": "^2.2.4"
},
"devDependencies": {
"@ethersproject/contracts": "^5.1.1",
"@ethersproject/providers": "^5.4.4",
"@ethersproject/units": "^5.1.0",
"@pancakeswap/sdk": "^2.2.0",
"eslint": "^4.19.1",
"ethers": "^5.1.4",
"jsbi": "^3.1.4",
"vitepress": "^1.0.0-alpha.65",
"web3": "^1.3.6",
"yargs": "^16.1.1"
},
"optionalDependencies": {
"fsevents": "^2.1.2"
},
"engines": {
"node": ">=16.0.0"
},
"snyk": true
}