-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (64 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (64 loc) · 2.05 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
{
"name": "mark",
"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",
"contracts:ci-fast": "cd contracts && make ci-fast",
"contracts:ci-full": "cd contracts && make ci-full",
"contracts:release-gate": "cd contracts && make release-gate",
"contracts:rehearse-staging": "cd contracts && make rehearse-production-lock",
"contracts:evidence-manifest": "cd contracts && make generate-evidence-manifest",
"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"
},
"dependencies": {
"@eth-optimism/viem": "^0.4.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-query": "^5.100.9",
"abitype": "^1.2.4",
"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.5.0",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.48.11",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@eth-optimism/super-cli": "^0.0.13",
"@types/node": "^25.6.2",
"@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.5.2",
"globals": "^15.14.0",
"mprocs": "^0.9.2",
"prettier": "^3.8.3",
"supersim": "0.1.0-alpha.45",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "6.4.2",
"wait-port": "^1.1.0"
}
}