-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 735 Bytes
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
{
"name": "contracts",
"version": "0.0.0",
"description": "Recall core contracts",
"main": "index.js",
"scripts": {
"test": "forge test --ffi",
"build": "forge build",
"fmt": "forge fmt --check",
"fmt:fix": "forge fmt",
"lint": "solhint 'src/**/*.sol'",
"lint:fix": "solhint 'src/**/*.sol' --fix",
"format": "pnpm run fmt:fix && pnpm run lint:fix",
"clean": "forge clean"
},
"keywords": [],
"author": "",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@openzeppelin/upgrades-core": "^1.40.0",
"hardhat": "^2.22.13",
"solhint": "^5.0.3"
},
"dependencies": {
"hardhat-storage-layout-changes": "^0.1.2"
}
}