forked from 0xbitcoin/tokenpool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "TokenPool",
"version": "1.4.0",
"engines": {
"node": ">=8.9"
},
"description": "A token pool coordinator which poolmines energy tokens such as 0xBitcoin",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 15000",
"webpack": "webpack",
"dev": "webpack-dev-server --port 3030 ",
"server": "node index.js",
"redis": "redis-server",
"clean_redis": "node clean-redis.js",
"payment_log": "node util/payment-log.js",
"fix_balance_transfers": "node util/fix_balance_transfers.js",
"wipe_balance_payments": "node util/wipe_balance_payments.js",
"wipe_balance_payment_for_miner": "node util/wipe_balance_payment_for_miner.js",
"confirm_balance_transfer": "node util/confirm_balance_transfer.js"
},
"keywords": [
"token",
"mine",
"pool"
],
"author": "admazzola",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"bn.js": "^4.11.8",
"browserify": "^15.2.0",
"bulma": "^0.6.2",
"chart.js": "^2.7.2",
"clean-webpack-plugin": "^3.0.0",
"ethereum-blockies": "git+https://github.com/ethereum/blockies.git",
"ethereumjs-tx": "^1.3.3",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.5",
"jayson": "^2.0.5",
"jquery": "^3.3.1",
"mocha": "^5.0.1",
"moment": "^2.21.0",
"mongodb": "^3.0.10",
"redis": "^2.8.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"vue": "^2.5.13",
"web3": "^1.0.0-beta.28",
"web3-eth": "^1.0.0-beta.30",
"web3-utils": "^1.0.0-beta.29",
"webpack": "^3.11.0",
"worker-loader": "^1.1.0"
},
"devDependencies": {
"css-loader": "^0.28.9",
"file-loader": "^1.1.6",
"html-webpack-include-assets-plugin": "^1.0.2",
"html-webpack-plugin": "^2.30.1",
"mocha": "^5.0.4",
"node-sass": "^4.11.0",
"sass-loader": "^6.0.6",
"static-site-generator-webpack-plugin": "^3.4.1",
"style-loader": "^0.20.1",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^2.11.1"
}
}