-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.41 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.41 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
{
"name": "listrecordsv2",
"version": "1.0.0",
"repository": "github:ethereumfollowprotocol/ListRecordsV2",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "forge build",
"test": "forge test --match-path test/EFPListRecords.t.sol --fork-url ${ETH_RPC_URL} -vv && forge test --match-path test/EFPListMinter.t.sol --fork-url ${ETH_RPC_URL} -vv ",
"coverage": "forge coverage --fork-url ${ETH_RPC_URL} --report lcov && lcov-viewer lcov -o ./coverage ./lcov.info",
"deploy": "forge script script/deploy.s.sol --fork-url ${ETH_RPC_URL} --broadcast --private-key ${PRIVATE_KEY}",
"deploy:testnet": "forge script script/deploy.s.sol --fork-url ${TESTNET_RPC_URL} --broadcast --private-key ${PRIVATE_KEY}",
"deploy:local": "forge script ./script/deploy.s.sol --fork-url http://127.0.0.1:8545 --broadcast --private-key ${PRIVATE_KEY}",
"testnet": "anvil --chain-id 8453 --fork-url ${ETH_RPC_URL}"
},
"dependencies": {
"@lcov-viewer/cli": "^1.3.0",
"@wagmi/cli": "^2.0.4",
"viem": "^2.9.29",
"wagmi": "^2.3.1"
},
"devDependencies": {
"@types/bun": "^1.0.2",
"@types/node": "^20.11.5",
"bun": "^1.0.24",
"prettier": "^3.2.4",
"solc": "^0.8.23",
"solhint": "^4.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}