-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (55 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
{
"name": "hardhat-project",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:fork": "hardhat --config hardhat-fork.config.ts test --network hardhat",
"test:fork:custom": "hardhat --config hardhat-fork.config.ts test test/aave/wrap.test.ts --network hardhat",
"console": "hardhat console",
"create:node": "hardhat node",
"deploy": "hardhat run scripts",
"deploy:zksync:local": "PRIVATE_KEY=7726827caac94a7f9e1b160f7ea819f172f7b6f9d2a97f992c38edeab82d4110 hardhat --config hardhat-zksync-local.config.ts deploy-zksync --script main.ts",
"deploy:fork": "yarn clean && hardhat --config hardhat-fork.config.ts run scripts --network hardhat",
"deploy:testnet": "yarn clean && hardhat run scripts --network arbitrumGoerli",
"clean": "hardhat clean",
"deploy:mainnet": "yarn clean && hardhat run scripts --network arbitrum",
"slither": "slither ./contracts --checklist docs/SECURITY.md"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.16",
"@matterlabs/hardhat-zksync-verify": "^0.1.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-defender": "^1.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@types/chai": "^4.3.3",
"@types/jest": "^29.2.4",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.12.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-openzeppelin-defender": "^1.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"zksync-web3": "^0.14.3"
},
"dependencies": {
"@aave/core-v3": "^1.17.1",
"@balancer-labs/v2-interfaces": "^0.4.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"chai": "^4.3.6",
"hardhat-openzeppelin-defender": "^1.2.5",
"solidity-coverage": "^0.7.22",
"solidity-docgen": "^0.6.0-beta.34",
"typechain": "^8.1.1",
"web3": "^0.20.7"
}
}