forked from woof-software/compound-capo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.46 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "solidity-base-hardhat-foundry",
"version": "1.0.0",
"keywords": [
"blockchain",
"solidity"
],
"scripts": {
"gen:docs": "rm -rf docs && pnpm hardhat docgen",
"gen:abi": "rm -rf abi && pnpm hardhat export-abi",
"coverage": "bash scripts/commands/coverage.sh",
"coverageh": "pnpm coverage h",
"slither": "pnpm clean:build && slither .",
"test": "pnpm testh && pnpm testf",
"lint": "pnpm lint:ts && pnpm lint:sol",
"lint:fix": "pnpm lint:ts:fix && pnpm lint:sol:fix",
"compile": "pnpm compileh && pnpm compilef",
"compileh": "pnpm hardhat compile",
"clean": "bash scripts/commands/clean.sh",
"size": "pnpm compile:force && pnpm hardhat size-contracts --no-compile",
"testh": "pnpm hardhat test",
"testh:vvv": "pnpm testh --trace --gascost",
"testh:vvvv": "pnpm testh --fulltrace --gascost",
"testh:check": "pnpm testh --typecheck",
"testh:fork": "FORKING=true pnpm testh",
"testh:gas": "REPORT_GAS=true SERIAL=true RUN_OPTIMIZER=true pnpm testh",
"testh:gas:json": "REPORT_GAS_FILE_TYPE=json pnpm testh:gas",
"testh:gas:md": "REPORT_GAS_FILE_TYPE=md pnpm testh:gas",
"slither:md": "pnpm clean:build && bash scripts/commands/slither.sh",
"compile:force": "pnpm compileh --force",
"clean:build": "bash scripts/commands/clean.sh build",
"clean:oz": "bash scripts/commands/clean.sh oz",
"clean:ignition": "bash scripts/commands/clean.sh ignition",
"clean:cov": "bash scripts/commands/clean.sh coverage",
"compileh:4": "pnpm compileh --max-memory 4096",
"coverageh:4": "pnpm coverage h 4096",
"coverageh:8": "pnpm coverage h 8192",
"lint:ts": "pnpm prettier --check \"**/*.{ts,js}\" && pnpm eslint .",
"lint:ts:fix": "pnpm prettier --write \"**/*.{ts,js}\" && pnpm eslint . --fix",
"lint:sol": "pnpm solhint \"contracts/**/*.sol\" && pnpm prettier --no-error-on-unmatched-pattern --check \"{contracts,test}/**/*.sol\"",
"lint:sol:fix": "pnpm solhint --fix \"contracts/**/*.sol\" && pnpm prettier --no-error-on-unmatched-pattern --write \"{contracts,test}/**/*.sol\"",
"preinstall": "node ./scripts/project-config/setup/preinstall.js",
"postinstall": "node ./scripts/project-config/setup/postinstall.js",
"prepare": "husky"
},
"files": [
"/contracts/**/*.sol",
"!/mocks/**/*"
],
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@commitlint/types": "19.8.0",
"@eslint/compat": "1.2.8",
"@eslint/js": "9.25.1",
"@nomicfoundation/ethereumjs-util": "9.0.4",
"@nomicfoundation/hardhat-chai-matchers": "2.0.8",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-foundry": "1.1.3",
"@nomicfoundation/hardhat-ignition": "0.15.11",
"@nomicfoundation/hardhat-ignition-ethers": "0.15.11",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-toolbox": "5.0.0",
"@nomicfoundation/hardhat-verify": "2.0.13",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "22.15.2",
"chai": "4.5.0",
"dotenv": "16.5.0",
"eslint": "9.25.1",
"eslint-config-prettier": "10.1.2",
"ethers": "6.13.7",
"globals": "16.0.0",
"hardhat": "2.23.0",
"hardhat-abi-exporter": "2.11.0",
"hardhat-contract-sizer": "2.10.0",
"hardhat-exposed": "0.3.19",
"hardhat-gas-reporter": "2.2.3",
"hardhat-tracer": "3.1.0",
"husky": "9.1.7",
"inquirer": "12.6.0",
"lint-staged": "15.5.1",
"mocha": "11.1.0",
"prettier": "3.5.3",
"prettier-plugin-solidity": "2.0.0",
"solhint": "5.0.5",
"solidity-coverage": "0.8.15",
"solidity-docgen": "0.6.0-beta.36",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typescript": "5.8.3",
"typescript-eslint": "8.31.0"
},
"packageManager": "pnpm@10.10.0",
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=10.9.0",
"node": ">=22.10.0 <23.0.0 || >=23.11.0"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.3"
}
}