-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "l2-zksync-contracts",
"version": "0.1.0",
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.5",
"@matterlabs/hardhat-zksync-solc": "^0.3.15",
"@matterlabs/hardhat-zksync-verify": "^0.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-verify": "^1.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solpp": "^2.0.0",
"@openzeppelin/contracts": "4.9.2",
"@openzeppelin/contracts-upgradeable": "4.9.2",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"ethers": "^5.7.0",
"hardhat": "=2.12.4",
"hardhat-typechain": "^0.3.3",
"mocha": "^9.0.2",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "=1.0.0-dev.22",
"ts-node": "^10.1.0",
"typechain": "^4.0.0",
"typescript": "^4.3.5",
"zksync-web3": "^0.15.4"
},
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"verify": "hardhat run src/verify.ts",
"deploy-testnet-paymaster": "ts-node src/deployTestnetPaymaster.ts",
"deploy-force-deploy-upgrader": "ts-node src/deployForceDeployUpgrader.ts",
"publish-bridge-preimages": "ts-node src/publish-bridge-preimages.ts",
"deploy-l2-weth": "ts-node src/deployL2Weth.ts",
"upgrade-l2-erc20-contract": "ts-node src/upgradeL2BridgeImpl.ts"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}