-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.4 KB
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
{
"name": "erc20-template",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"typechain": "hardhat typechain",
"deploy:localhost": "hardhat run --network localhost scripts/deploy.ts",
"deploy:goerli": "hardhat run --network goerli scripts/deploy.ts",
"deploy:sepolia": "hardhat run --network sepolia scripts/deploy.ts",
"deploy:ethereum": "hardhat run --network ethereum scripts/deploy.ts"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.8",
"chai": "^4.2",
"dotenv": "^16.3.1",
"ethers": "^6",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3",
"web3": "^4.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1"
}
}