-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@layerzerolabs/oft-example",
"version": "0.2.9",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rm -rf artifacts cache out",
"compile": "$npm_execpath run compile:forge && $npm_execpath run compile:hardhat",
"compile:forge": "forge build",
"compile:hardhat": "hardhat compile",
"lint": "$npm_execpath run lint:js && $npm_execpath run lint:sol",
"lint:fix": "eslint --fix '**/*.{js,ts,json}' && prettier --write . && solhint 'contracts/**/*.sol' --fix --noPrompt",
"lint:js": "eslint '**/*.{js,ts,json}' && prettier --check .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "$npm_execpath run test:forge && $npm_execpath run test:hardhat",
"test:forge": "forge test",
"test:hardhat": "hardhat test"
},
"resolutions": {
"@nomicfoundation/edr": "0.3.5",
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@layerzerolabs/eslint-config-next": "~2.3.3",
"@layerzerolabs/lz-definitions": "^2.3.25",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.25",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.25",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.25",
"@layerzerolabs/lz-evm-v1-0.7": "^2.3.25",
"@layerzerolabs/lz-v2-utilities": "^2.3.25",
"@layerzerolabs/oft-evm": "^0.0.5",
"@layerzerolabs/prettier-config-next": "^2.3.25",
"@layerzerolabs/solhint-config": "^2.3.3",
"@layerzerolabs/test-devtools-evm-foundry": "~0.2.7",
"@layerzerolabs/toolbox-foundry": "~0.1.7",
"@layerzerolabs/toolbox-hardhat": "~0.2.40",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@rushstack/eslint-patch": "^1.7.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "~18.18.14",
"chai": "^4.4.1",
"dotenv": "^16.4.1",
"eslint-plugin-jest-extended": "~2.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.22.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.1",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"solhint": "^4.1.1",
"solidity-bytes-utils": "^0.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.16.0"
},
"pnpm": {
"overrides": {
"@nomicfoundation/edr": "0.3.5",
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
}
},
"overrides": {
"@nomicfoundation/edr": "0.3.5",
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"dependencies": {
"@layerzerolabs/devtools-evm-hardhat": "^0.3.26"
}
}