generated from dl-solarity/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.79 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.79 KB
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
{
"name": "@distributedlab/spv-gateway",
"version": "0.1.0",
"license": "MIT",
"author": "Distributed Lab",
"description": "ERC-8002: SPV gateway reference implementation",
"keywords": [
"solidity",
"smart-contracts",
"bitcoin",
"spv-gateway"
],
"files": [
"**/*.sol",
"!mock/**/*"
],
"scripts": {
"prepare": "husky",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.ts",
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"test-all": "npx hardhat migrate && npm run test",
"private-network": "npx hardhat node",
"private-network-fork": "npx hardhat node --fork https://mainnet.infura.io/v3/$(grep INFURA_KEY .env | cut -d '\"' -f2)",
"deploy-localhost": "npx hardhat migrate --network localhost",
"deploy-sepolia": "npx hardhat migrate --network sepolia --verify",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain && npx hardhat gobind",
"generate-docs": "npx hardhat markup",
"solhint-check": "solhint --noPoster \"./contracts/**/*.sol\"",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix && npm run solhint-check",
"lint-json-fix": "prettier --write \"./**/*.json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\" --ignore-path .prettierignore",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\"",
"publish-to-npm": "npm run lint-fix && bash ./scripts/publish.sh --public"
},
"dependencies": {
"@openzeppelin/contracts": "5.2.0",
"@openzeppelin/contracts-upgradeable": "5.2.0",
"@solarity/solidity-lib": "3.2.0",
"solady": "0.1.23"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@openzeppelin/merkle-tree": "^1.0.8",
"@solarity/hardhat-gobind": "^1.2.2",
"@solarity/hardhat-markup": "^1.0.10",
"@solarity/hardhat-migrate": "^3.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.2",
"axios": "^1.9.0",
"chai": "^4.5.0",
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"fs-extra": "^11.3.0",
"hardhat": "^2.22.18",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.2",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^6.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.7.3"
}
}