-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "wentokens",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "typewind generate",
"anvil": "source .env && anvil --fork-url $ANVIL_FORK_URL --chain-id $ANVIL_CHAIN_ID",
"clean": "eslint --fix --ext .js,.jsx,.ts,.tsx . && prettier . --write",
"deploy": "source .env && forge create contracts/src/Airdrop.sol:Airdrop --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/Airdrop.sol:Airdrop --rpc-url http://127.0.0.1:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"dev": "yarn wagmi && vite",
"dev:foundry": "yarn dev & wagmi generate --watch & npm run anvil",
"build": "yarn wagmi && tsc && vite build",
"preview": "vite preview",
"wagmi": "wagmi generate"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^0.8.1",
"@wagmi/cli": "~0.1.3",
"buffer": "^6.0.3",
"daisyui": "^2.50.0",
"ethers": "^5.7.2",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-papaparse": "^4.1.0",
"react-table": "^7.8.0",
"sonner": "^0.1.1",
"util": "^0.12.4",
"wagmi": "~0.11.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@iconify/react": "^4.1.0",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"typewind": "*",
"vite": "^4.0.4",
"vite-plugin-eslint": "^1.8.1"
}
}