This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.66 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": "argent-contracts-zksync",
"version": "0.1.0",
"main": "index.js",
"author": "Argent Labs",
"license": "MIT",
"scripts": {
"start": "./bin/start-dev-node.sh",
"stop": "cd local-setup && docker-compose down",
"test": "hardhat test --typecheck",
"lint": "solhint contracts/**/*.sol",
"recompile": "hardhat clean && hardhat compile",
"format": "prettier --write contracts src test scripts",
"format:check": "prettier --check contracts src test scripts",
"gas:write": "hardhat run scripts/write-gas-report.ts",
"gas:check": "hardhat run scripts/check-gas-report.ts",
"postinstall": "./bin/postinstall.sh",
"clear": "hardhat clean && cd local-setup && ./clear.sh"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.16",
"@matterlabs/hardhat-zksync-verify": "^0.1.7",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.13.1",
"hardhat-storage-layout": "^0.1.7",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4",
"zksync-web3": "^0.14.3"
}
}