-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 840 Bytes
/
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
{
"name": "hardhat-project",
"scripts": {
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"test": "hardhat test",
"prettier": "prettier --write 'contracts/**/*.sol' 'scripts/**/*.ts' 'test/**/*.ts'",
"deploy": "hardhat run scripts/deploy.ts --network",
"upgrade": "hardhat run scripts/upgrade.ts --network"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"hardhat": "^2.12.5",
"hardhat-contract-sizer": "^2.7.0",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.1.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2"
}
}