-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 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
35
{
"name": "hardhat-project",
"scripts": {
"format": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"prepare": "husky install"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "^5.0.1",
"circom_tester": "^0.0.20",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"dotenv": "^16.0.0",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^9.0.10",
"keccak256": "^1.0.2",
"lint-staged": "^15.2.1",
"merkletreejs": "^0.2.13",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"viem": "^2.5.0"
},
"lint-staged": {
"*.sol": "prettier --write --plugin=prettier-plugin-solidity",
"*.{json,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"zksync-cli": "^1.5.1"
}
}