-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "staking",
"version": "0.1.0",
"license": "MIT",
"files": [
"abi",
"artifacts",
"contracts",
"deployments",
"exports",
"types"
],
"scripts": {
"clean": "hardhat clean",
"build": "hardhat compile",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"merkle:create": "ts-node scripts/merkle-tree/generate-merkle-tree.ts",
"test": "hardhat test",
"test:forge": "forge test -vvv",
"test:deploy": "RUN_TEST=true yarn hardhat node",
"test:all": "yarn test && yarn test:forge && yarn test:deploy",
"test:coverage": "hardhat coverage && hardhat compile --force",
"deploy-to": "hardhat deploy-to --network",
"solhint": "solhint 'contracts/**/*.sol' --fix",
"myth": "myth analyze contracts/**/*.sol --solc-json remapping-myth.json --execution-timeout 30",
"slither": "slither .",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,md,json,yml}'",
"local:node": "hardhat node"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@layerzerolabs/eslint-config-next": "^2.3.9",
"@layerzerolabs/lz-definitions": "^2.3.9",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.9",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.9",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.9",
"@layerzerolabs/lz-evm-v1-0.7": "^2.3.9",
"@layerzerolabs/lz-v2-utilities": "^2.3.9",
"@layerzerolabs/prettier-config-next": "^2.1.27",
"@layerzerolabs/solhint-config": "^2.1.27",
"@layerzerolabs/test-devtools-evm-foundry": "0.2.3",
"@layerzerolabs/test-devtools-evm-hardhat": "^0.2.3",
"@layerzerolabs/toolbox-foundry": "~0.1.5",
"@layerzerolabs/toolbox-hardhat": "~0.2.25",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-ignition": "^0.15.4",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.7",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@openzeppelin/merkle-tree": "^1.0.6",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.12.13",
"@types/shelljs": "^0.8.15",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethereum-cryptography": "^2.1.3",
"ethers": "^6.9.0",
"hardhat": "^2.16.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.0.0",
"solc": "^0.8.26",
"solhint": "^3.4.1",
"solidity-bytes-utils": "^0.8.2",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"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": {
"minimist": "^1.2.8"
}
}