-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
38 lines (38 loc) · 1.4 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
{
"name": "@layerzerolabs/oft-wrapper",
"version": "0.0.1",
"license": "MIT",
"files": [
"artifacts/",
"contracts/"
],
"description": "oft-wrapper",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"prettier": "prettier --write test/**/*.js && prettier --write deploy/*.js && prettier --write tasks/*.js && prettier --write contracts/**/*.sol && prettier --write contracts/**/**/*.sol && prettier --write contracts/**/**/**/*.sol",
"lint": "yarn prettier && solhint 'contracts/*.sol' && solhint 'contracts/**/*.sol' && solhint 'contracts/**/**/*.sol' && solhint 'contracts/**/**/**/*.sol'"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^1.0.3",
"@openzeppelin/contracts": "^4.4.1",
"dotenv": "^10.0.0",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.10.5",
"hardhat-deploy-ethers": "^0.3.0-beta.13"
},
"devDependencies": {
"@layerzerolabs/prettier-plugin-solidity": "^1.0.0-beta.19",
"@layerzerolabs/solidity-examples": "0.0.6",
"@layerzerolabs/verify-contract": "1.0.423",
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@matterlabs/hardhat-zksync-verify": "^0.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.4.1",
"solhint": "^3.3.6",
"zksync-web3": "^0.14.3"
}
}