-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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
{
"name": "my-rainbowkit-app",
"private": true,
"version": "0.1.0",
"scripts": {
"anvil": "source .env && anvil --fork-url $ANVIL_FORK_URL --chain-id $ANVIL_CHAIN_ID",
"build": "npm run wagmi && next build",
"deploy": "source .env && forge script contracts/script/AboutTimer.s.sol:DeployAboutTimerScript --rpc-url $FORGE_RPC_URL --private-key $FORGE_PRIVATE_KEY",
"deploy:anvil": "source .env && forge script contracts/script/AboutTimer.s.sol:DeployAboutTimerScript --rpc-url http://127.0.0.1:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"dev": "npm run wagmi && next dev",
"dev:foundry": "npm run dev & wagmi generate --watch & npm run anvil",
"start": "next start",
"lint": "next lint",
"wagmi": "wagmi generate"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^1.0.0",
"@wagmi/cli": "^1.0.1",
"@worldcoin/idkit": "^0.4.9",
"axios": "^1.4.0",
"firebase-admin": "^11.8.0",
"js-cookie": "^3.0.5",
"next": "^12.2.6",
"next-cookies": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-timer-hook": "^3.0.6",
"viem": "~0.3.19",
"wagmi": "^1.0.1"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"eslint": "^8.15.0",
"eslint-config-next": "^12.2.6",
"typescript": "^5.0.4"
}
}