-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "gravanft",
"author": "Davis Shaver",
"license": "Unlicense",
"version": "1.0.0",
"description": "NFT adapter for Gravatars",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.17"
},
"files": [
"*.sol"
],
"devDependencies": {
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0"
},
"scripts": {
"build:with-ir": "forge build --extra-output ir",
"build": "forge build",
"build:slither": "forge build --build-info --skip */test/** */test/*/** */script/** --force",
"chain": "anvil --fork-url https://mainnet.infura.io/v3/$INFURA_API_KEY",
"clean": "forge clean",
"generate-ir": "cat ./out/ProtoGravaNFT.sol/ProtoGravaNFT.json | jq -r .ir | perl -pe 's/\\n/\n/g' > ./out/ir.sol",
"lint:check": "yarn prettier:check && yarn solhint:check",
"lint": "yarn prettier && yarn solhint",
"prepare": "husky install",
"prettier:check": "prettier --check \"src/**/*.sol\"",
"prettier": "yarn prettier:check --write",
"slither": "slither .",
"solhint:check": "solhint --config ./.solhint.json \"src/**/*.sol\"",
"solhint": "yarn solhint:check --fix",
"test": "forge test --fork-url https://mainnet.infura.io/v3/$INFURA_API_KEY",
"test:local": "forge test --fork-url http://127.0.0.1:8545/"
},
"dependencies": {
"dotenv": "^16.4.5",
"ethers": "^5.5.2",
"keccak256": "^1.0.6"
}
}