forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 1.03 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": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@typechain/ethers-v6": "workspace:^0.5.1",
"@typechain/hardhat": "workspace:^9.1.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "18.14.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "6.3.0",
"@ethersproject/providers": "5.4.0",
"@ethersproject/contracts": "5.4.0",
"@ethersproject/abi": "5.4.0",
"hardhat": "^2.9.9",
"ts-node": "^10.7.0",
"typechain": "workspace:^8.3.2",
"typescript": "^4.9.5"
},
"dependencies": {}
}