-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
44
45
46
47
48
{
"name": "hardhat-boilerplate",
"version": "1.0.0",
"description": "A boilerplate repository to get you started with Hardhat and Ethereum development",
"scripts": {
"test": "hardhat test",
"patch-package": "patch-package",
"postinstall": "patch-package",
"format": "prettier --write 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NomicFoundation/hardhat-boilerplate.git"
},
"author": "Nomic Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/NomicFoundation/hardhat-boilerplate/issues"
},
"homepage": "https://github.com/NomicFoundation/hardhat-boilerplate#readme",
"dependencies": {
"@aave/core-v3": "^1.17.2",
"@metamask/eth-sig-util": "^4.0.1",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@uniswap/v3-periphery": "^1.4.3",
"dotenv": "^16.0.3",
"ethereum-multicall": "^2.16.1",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.9.0",
"install": "^0.13.0",
"npm": "^9.6.5",
"optimization-gas": "^1.0.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"web3": "^1.9.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"hardhat-storage-layout": "^0.1.7",
"patch-package": "^6.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.2"
}
}