-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "yellow-pvp-wager-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clearnode:mock": "node scripts/mock-clearnode.js",
"deploy:custody": "node scripts/deploy-simple-custody.js",
"merkle:build": "ts-node scripts/build-merkle-tree.ts",
"reserves:scan": "npx tsx scripts/scan-reserves.ts",
"proof:generate": "npx tsx scripts/generate-proof.ts",
"proof:verify": "npx tsx scripts/verify-proof.ts",
"proof:publish": "npx tsx scripts/publish-proof.ts",
"proof:verify-onchain": "npx tsx scripts/verify-on-chain.ts",
"proof:automate": "npx tsx scripts/automate-proof.ts",
"verifier:deploy": "node scripts/deploy-verifier.js"
},
"dependencies": {
"@erc7824/nitrolite": "^0.1.0",
"dotenv": "^17.2.3",
"ethers": "^6.9.0",
"keccak256": "^1.0.6",
"lucide-react": "^0.294.0",
"merkletreejs": "^0.6.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^2.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/ws": "^8.5.9",
"autoprefixer": "^10.4.16",
"circomlib": "^2.0.5",
"postcss": "^8.4.31",
"snarkjs": "^0.7.6",
"solc": "^0.8.33",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
}
}