-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
46 lines (46 loc) · 1.52 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
{
"name": "clave-contracts",
"version": "1.0.0",
"author": "getclave.io",
"dependencies": {
"@matterlabs/zksync-contracts": "0.6.1",
"@nomad-xyz/excessively-safe-call": "github:nomad-xyz/ExcessivelySafeCall",
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "4.6.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": {
"compile": "npx hardhat compile",
"deploy:mvp": "npx hardhat deploy-zksync --script deploy-mvp.ts",
"lint": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint-check": "npx prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"test-real": "TEST=true npx hardhat test --network hardhat",
"test": "exit 0"
}
}