-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.77 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
{
"name": "zklink-l3-contracts",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://zklink.io",
"keywords": [
"zklink",
"zkevm-rollup",
"cross chain"
],
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^1.1.1",
"@matterlabs/hardhat-zksync-solc": "^1.0.3",
"@matterlabs/hardhat-zksync-upgradable": "^1.2.1",
"@matterlabs/hardhat-zksync-verify": "^1.2.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"hardhat": "^2.22.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.0",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.11",
"typechain": "^8.3.2",
"typescript-eslint": "^7.4.0",
"zksync-ethers": "^6.0.0"
},
"scripts": {
"compile": "npx hardhat compile",
"test": "DEFAULT_NETWORK=hardhat npx hardhat test",
"coverage": "DEFAULT_NETWORK=hardhat npx hardhat coverage",
"export-abi": "npx hardhat export-abi",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --log-level warn 'script/*.ts' 'test/*.ts' --check && eslint 'script/*.ts' 'test/*.ts'",
"lint:js:fix": "prettier --log-level warn 'script/*.ts' 'test/*.ts' --write && eslint 'script/*.ts' 'test/*.ts' --fix",
"lint:sol": "prettier --log-level warn 'contracts/**/*.sol' --check && solhint 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --log-level warn 'contracts/**/*.sol' --write"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5"
}
}