-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1006 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1006 Bytes
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
{
"name": "ethpoolbr",
"version": "0.0.1",
"description": "Ethereum Pool BR",
"author": "EthereumBR",
"license": "MIT",
"homepage": "https://github.com/EthereumBR/ethpoolbr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EthereumBR/ethpoolbr.git"
},
"bugs": {
"url": "https://github.com/EthereumBR/ethpoolbr/issues"
},
"main": "server.js",
"scripts": {
"start": "nodemon backend/server.js --exec babel-node",
"build": "babel backend/ -d backend/dist",
"serve": "node backend/dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"bn.js": "^4.11.3",
"config": "^1.20.1",
"ethashjs": "^0.0.7",
"ethereumjs-util": "^4.3.0",
"json-rpc2": "^1.0.2",
"web3": "^0.15.3",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"nodemon": "^1.9.1"
},
"babel": {
"presets": [
"es2015"
]
}
}