forked from Adamant-im/adamant-tradebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 KB
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
{
"name": "adamant-tradebot",
"version": "7.0.1",
"description": "ADAMANT's self-hosted market-making bot for crypto projects & token issuers. Volume, spread, liquidity, price ranges, and dynamic order books.",
"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": [
"market-making",
"market making",
"trading bot",
"self-hosted",
"trading volume",
"bot",
"bitcoin",
"ethereum",
"trading",
"trade",
"order book",
"orderbook",
"exchange",
"arbitrage",
"crypto",
"cryptocurrency",
"spread",
"liquidity",
"target price",
"price watching",
"making price"
],
"author": "ADAMANT Developer Community <devs@adamant.im> (https://adamant.im)",
"license": "GPL-3.0",
"dependencies": {
"adamant-api": "^2.4.0",
"axios": "^1.11.0",
"deep-object-diff": "^1.1.9",
"express": "^4.21.2",
"fast-deep-equal": "^3.1.3",
"form-data": "^4.0.4",
"jsonminify": "^0.4.2",
"mongodb": "^6.19.0",
"uuid": "^12.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/eslint-parser": "^7.28.4",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.35.0",
"eslint": "^9.35.0",
"eslint-config-google": "^0.14.0",
"eslint-formatter-visualstudio": "^8.40.0",
"globals": "^16.3.0",
"jest": "^30.1.3",
"nodemon": "^3.1.10"
},
"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"
}