-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 2.24 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
{
"name": "lottery",
"version": "1.0.0",
"description": "Lottery contract with VRF2 . Contract use VRFv2 for generating random numbers. Therefore, for the correct operation of the contract, it is necessary to create subscription on > https://vrf.chain.link/rinkeby for Rinkeby testnet and https://vrf.chain.link/mainnet for mainnet, replenish the balance of LINK and add contract address as a consumer",
"main": "hardhat.config.ts",
"scripts": {
"test": "npx hardhat test",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:mainnet": "npx hardhat run --network ethereum scripts/deploy.ts",
"docgen": "npx hardhat docgen",
"slither": "slither .",
"size": "hardhat size-contracts",
"solhint": "solhint 'contracts/**/*.sol'",
"coverage": "npx hardhat coverage --testfiles test",
"flatt": "npx hardhat flatten > Lottery.sol",
"prettier": "prettier --write 'contracts/Lottery.sol'"
},
"keywords": [
"lottery",
"ERC20",
"ERC721",
"NFT"
],
"author": "Ivan Lieskov",
"license": "ISC",
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"chai": "^4.3.6",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.9.1"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.7.0",
"@typechain/hardhat": "^6.1.3",
"dotenv": "^16.0.1",
"hardhat-contract-sizer": "^2.6.1",
"solidity-docgen": "^0.6.0-beta.21"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ILESKOV/Lottery"
},
"bugs": {
"url": "https://github.com/ILESKOV/Lottery/issues"
},
"homepage": "https://github.com/ILESKOV/Lottery#readme"
}