forked from matter-labs/era-system-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
49
50
51
{
"name": "system-contracts",
"version": "0.1.0",
"repository": "[email protected]:matter-labs/system-contracts.git",
"license": "MIT",
"dependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@nomiclabs/hardhat-solpp": "^2.0.1",
"commander": "^9.4.1",
"ethers": "^5.7.0",
"hardhat": "^2.11.0",
"preprocess": "^3.2.0",
"zksync-web3": "^0.13.0"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-solc": "^0.3.15",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@typechain/ethers-v5": "^10.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"chai": "^4.3.6",
"hardhat-typechain": "^0.3.5",
"mocha": "^10.0.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"template-file": "^6.0.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typechain": "^8.1.1",
"typescript": "^4.6.4"
},
"mocha": {
"timeout": 240000,
"exit": true,
"color": false,
"slow": 0,
"require": [
"ts-node/register"
]
},
"scripts": {
"test": "zk f mocha test/system-contract-test.test.ts",
"build": "hardhat compile",
"clean": "hardhat clean",
"fmt": "prettier --config prettier.js --write contracts/*.sol contracts/**/*.sol",
"preprocess": "rm -rf ./bootloader/build && yarn ts-node scripts/process.ts",
"deploy-preimages": "ts-node scripts/deploy-preimages.ts",
"compile-yul": "ts-node scripts/compile-yul.ts"
}
}