-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "ticker",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start": "babel-node server.js",
"test": "",
"coin": "babel-node lib/prices.js",
"start-debug": "nodemon debug server.js --exec babel-node",
"build": "babel . -d dist --ignore dist,node_modules --copy-files",
"start-dev": "babel-watch server.js",
"posttest": "nsp check",
"realtime": "node realtime.js",
"historical": "node historical.js",
"realtime-dev": "babel-node realtime.js",
"historical-dev": "babel-node historical.js"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"btoa": "^1.1.2",
"ccxt": "^1.11.69",
"coinmarketcap": "^0.2.0",
"cryptocompare": "^0.3.0",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"global": "^4.3.2",
"influx": "^5.0.7",
"lodash": "^4.17.4",
"lsq-meta": "^1.3.1",
"node-fetch": "^1.7.3",
"query-string": "^5.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"socket.io": "^2.0.4"
},
"devDependencies": {
"async": "^2.6.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-watch": "^2.0.7",
"eslint": "^3.17.1",
"nsp": "^2.1.0"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "Price data for tokens"
}