-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (41 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (41 loc) · 1.51 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
46
47
48
49
50
{
"name": "wagmi-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "biome check .",
"preview": "vite preview",
"contracts:build": "forge build",
"contracts:test": "forge test",
"contracts:deploy": "forge script script/Deploy.s.sol --rpc-url $ETH_RPC_URL --broadcast",
"contracts:verify": "forge verify-contract",
"anvil": "anvil --fork-url $MAINNET_RPC_URL",
"anvil:no-fork": "anvil",
"contracts:test:fork": "forge test --fork-url $MAINNET_RPC_URL",
"deploy:local": "forge script contracts/script/Deploy.s.sol --rpc-url local --broadcast",
"deploy:sepolia": "forge script contracts/script/Deploy.s.sol --rpc-url sepolia --broadcast --verify",
"deploy:mainnet": "forge script contracts/script/Deploy.s.sol --rpc-url mainnet --broadcast --verify",
"verify:sepolia": "forge verify-contract --chain-id 11155111 --etherscan-api-key $ETHERSCAN_API_KEY",
"verify:mainnet": "forge verify-contract --chain-id 1 --etherscan-api-key $ETHERSCAN_API_KEY"
},
"dependencies": {
"@tanstack/react-query": "5.45.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "latest",
"wagmi": "latest"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@wagmi/cli": "latest",
"buffer": "^6.0.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}