-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.3 KB
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
{
"name": "@syncswap/weth",
"version": "1.0.0",
"keywords": [
"weth",
"zksync",
"syncswap",
"ethereum"
],
"devDependencies": {
"@matterlabs/hardhat-zksync-chai-matchers": "^0.1.0",
"@matterlabs/hardhat-zksync-deploy": "^0.6.2",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@matterlabs/hardhat-zksync-toolbox": "^0.1.0",
"@matterlabs/hardhat-zksync-verify": "^0.1.2",
"@matterlabs/hardhat-zksync-vyper": "^0.1.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.1",
"hardhat": "^2.12.7",
"mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"zksync-web3": "^0.13.4"
},
"scripts": {
"build": "yarn hardhat compile",
"build-zk": "yarn hardhat compile --network zkTestnet",
"deploy-testnet": "yarn hardhat deploy-zksync --script 001_deploy.ts --network zkTestnet",
"deploy-mainnet": "yarn hardhat deploy-zksync --script 001_deploy.ts --network zkMainnet",
"test": "yarn hardhat test"
},
"license": "AGPL-3.0-or-later"
}