generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "@PartyDAO/party-create-contracts",
"version": "1.0.0",
"author": {
"name": "PartyDAO",
"url": "https://github.com/PartyDAO"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@partydao/solidity-deploy": "^1.1.1",
"@uniswap/v3-core": "Uniswap/v3-core",
"@uniswap/v3-periphery": "Uniswap/v3-periphery#0.8",
"ethers": "^6.12.1",
"solady": "^0.0.212",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.12.10",
"@types/yargs": "^17.0.32",
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"prettier": "^3.0.0",
"solhint": "^3.6.2"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"test": "forge test",
"test:coverage": "COVERAGE=true forge coverage -f $SEPOLIA_RPC_URL",
"test:coverage:report": "COVERAGE=true forge coverage -f $SEPOLIA_RPC_URL --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}