-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "flat-money-contracts-v1",
"version": "1.0.0",
"description": "Contains smart contracts for Flat Money protocol",
"scripts": {
"lint:sol": "solhint 'src/**/*.sol' --max-warnings 0",
"lint:sol:fix": "pnpm lint:sol -- --fix",
"test": "forge t",
"test:unit": "forge t --no-match-test '(test_fuzz:?)'",
"test:fuzz": "forge t --match-test '(test_fuzz:?)'",
"abigen": "hardhat export-abi",
"prettier:check": "prettier --check --plugin=prettier-plugin-solidity '{src,test,script}/**/*.sol'",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"homepage": "https://flat.money/",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/upgrades-core": "^1.33.1",
"dotenv": "^16.4.5",
"ethers": "^6.12.1",
"hardhat": "^2.22.3",
"hardhat-abi-exporter": "^2.10.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
}
}