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
|
{
"name": "dexon-lottery",
"version": "0.0.1",
"license": "MIT",
"description": "Random number generator for DEXON lottery event",
"homepage": "https://dexon.org",
"repository": {
"type": "git",
"url": "https://github.com/dexon-foundation/dexon-lottery.git"
},
"scripts": {
"postinstall": "touch secret.js",
"compile": "dexon-truffle compile",
"test": "dexon-truffle test",
"deploy": "dexon-truffle migrate --network=testnet --reset",
"console": "dexon-truffle console --network=testnet"
},
"dependencies": {
"@cobinhood/web3": "1.0.0-beta.35",
"@dexon-foundation/truffle": "^5.0.15",
"@dexon-foundation/truffle-contract": "^4.0.12",
"bip39": "^3.0.0",
"ethereumjs-wallet": "^0.6.3",
"openzeppelin-solidity": "^2.1.3",
"truffle-hdwallet-provider": "^1.0.1"
},
"devDependencies": {
"@cobinhood/eslint-config-cobinhood": "^0.2.0",
"eslint": "^5.16.0"
}
}
|