-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
{
"name": "parr",
"version": "0.0.1",
"description": "Fast-paced Ethereum API",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\"",
"watch": "babel src -d dist --watch -s -D",
"cli": "node dist/cli.js",
"build": "babel src -s -D -d dist",
"start": "node dist",
"lint": "eslint src"
},
"author": "Hill Street Labs",
"contributors": [
"Feridun Mert Celebi <mertcelebi93@gmail.com> (https://github.com/mertcelebi)",
"Paul Fletcher-Hill <pfletcherhill@gmail.com> (https://github.com/pfletcherhill)"
],
"dependencies": {
"bn.js": "^4.11.8",
"body-parser": "^1.13.3",
"clui": "^0.3.6",
"commander": "^2.15.1",
"compression": "^1.5.2",
"cors": "^2.7.1",
"dotenv": "^5.0.1",
"elasticsearch": "^14.2.1",
"es6-promise": "^4.2.4",
"ethereumjs-blockstream": "^4.0.1",
"etherscan-api": "^8.0.4",
"ethjs": "^0.3.3",
"ethjs-abi": "^0.2.1",
"ethjs-contract": "^0.1.9",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.4",
"express": "^4.13.3",
"isomorphic-fetch": "^2.2.1",
"knex": "^0.14.4",
"lodash": "^4.17.5",
"mobx": "^4.1.0",
"morgan": "^1.8.0",
"pg": "^7.4.1",
"redis": "^2.8.0",
"resource-router-middleware": "^0.6.0",
"source-map-support": "^0.5.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"nodemon": "^1.9.2"
}
}