-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 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
49
50
51
{
"name": "clave-email-recovery",
"version": "0.0.1",
"authors": [
"clave-contracts",
"zkemail"
],
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@zk-email/contracts": "6.3.2",
"@zk-email/email-recovery": "1.0.3",
"@zk-email/ether-email-auth-contracts": "1.0.2",
"commander": "^12.1.0",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@matterlabs/hardhat-zksync": "1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "2.0.7",
"@nomicfoundation/hardhat-ethers": "3.0.6",
"@nomicfoundation/hardhat-verify": "2.0.9",
"@redstone-finance/evm-connector": "0.6.1",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.16",
"@types/elliptic": "6.4.18",
"@types/mocha": "10.0.7",
"chai": "4.5.0",
"dotenv": "16.4.5",
"elliptic": "6.5.4",
"ethers": "6.13.2",
"hardhat": "2.22.7",
"mocha": "10.7.0",
"prettier-plugin-solidity": "1.3.1",
"read-last-lines": "1.8.0",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typescript": "5.3.3",
"zksync-ethers": "6.11.1"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint-check": "npx prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"test": "TEST=true npx hardhat test --network hardhat",
"compile": "npx hardhat compile",
"deploy:mvp": "npx hardhat deploy-zksync --script deploy-mvp.ts",
"deploy:zk-email": "npx hardhat compile && npx hardhat deploy-zksync --script deploy-zk-email.ts"
}
}