generated from EthSign/forge-hardhat-template-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.71 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
{
"name": "@hyperlane-xyz/community",
"version": "1.0.0",
"description": "A repository for community-contributions to Hyperlane protocol.",
"repository": "https://github.com/hyperlane-xyz/community-isms",
"license": "Apache-2.0",
"keywords": [
"Hyperlane",
"Solidity"
],
"scripts": {
"prepare": "husky",
"clean": "forge clean && hardhat clean && rm -rf cache_hardhat",
"build": "forge build",
"build:hh": "hardhat compile",
"lint:sol": "forge fmt --check && solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml,ts} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml,ts} --ignore-path=.prettierignore",
"test": "forge test",
"test:coverage": "forge coverage",
"test:gas": "forge test --gas-report"
},
"dependencies": {
"@hyperlane-xyz/core": "^5.8.0",
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@types/node": ">=16.0.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"dotenv": "^16.4.5",
"ds-test": "github:dapphub/ds-test",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.12.1",
"forge-std": "github:foundry-rs/forge-std#v1",
"hardhat": "^2.22.4",
"hardhat-deploy": "^0.12.4",
"husky": "9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"solhint": "^5.0.1",
"solidity-docgen": "0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "~5.0.4"
}
}