generated from blockful-io/foundry-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.39 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
{
"name": "grant-application-egistry",
"description": "Register your Grant Application",
"version": "1.0.0",
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"forge-std": "github:foundry-rs/forge-std#v1.8.1"
},
"devDependencies": {
"prettier": "^3.0.0",
"solhint": "^3.6.2"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"blockful",
"karma",
"karmagap",
"trustful",
"grantprograms"
],
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"test": "forge test",
"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\"",
"deploy": "forge create GrantRegistry --rpc-url $RPC_URL --private-key $PRIVATE_KEY",
"verify": "forge verify-contract $ADDRESS_RESOLVER --rpc-url $RPC_URL --etherscan-api-key $API_KEY_ARBISCAN",
"test:grant": "forge test --match-test grant --fork-url $RPC_URL -vvv --via-ir",
"test:badge": "forge test --match-test badge --fork-url $RPC_URL -vvv --via-ir",
"test:scorer": "forge test --match-test scorer --fork-url $RPC_URL -vvv --via-ir"
}
}