-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "dexbot",
"version": "1.0.0",
"description": "trading bot against proton dex",
"main": "index.js",
"type": "module",
"scripts": {
"bot": "tsc --noEmit && node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"bot:test": "cross-env NODE_ENV=test npm run bot",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --fix --ext .js",
"test": "mocha"
},
"keywords": [
"proton",
"dex",
"trade",
"bot",
"order",
"crypto"
],
"author": "Pravin Battu",
"license": "MIT",
"dependencies": {
"@proton/js": "^27.3.0",
"@proton/light-api": "^3.3.3",
"@proton/wrap-constants": "^0.2.68",
"@slack/bolt": "^3.12.2",
"@slack/socket-mode": "^1.3.2",
"@slack/web-api": "^6.8.1",
"bignumber.js": "^9.1.1",
"config": "^3.3.8",
"node-fetch": "^3.3.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/config": "^3.3.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}