-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.82 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
{
"name": "zechledger",
"version": "1.0.0",
"private": true,
"description": "Privacy-preserving collections, double-entry accounting, and signed scoped audits on Zcash testnet.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apo110-dev/zechledger.git"
},
"homepage": "https://github.com/apo110-dev/zechledger#readme",
"bugs": {
"url": "https://github.com/apo110-dev/zechledger/issues"
},
"keywords": [
"zcash",
"testnet",
"accounting",
"privacy",
"nextjs"
],
"packageManager": "npm@10.9.8",
"engines": {
"node": ">=22.0.0 <23",
"npm": ">=10 <11"
},
"scripts": {
"dev": "next dev -H 127.0.0.1",
"build": "next build",
"start": "node scripts/start-standalone.mjs",
"lint": "eslint .",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check:rpc": "node scripts/check-rpc.mjs",
"verify:capsule": "node scripts/verify-capsule.mjs",
"z3:setup": "bash scripts/z3-testnet.sh setup",
"z3:start": "bash scripts/z3-testnet.sh start",
"z3:status": "bash scripts/z3-testnet.sh status"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"@scure/base": "^1.2.6",
"@vercel/blob": "^2.8.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.468.0",
"next": "16.3.1",
"qrcode.react": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"recharts": "^3.10.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^22.18.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"eslint": "^9.35.0",
"eslint-config-next": "16.3.1",
"prettier": "^3.9.6",
"typescript": "^5.9.2",
"vitest": "^4.1.10"
}
}