-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.06 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
{
"name": "@zoralabs/protocol-rewards",
"version": "1.2.3",
"repository": "https://github.com/ourzora/zora-protocol.git",
"license": "MIT",
"files": [
"src/",
"_imagine",
"out/*/*.abi.json",
"deterministicConfig.json"
],
"scripts": {
"build:sizes": "forge build --sizes",
"dev": "FOUNDRY_PROFILE=dev forge test --watch -vvv",
"test": "forge test",
"build:contracts": "forge build --extra-output-files abi",
"prettier:check": "prettier --check 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"prettier": "prettier --write 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"lint": "prettier --check 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'"
},
"dependencies": {
"forge-std": "https://github.com/foundry-rs/forge-std#705263c95892a906d7af65f0f73ce8a4a0c80b80",
"ds-test": "https://github.com/dapphub/ds-test#cd98eff28324bfac652e63a239a60632a761790b"
},
"devDependencies": {
"@types/node": "20.3.2",
"@lavamoat/preinstall-always-fail": "2.0.0",
"prettier-plugin-solidity": "^1.3.1"
}
}