-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "settleshield",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"browser:proof": "tsx scripts/browser-proof.ts",
"testnet:proof": "tsx scripts/testnet-proof.ts",
"testnet:recover": "tsx scripts/recover-testnet-proof.ts",
"testnet:assemble": "tsx scripts/assemble-live-proof.ts",
"testnet:finalize": "tsx scripts/finalize-live-proof.ts",
"showcase:proof": "tsx scripts/showcase-proof.ts",
"pages:policy": "python scripts/verify-pages-workflow.py"
},
"dependencies": {
"@somnia-chain/markets-sdk": "0.28.1",
"next": "16.3.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"viem": "2.56.1"
},
"devDependencies": {
"@types/node": "24.10.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"playwright-core": "^1.62.1",
"tsx": "4.20.6",
"typescript": "7.0.2",
"vitest": "4.1.11"
},
"packageManager": "pnpm@10.18.1"
}