-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.29 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
{
"name": "ethx_oft",
"version": "0.2.1",
"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.1.23",
"@layerzerolabs/lz-definitions": "~2.1.23",
"@layerzerolabs/lz-evm-messagelib-v2": "~2.1.23",
"@layerzerolabs/lz-evm-oapp-v2": "~2.1.23",
"@layerzerolabs/lz-evm-protocol-v2": "~2.1.23",
"@layerzerolabs/lz-evm-v1-0.7": "~2.1.23",
"@layerzerolabs/lz-v2-utilities": "~2.1.23",
"@layerzerolabs/prettier-config-next": "^2.1.23",
"@layerzerolabs/solhint-config": "^2.1.23",
"@layerzerolabs/toolbox-foundry": "~0.1.2",
"@layerzerolabs/toolbox-hardhat": "~0.2.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"@rushstack/eslint-patch": "^1.7.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"dotenv": "^16.4.1",
"ethers": "^5.7.2",
"hardhat": "^2.19.5",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.1",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"solhint": "5.0.1",
"solidity-bytes-utils": "^0.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.16.0"
},
"overrides": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"pnpm": {
"overrides": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
}
}
}