-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
{
"name": "custom-paymaster-tutorial",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync": "^1.0.0",
"@matterlabs/hardhat-zksync-chai-matchers": "^1.3.0",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "4.9.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^6.9.2",
"hardhat": "^2.12.4",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zksync-ethers": "^6.7.0"
},
"scripts": {
"test": "NODE_ENV=test hardhat test",
"deploy-pm": "hardhat deploy-zksync --script deploy-paymaster.ts",
"use-pm": "hardhat deploy-zksync --script use-paymaster.ts",
"compile": "hardhat compile",
"fix:fmt": "prettier --write \"{deploy,test}/**/*.{ts,js,jsx,tsx}\"",
"lint:fmt": "prettier --check \"{deploy,test}/**/*.{ts,js,jsx,tsx}\""
}
}