-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "hardhat-lottery-project",
"author": "Ankur Daharwal",
"version": "0.1.0",
"description": "ChainLink VRF Random Number Generator based Lottery smart contract",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "hh test",
"deploy": "hh run scripts/deploy.ts",
"console": "hh console",
"node": "hh node"
},
"keywords": [
"ethereum",
"solidity",
"chainLink",
"vrf",
"lottery",
"smartcontracts"
],
"license": "GPL-3.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"engines": {
"node": ">= 12.1.0"
}
}