-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 2.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@zerolendxyz/governance",
"version": "1.1.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zerolend/governance.git"
},
"author": {
"name": "ZeroLend",
"email": "security@zerolend.xyz",
"url": "https://github.com/zerolend"
},
"bugs": {
"url": "https://github.com/zerolend/governance/issues"
},
"homepage": "https://github.com/zerolend/governance#readme",
"files": [
"abi/**/*",
"artifacts/**/*",
"contracts/**/*",
"deployments/**/*",
"types/**/*"
],
"private": false,
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^1.2.1",
"@matterlabs/hardhat-zksync-solc": "^1.1.4",
"@matterlabs/hardhat-zksync-verify": "^0.1.8",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@zerolendxyz/periphery-v3": "^3.4.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.11.1",
"hardhat": "2.19.4",
"hardhat-deploy": "^0.12.2",
"hardhat-tracer": "^3.0.3",
"mocha": "^10.2.0",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"zksync-ethers": "^6.5.0",
"zksync-web3": "^0.14.3"
},
"scripts": {
"clean": "rimraf artifacts abi typechain-types artifacts-zk cache cache-zk dist types forge-build",
"docs": "rimraf docs && hardhat docgen",
"compile": "hardhat compile",
"test": "hardhat test",
"test:fork": "hardhat test test/fork/*/*.test.ts",
"deploy": "yarn hardhat deploy-zksync --script deploy-zeroNFT.ts",
"coverage": "SOLIDITY_COVERAGE=true hardhat coverage",
"prepublishOnly": "npm run clean && npm run compile && npm run lint && npm run docs && npm run test"
},
"dependencies": {
"@layerzerolabs/lz-evm-oapp-v2": "^2.0.18",
"@layerzerolabs/lz-evm-protocol-v2": "^2.0.18",
"@layerzerolabs/solidity-examples": "^1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@sablier/v2-core": "^1.1.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@zerolendxyz/core-v3": "^2.8.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-dependency-compiler": "^1.1.3",
"solidity-coverage": "^0.8.12"
}
}