-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "balance",
"version": "1.0.0",
"description": "Historical & Realtime Balance Data for Ethereum Tokens",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"store-blocks": "babel-node ./scripts/block-fetcher2.js",
"start-dev": "babel-watch server.js",
"start": "babel-node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heftybyte/balance.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/heftybyte/balance/issues"
},
"homepage": "https://github.com/heftybyte/balance#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"bignumber.js": "^5.0.0",
"bluebird-queue": "0.0.8",
"bull": "^3.3.7",
"cheerio": "^1.0.0-rc.2",
"crypto-exchange": "^2.3.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"human-standard-token-abi": "^1.0.2",
"influx": "^5.0.7",
"pg": "^6.4.2",
"uuid": "^3.1.0",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^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-runtime": "^6.26.0",
"babel-watch": "^2.0.7"
}
}