forked from Beastlorion/dexalot_samplebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.76 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
{
"name": "samplebot",
"version": "2023.05.12",
"license": "MIT",
"private": true,
"author": "Cengiz Dincoglu",
"scripts": {
"marketMaker-fuji": "tsc && node prepare && node ./dist-js/services/bots/botLauncher.js --bot_type=marketMaker --NODE_ENV_SETTINGS=fuji",
"marketMakerLists-fuji": "tsc && node prepare && node ./dist-js/services/bots/botLauncher.js --bot_type=marketMakerLists --NODE_ENV_SETTINGS=fuji",
"marketMaker-prod": "tsc && node prepare && node ./dist-js/services/bots/botLauncher.js --bot_type=marketMaker --NODE_ENV_SETTINGS=production",
"marketMakerLists-prod": "tsc && node prepare && node ./dist-js/services/bots/botLauncher.js --bot_type=marketMakerLists --NODE_ENV_SETTINGS=production",
"taker-prod": "tsc && node prepare && node ./dist-js/services/bots/botLauncher.js --bot_type=taker --NODE_ENV_SETTINGS=production"
},
"dependencies": {
"@ethersproject/experimental": "5.7.0",
"assert": "2.0.0",
"axios": "1.2.1",
"bignumber.js": "9.1.1",
"bintrees": "1.0.2",
"eip1559-fee-suggestions-ethers": "1.3.3",
"ethers": "5.7.2",
"moment-timezone": "0.5.3",
"nconf": "0.12.0",
"tsc": "2.0.4",
"winston": "3.8.2",
"ws": "8.11.0"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/bintrees": "1.0.3",
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/moment-timezone": "0.5.3",
"@types/nconf": "0.10.3",
"@types/node": "16.11.13",
"@types/winston": "2.4.4",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"chai": "4.3.7",
"eslint": "8.30.0",
"mocha": "10.2.0",
"nodemon": "2.0.20",
"rimraf": "3.0.2",
"typescript": "4.8.4",
"zip-dir": "2.0.0"
}
}