-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.48 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
{
"name": "@layerzerolabs/oapp-example",
"version": "0.3.0",
"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": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@layerzerolabs/eslint-config-next": "~2.3.39",
"@layerzerolabs/lz-definitions": "^2.3.39",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.39",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.39",
"@layerzerolabs/lz-evm-v1-0.7": "^2.3.39",
"@layerzerolabs/lz-v2-utilities": "^2.3.39",
"@layerzerolabs/oapp-evm": "^0.0.4",
"@layerzerolabs/prettier-config-next": "^2.3.39",
"@layerzerolabs/solhint-config": "^2.3.39",
"@layerzerolabs/test-devtools-evm-foundry": "~1.0.0",
"@layerzerolabs/toolbox-foundry": "~0.1.9",
"@layerzerolabs/toolbox-hardhat": "~0.4.0",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@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": "^8.55.0",
"eslint-plugin-jest-extended": "~2.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.22.10",
"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.4.4"
},
"engines": {
"node": ">=18.16.0"
},
"pnpm": {
"overrides": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
}
},
"overrides": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"dependencies": {
"@ensdomains/ens-contracts": "^1.2.2"
}
}