-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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": "zkard-contracts",
"description": "Contracts for the ZKard deployment",
"private": true,
"author": "Juan José Ramírez Nieves",
"license": "MIT",
"scripts": {
"deploy:factory": "hardhat deploy-zksync --script deployFactoryAccount.ts",
"deploy:paymaster": "hardhat deploy-zksync --script deployGaslessPaymaster.ts",
"deploy": "hardhat deploy-zksync --script deploy.ts",
"interact": "hardhat deploy-zksync --script interact.ts",
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test --network hardhat"
},
"devDependencies": {
"@matterlabs/hardhat-zksync": "1.1.0",
"@matterlabs/hardhat-zksync-deploy": "1.1.2",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@openzeppelin/contracts": "^4.9.5",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"hardhat": "^2.22.7",
"mocha": "^10.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"zksync-ethers": "^6.11.0"
}
}