-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.43 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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 > ./log/std.log 2> ./log/err.log",
"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/runtime": "^7.11.2",
"bn.js": "^4.11.8",
"browserify": "^15.2.0",
"bulma": "^0.6.2",
"chart.js": "^2.9.3",
"clean-webpack-plugin": "^3.0.0",
"ethereum-blockies": "git+https://github.com/ethereum/blockies.git",
"ethereumjs-tx": "^1.3.7",
"express": "^4.17.1",
"html-loader": "^0.5.5",
"jayson": "^2.1.2",
"jquery": "^3.4.1",
"mocha": "^5.0.4",
"moment": "^2.24.0",
"mongodb": "^3.4.1",
"redis": "^2.8.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"vue": "^2.6.11",
"web3": "^1.2.4",
"web3-eth": "^1.2.4",
"web3-utils": "^1.2.4",
"worker-loader": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-es2016": "^7.0.0-beta.53",
"babel-loader": "^8.0.4",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-include-assets-plugin": "^1.0.10",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^5.0.4",
"node-sass": "^4.13.0",
"sass-loader": "^6.0.7",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^0.20.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^2.11.5"
}
}