-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
88 lines (88 loc) · 2.12 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
{
"name": "adamant-tradebot",
"version": "6.1.0",
"description": "ADAMANT Trading and Market-making bot",
"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": [
"adm",
"adamant",
"blockchain",
"messenger",
"bot",
"bitcoin",
"ethereum",
"trading",
"trade",
"market making",
"trade volume",
"fake volumes",
"wash trading",
"order book",
"exchange",
"arbitrage",
"crypto",
"cryptocurrency",
"p2pb2b",
"spread",
"liquidity",
"target price",
"marketmaking.app",
"price watching",
"making price",
"azbit",
"stakecube",
"coinstore",
"nonkyc",
"xeggex"
],
"author": "Aleksei Lebedev, ADAMANT Foundation <[email protected]> (https://adamant.im)",
"license": "GPL-3.0",
"dependencies": {
"adamant-api": "^2.4.0",
"axios": "^1.7.3",
"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.8.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-config-google": "^0.14.0",
"eslint-formatter-visualstudio": "^8.40.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4"
},
"engines": {
"node": ">=18.18",
"npm": ">=9.0.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-tradebot.git"
},
"bugs": {
"url": "https://github.com/Adamant-im/adamant-tradebot/issues"
},
"homepage": "https://marketmaking.app"
}