-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "mexjs",
"version": "0.6.8",
"description": "",
"main": "src/app.js",
"scripts": {
"start": "nodemon --watch src --exec babel-node src/app.js",
"test-ws": "nodemon --watch src --exec babel-node src/tests/websocketauth.js",
"build": "npm run lint && babel ./src/ -x '.js' --retain-lines -d dist",
"serve": "node dist/app.js",
"lint": "./node_modules/.bin/eslint src"
},
"author": "Batista Harahap",
"license": "ISC",
"dependencies": {
"@akanass/rx-socket-client": "^1.1.0",
"@reactivex/rxjs": "^5.5.12",
"bitmex-node": "^1.7.0",
"bitmex-plus": "^1.3.1",
"crypto": "^1.0.1",
"decimal.js": "^10.2.0",
"numeral": "^2.0.6",
"rxjs": "^6.5.2",
"technicalindicators": "^2.0.9",
"telegraf": "^3.30.1",
"websocket": "^1.0.29",
"ws": "^7.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"eslint": "^6.1.0",
"nodemon": "^1.19.1"
}
}