-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "token-lottery",
"version": "1.0.0",
"description": "token-lottery",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nanmcpe/token-lottery.git"
},
"keywords": [
"lotto",
"lottery"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nanmcpe/token-lottery/issues"
},
"homepage": "https://github.com/nanmcpe/token-lottery#readme",
"scripts": {
"testrpc": "ganache-cli --gasLimit 13000000 -e 100000 --networkId 666 -m 'lizard work three test biology chief sister when mouse seminar pizza all'",
"migrate": "truffle migrate --network development --reset",
"compile": "truffle compile --network development",
"test": "rm -rf contracts/flattened/*.sol && truffle test",
"flatten": "truffle-flattener contracts/Lottery.sol > flattened/Lottery.sol",
"flatten2": "truffle-flattener contracts/LotteryUpgradeProxy.sol > flattened/LotteryUpgradeProxy.sol"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"node-schedule": "^2.0.0",
"truffle": "^5.1.41"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.2.2",
"console-stamp": "^0.2.9",
"cron": "^1.8.2",
"ganache-cli": "^6.12.2",
"truffle-flattener": "^1.4.4",
"truffle-plugin-verify": "^0.5.7",
"web3": "^1.3.3"
}
}