-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "hardhat-project",
"scripts": {
"start:local": "./node_modules/.bin/hardhat --config hardhat.config.local.ts node",
"deploy:local": "./node_modules/.bin/hardhat --config hardhat.config.local.ts --network localhost deploy"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/mocha": "^10.0.7",
"chai": "^4.2.0",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.13",
"typechain": "^8.3.2"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"dotenv": "^16.0.3",
"ethers": "^5.4.7",
"ts-node": "^10.9.2",
"ts-proto": "^2.0.2",
"typescript": "^5.5.4",
"wait-on": "^6.0.1",
"yargs": "^17.7.2"
}
}