-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "order-book-heatmap",
"type": "module",
"version": "1.0.0",
"description": "This was an exploratory project, that I put together in a couple days in order familiarize myself with the Binance API and the limitations around the live market data streams provided by them. The end-result of this repo is a live order book visualization, although this wasn't the main goal. Keep in mind that if all you need is an order book display most of the code in this repo will be of no use to you.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: only unlucky people need tests\" && exit 1",
"build": "webpack"
},
"keywords": [
"order book",
"limit order book",
"limit order",
"market order",
"heatmap",
"market heatmap",
"finance heatmap",
"order depth",
"market",
"market chart",
"binance",
"crypto",
"crypto heatmap",
"time and sales",
"trade",
"trader",
"futures",
"bitcoin",
"heatmap",
"d3"
],
"author": "Ivo Elenchev",
"license": "BSD",
"dependencies": {
"axios": "^0.21.1",
"d3": "^4.13.0",
"isomorphic-ws": "^4.0.0",
"ws": "^4.0.0"
},
"devDependencies": {
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
}
}