-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.33 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
{
"name": "index41",
"version": "1.1.4",
"private": true,
"license": "MIT",
"description": "Proves transaction A executed before transaction B inside an Ethereum block, on Creditcoin, via Attestcoin merkle-path laterality.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"capture:proof": "node scripts/capture-proof.mjs",
"capture:check": "node scripts/capture-proof.mjs --check",
"test": "forge test --summary",
"test:verbose": "forge test --summary -vvv",
"test:gas": "forge test --gas-report",
"build:contracts": "forge build",
"build:cc3": "FOUNDRY_PROFILE=cc3 forge build",
"spike": "tsx scripts/spike.ts",
"prove": "FOUNDRY_PROFILE=cc3 forge build && tsx src/prove.ts",
"bench": "FOUNDRY_PROFILE=cc3 forge build && tsx scripts/bench.ts",
"find-sandwich": "tsx scripts/find-sandwich.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"fmt:sol": "forge fmt",
"fmt:sol:check": "forge fmt --check",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"lighthouse": "lhci autorun",
"audit": "npm audit --omit=dev --audit-level=high",
"secrets": "gitleaks git --no-banner --redact . && gitleaks dir --no-banner --redact .",
"ci": "npm run lint && npm run typecheck && npm run fmt:sol:check && npm run test && npm run audit",
"ci:full": "npm run ci && npm run build && npm run e2e"
},
"dependencies": {
"@gluwa/usc-contracts": "^0.1.2",
"@gluwa/usc-sdk": "0.18.0",
"@radix-ui/react-accordion": "^1.2.20",
"@radix-ui/react-slot": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^16.3.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^2.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.62.1",
"@types/node": "^22.10.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"autoprefixer": "^10.5.4",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.1",
"postcss": "^8.5.26",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}