forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "hardhat-example",
"version": "1.0.0",
"private": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "pnpm hardhat compile",
"clean": "pnpm hardhat clean",
"test": "hardhat test",
"typecheck": "pnpm compile && pnpm test && pnpm tsc --noEmit"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "workspace:^10.0.0",
"@typechain/hardhat": "workspace:^6.0.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "5.4.0",
"@ethersproject/providers": "5.4.0",
"@ethersproject/contracts": "5.4.0",
"@ethersproject/abi": "5.4.0",
"hardhat": "^2.0.10",
"ts-node": "^10.7.0",
"typechain": "workspace:^8.0.0",
"typescript": "^4.6"
},
"dependencies": {}
}