-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "custom-paymaster-tutorial",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync-chai-matchers": "^0.1.3",
"@matterlabs/hardhat-zksync-deploy": "^0.6.1",
"@matterlabs/hardhat-zksync-solc": "^0.4.0",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.7.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"hardhat": "^2.12.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"zksync-web3": "^0.14.3"
},
"scripts": {
"test": "NODE_ENV=test hardhat test",
"deploy": "hardhat deploy-zksync",
"compile": "hardhat compile",
"fix:fmt": "prettier --write \"{deploy,test}/**/*.{ts,js,jsx,tsx}\"",
"lint:fmt": "prettier --check \"{deploy,test}/**/*.{ts,js,jsx,tsx}\""
}
}