-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "hardhat-typechain-starter",
"version": "1.0.0",
"description": "Initial starter template for a hardhat+typechain solidity project",
"main": "index.js",
"author": "mountainpath",
"license": "GPL-3.0-or-later",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.4.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.0.0",
"hardhat": "^2.8.3",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^7.0.0",
"typescript": "^4.5.4"
},
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"local-node": "hardhat node",
"local-deploy": "hardhat run --network localhost scripts/deploys/local.ts",
"hardhat:local": "hardhat --network localhost",
"hardhat:testnet": "hardhat --network rinkeby",
"hardhat:mainnet": "hardhat --network mainnet"
},
"engines": {
"node": "14.x"
}
}