-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "superchain-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"packageManager": "pnpm@9.0.2",
"scripts": {
"dev": "mprocs",
"dev:frontend": "vite",
"dev:supersim": "pnpm supersim --interop.autorelay --logs.directory supersim-logs",
"build:frontend": "vite build",
"build:contracts": "forge build --root contracts",
"deploy:supersim": "pnpm sup deploy create2-many --toml deploy-config-supersim.toml --private-key 0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356",
"deploy:interop-alpha": "pnpm sup deploy create2-many --toml deploy-config-interop-alpha.toml",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"shadcn:add": "pnpm dlx shadcn@canary add",
"test:xchain-flash-loan": "vitest src/test/xChainFlashLoan.test.ts"
},
"dependencies": {
"@eth-optimism/viem": "^0.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-query": "^5.66.0",
"@wagmi/core": "^2.16.4",
"abitype": "^1.0.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.23.1",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@eth-optimism/super-cli": "^0.0.13",
"@types/node": "^22.13.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"mprocs": "^0.7.2",
"prettier": "^3.5.0",
"supersim": "0.1.0-alpha.45",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0",
"vitest": "^3.0.6",
"wait-port": "^1.1.0"
}
}