forked from getclave/clave-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.96 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
52
53
54
{
"name": "clave-contracts",
"version": "1.0.0",
"main": "index.js",
"author": "getclave.io",
"license": "MIT",
"devDependencies": {
"@getclave/constants": "1.0.0",
"@matterlabs/hardhat-zksync-chai-matchers": "1.2.1",
"@matterlabs/hardhat-zksync-deploy": "1.1.2 ",
"@matterlabs/hardhat-zksync-solc": "1.0.6",
"@matterlabs/hardhat-zksync-toolbox": "1.2.1",
"@matterlabs/hardhat-zksync-verify": "1.2.2",
"@nomicfoundation/hardhat-chai-matchers": "2.0.3",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-verify": "2.0.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "^4.3.4",
"@types/elliptic": "^6.4.15",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"elliptic": "^6.5.4",
"ethers": "^6.9.2",
"hardhat": "^2.19.2",
"mocha": "^10.2.0",
"prettier-plugin-solidity": "^1.1.3",
"read-last-lines": "^1.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "5.3.3",
"zksync-ethers": "^6.0.0"
},
"scripts": {
"test": "exit 0",
"test-real": "hardhat test --network inMemoryNode",
"test-real-docker": "hardhat test --network dockerizedNode",
"auto-test": "./test/bash/autotest.sh",
"gas-report": "./test/bash/snapshot.sh",
"release-dev": "npx hardhat deploy-zksync --script release-dev.ts",
"release-prod": "npx hardhat deploy-zksync --script release-prod.ts",
"lint-check": "npx prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'"
},
"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",
"@redstone-finance/evm-connector": "0.3.6",
"ts-morph": "^19.0.0"
}
}