-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "",
"version": "",
"description": "examples codes to demonstrate how to listen Binance Websocket Server",
"main": "index.js",
"dependencies": {
"axios": "^1.6.2",
"big.js": "^5.2.2",
"ramda": "^0.26.1",
"ws": "^7.4.6"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-jest": "^27.3.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^27.3.1",
"jest-watch-master": "^1.0.0",
"nodemon": "^3.0.2"
},
"scripts": {
"orderbook": "nodemon -w ./src --exec babel-node ./src/app.js",
"user": "nodemon -w ./src --exec babel-node ./src/user.js",
"margin-user": "nodemon -w ./src --exec babel-node ./src/margin-user.js",
"futures-user": "nodemon -w ./src --exec babel-node ./src/futures-user.js",
"delivery-futures-user": "nodemon -w ./src --exec babel-node ./src/delivery-futures-user.js",
"multi-stream": "nodemon -w ./src --exec babel-node ./src/multi-stream-depth.js",
"monitor-spot-depth": "nodemon -w ./src --exec babel-node ./src/spot/monitor-depth.js",
"monitor-spot-trade": "nodemon -w ./src --exec babel-node ./src/spot/monitor-trade.js",
"monitor-futures": "nodemon -w ./src --exec babel-node ./src/monitor-futures.js",
"start": "nodemon -w ./src --exec babel-node ./src/index.js",
"delivery": "nodemon -w ./src --exec babel-node ./src/delivery.js",
"build": "babel src -d dist",
"test": "jest --watchAll"
},
"jest": {
"watchPlugins": [
"jest-watch-master"
]
},
"author": "Liang Shi",
"license": "MIT"
}