generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.68 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.68 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
{
"name": "@PartyDAO/partyworld-swap-router",
"description": "",
"version": "1.0.0",
"author": {
"name": "PartyDAO",
"url": "https://github.com/PartyDAO"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@uniswap/permit2": "github:Uniswap/permit2",
"solmate": "github:transmissions11/solmate"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"prettier": "^3.0.0",
"solhint": "^6.0.1"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"deploy": "forge script Deploy --chain world --rpc-url $WORLDCHAIN_RPC_URL --etherscan-api-key $ETHERSCAN_API_KEY --private-key $PRIVATE_KEY --verify --broadcast -vvv",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "bun run lint:src lint:test lint:script",
"lint:src": "solhint -c .solhint.src.json \"./src/**/*.sol\"",
"lint:test": "solhint -c .solhint.test.json \"./test/**/*.sol\"",
"lint:script": "solhint -c .solhint.script.json \"./script/**/*.sol\"",
"lint:fix": "forge fmt && bun run lint:src lint:test lint:script --fix --noPrompt",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"test": "forge test -f $WORLDCHAIN_RPC_URL -vvv",
"test:coverage": "FOUNDRY_PROFILE=coverage forge coverage --ir-minimum --exclude-tests -f $WORLDCHAIN_RPC_URL"
}
}