-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
84 lines (84 loc) · 2.13 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": "adamant-coinoptimus",
"version": "2.0.1",
"description": "ADAMANT CoinOptimus: free self-hosted cryptocurrency trade bot for non-professional traders",
"main": "index.js",
"scripts": {
"lint": "npx eslint -f visualstudio .",
"lint:fix": "npx eslint -f visualstudio --fix",
"lint:fixrule": "npx eslint -f visualstudio --no-eslintrc --fix --env node,es2021,commonjs --parser-options=ecmaVersion:12 --rule",
"start": "node app.js",
"start:dev": "node app.js dev",
"clear": "node app.js dev clear_db",
"test": "jest"
},
"keywords": [
"trade bot",
"tradebot",
"blockchain",
"bot",
"bitcoin",
"ethereum",
"trading",
"trade",
"exchange",
"arbitrage",
"crypto",
"cryptocurrency",
"p2pb2b",
"liquidity",
"azbit",
"ladder",
"grid trading",
"binance",
"stakecube",
"bitfinex",
"bittrex",
"coinstore",
"fameex",
"NonKYC",
"xeggex",
"tapbit",
"biconomy"
],
"author": "Aleksei Lebedev, ADAMANT Team <[email protected]> (https://adamant.im)",
"license": "GPL-3.0",
"dependencies": {
"adamant-api": "^1.8.0",
"axios": "^1.6.8",
"deep-object-diff": "^1.1.9",
"express": "^4.19.2",
"fast-deep-equal": "^3.1.3",
"form-data": "^4.0.0",
"jsonminify": "^0.4.2",
"mongodb": "^6.5.0",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0"
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-coinoptimus.git"
},
"bugs": {
"url": "https://github.com/Adamant-im/adamant-coinoptimus/issues"
},
"homepage": "https://github.com/Adamant-im/adamant-coinoptimus#readme"
}