-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "bull-bear",
"version": "0.0.1",
"private": true,
"homepage": ".",
"scripts": {
"anvil": "source .env && anvil --fork-url $ANVIL_FORK_URL --chain-id $ANVIL_CHAIN_ID",
"deploy:scroll": "source .env && forge script script/BullBear.s.sol:DeployScroll --rpc-url https://alpha-rpc.scroll.io/l2 --legacy --broadcast -vv",
"deploy:goerli": "source .env && forge script script/BullBear.s.sol:Deploy --rpc-url https://endpoints.omniatech.io/v1/eth/goerli/public --broadcast -vvvv",
"deploy:base": "source .env && forge script script/BullBear.s.sol:DeployBase --rpc-url https://goerli.base.org --broadcast -vvvv",
"deploy:anvil": "source .env.local && forge script script/BullBear.s.sol:DeployAnvil --fork-url http://localhost:8545 --broadcast",
"dev": "npm run wagmi && vite",
"vite-dev": "vite",
"dev:foundry": "npm run dev & wagmi generate --watch & npm run anvil",
"build": "tsc && vite build",
"preview": "vite preview",
"wagmi": "wagmi generate"
},
"dependencies": {
"@headlessui/react": "^1.7.12",
"@oveddan-behave-graph/core": "^0.11.1",
"@oveddan-behave-graph/flow": "^1.0.1",
"@oveddan-behave-graph/scene": "^1.0.11",
"@rainbow-me/rainbowkit": "^0.11.0",
"@react-three/csg": "^2.0.7",
"@react-three/drei": "^9.57.0",
"@react-three/fiber": "^8.11.5",
"@react-three/postprocessing": "^2.7.0",
"@thirdweb-dev/react": "^3.10.3",
"@thirdweb-dev/storage": "^1.1.0",
"@types/three": "^0.149.0",
"@wagmi/cli": "~0.1.5",
"buffer": "^6.0.3",
"ethers": "^5.7.2",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.7.1",
"react-split-pane": "^0.1.92",
"reactflow": "^11.3.2",
"suspend-react": "^0.0.9",
"three": "^0.150.1",
"three-stdlib": "^2.21.8",
"util": "^0.12.4",
"wagmi": "~0.11.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-react": "^2.1.0",
"abitype": "^0.5.0",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"hardhat": "^2.13.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.3",
"tailwindcss": "^3.2.7",
"ts-node": ">=8.0.0",
"typescript": "^4.9.4",
"use-why-did-you-update": "^0.1.0",
"vite": "^3.1.8"
}
}