-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.55 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": "hyperlane-wrid",
"devDependencies": {
"@hyperlane-xyz/cli": "^5.3.0",
"@hyperlane-xyz/core": "^5.3.0",
"@hyperlane-xyz/registry": "^4.8.0",
"@hyperlane-xyz/sdk": "^5.3.0",
"@hyperlane-xyz/utils": "^5.3.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"createx": "github:pcaversaccio/createx",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.3",
"hardhat": "^2.22.12",
"hardhat-deploy": "^0.12.4",
"hardhat-verify": "^1.0.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"rimraf": "^6.0.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"yaml": "^2.5.1"
},
"scripts": {
"clean": "rimraf ./artifacts ./cache ./coverage ./types ./coverage.json",
"compile": "hardhat compile",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"test": "hardhat test",
"multicallFactory": "hardhat ignition deploy ignition/modules/MulticallFactory.ts --verify",
"warpDeploy": "hardhat warpDeploy"
}
}