-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.48 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
{
"name": "nft-pool-party",
"version": "0.0.1",
"private": true,
"scripts": {
"anvil": "anvil --code-size-limit 1000000",
"anvil-fork": "source .env && anvil --fork-url $ANVIL_FORK_URL --fork-block-number $ANVIL_FORK_BLOCK_NUMBER --chain-id $ANVIL_CHAIN_ID",
"build": "next build",
"deploy": "source .env && forge create contracts/src/Counter.sol:Counter --rpc-url $FORGE_RPC_URL --private-key $FORGE_PRIVATE_KEY --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"deploy:anvil": "source .env && forge create contracts/src/Counter.sol:Counter --rpc-url http://127.0.0.1:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"dev": "next dev",
"dev:foundry": "npm run dev & wagmi generate --watch & npm run anvil",
"start": "next start",
"lint": "next lint",
"wagmi": "wagmi generate",
"prettier": "prettier --write src/**/*"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^1.0.11",
"@tailwindcss/forms": "^0.5.6",
"@wagmi/cli": "^1.0.0",
"abitype": "^0.9.8",
"next": "^13.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"solmate": "^6.2.0",
"viem": "~0.3.36",
"wagmi": "^1.4.2"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"postcss": "^8.4.30",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4"
}
}