-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "shieldpay",
"version": "0.1.0",
"private": true,
"description": "Payroll & Payment Proof on Stellar + ZK — pay anyone, prove it mathematically, protect your company forever.",
"license": "MIT",
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"zk:setup": "bash circuits/scripts/setup.sh",
"zk:prove": "tsx circuits/scripts/generate_proof.ts",
"zk:ci": "node circuits/scripts/ci_prove_verify.mjs",
"contracts:build": "bash contracts/deploy/build.sh",
"contracts:deploy": "bash contracts/deploy/deploy.sh",
"seed": "tsx scripts/seed.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:flow": "tsx scripts/test_flow.ts",
"demo": "tsx scripts/demo.ts",
"setup:usdc": "tsx scripts/setup_usdc_testnet.ts",
"seed:demo": "tsx scripts/seed_demo.ts",
"cleanup:db": "tsx scripts/cleanup_db.ts",
"smoke": "node scripts/smoke.mjs",
"e2e": "node scripts/e2e.mjs"
},
"dependencies": {
"@privy-io/react-auth": "^3.31.0",
"@privy-io/server-auth": "^1.32.5",
"@radix-ui/react-dialog": "^1.1.18",
"@radix-ui/react-select": "^2.3.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.16",
"@radix-ui/react-tooltip": "^1.1.2",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.1",
"@stellar/freighter-api": "^3.0.0",
"@stellar/stellar-sdk": "^15.1.0",
"clsx": "^2.1.1",
"jose": "^5.6.3",
"jspdf": "^4.2.1",
"lucide-react": "^0.417.0",
"nanoid": "^5.1.16",
"next": "^14.2.5",
"papaparse": "^5.4.1",
"pg": "^8.12.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"snarkjs": "^0.7.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@serwist/next": "^9.5.11",
"@types/node": "^20.14.11",
"@types/papaparse": "^5.3.14",
"@types/pg": "^8.11.6",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"serwist": "^9.5.11",
"sharp": "^0.35.3",
"tailwindcss": "^3.4.7",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vitest": "^2.1.9"
}
}