-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "hardhat-example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"test:task": "hardhat hello",
"typecheck": "npm compile && yarn test && yarn tsc --noEmit"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@typechain/ethers-v5": "=7.1.2",
"@typechain/hardhat": "2.3.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.28",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "5.4.0",
"hardhat": "^2.0.10",
"ts-node": "^9.1.1",
"typechain": "5.1.2",
"typescript": "^4.1.5"
},
"resolutions": {
"ethers": "5.4.0",
"@ethersproject/providers": "5.4.0",
"@ethersproject/contracts": "5.4.0",
"@ethersproject/abi": "5.4.0"
},
"dependencies": {}
}