-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.36 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.36 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
67
68
69
70
71
72
73
{
"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",
"circuits:build": "pnpm --filter @mark/circuits run build",
"circuits:test": "pnpm --filter @mark/circuits run test",
"check": "pnpm -s typecheck && pnpm -s lint && pnpm -s circuits:test && pnpm -s contracts:ci-fast",
"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",
"prepare": "lefthook install",
"review": "./scripts/review.sh",
"review:quick": "./scripts/review.sh --quick"
},
"dependencies": {
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eth-optimism/super-cli": "^0.0.13",
"@types/node": "^25.9.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^15.15.0",
"lefthook": "^2.1.9",
"mprocs": "^0.9.5",
"prettier": "^3.8.3",
"supersim": "0.1.0-alpha.45",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "6.4.2"
},
"engines": {
"node": ">=24"
},
"pnpm": {
"overrides": {
"ws@>=8.0.0 <8.21.0": "8.21.0",
"underscore@<1.13.7": ">=1.13.7"
}
}
}