-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "zksync-aa-custom",
"author": {
"name": "Jabba ø1",
"url": "https://github.com/ja88a"
},
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.4",
"@matterlabs/hardhat-zksync-solc": "^0.4.1",
"@matterlabs/hardhat-zksync-upgradable": "^0.1.3",
"@matterlabs/hardhat-zksync-verify": "^0.1.8",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"hardhat": "^2.17.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zksync-web3": "^0.14.3"
},
"dependencies": {
"@matterlabs/zksync-contracts": "^0.6.1",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable" : "^4.9.3"
},
"scripts": {
"deploy-factory": "yarn hardhat deploy-zksync --script deploy-factory.ts",
"deploy-multisig": "yarn hardhat deploy-zksync --script deploy-multisig.ts",
"test": "NODE_ENV=test hardhat test --network zkSyncTestnet"
}
}