-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.15 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@aethelred/zeroid",
"version": "1.0.0",
"private": true,
"description": "ZeroID — Self-sovereign identity with ZK proofs and TEE verification on the Aethelred network",
"author": "Aethelred Foundation",
"license": "BUSL-1.1",
"scripts": {
"dev": "next dev -p 3003",
"build": "next build",
"start": "next start -p 3003",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"validate": "npm run lint && npm run type-check && npm run format:check && npm run circuits:validate && npm run routes:validate && npm run workflows:validate",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --reporters=default",
"test:changed": "jest --changedSince=main",
"test:e2e": "playwright test",
"circuits:compile": "circom circuits/age/age_proof.circom --r1cs --wasm --sym -o build/circuits/age && circom circuits/age/age_context_proof.circom --r1cs --wasm --sym -o build/circuits/age_context_v2 && circom circuits/residency/residency_proof.circom --r1cs --wasm --sym -o build/circuits/residency && circom circuits/credit/credit_tier_proof.circom --r1cs --wasm --sym -o build/circuits/credit",
"circuits:validate": "node scripts/validate-circuit-artifacts.mjs",
"circuits:validate:artifacts": "node scripts/validate-circuit-artifacts.mjs --require-artifacts",
"routes:validate": "node scripts/check-route-validation-targets.mjs",
"workflows:validate": "node scripts/check-workflow-actions-pinned.mjs",
"circuits:setup": "snarkjs groth16 setup build/circuits/age/age_proof.r1cs pot12_final.ptau build/circuits/age/age_proof_0000.zkey",
"circuits:verify": "snarkjs zkey verify build/circuits/age/age_proof.r1cs pot12_final.ptau build/circuits/age/age_proof_final.zkey",
"contracts:compile": "forge build",
"contracts:test": "forge test",
"analyze": "ANALYZE=true next build",
"security:audit": "npm audit --audit-level=low",
"security:audit:all": "npm audit --audit-level=low && npm --prefix backend audit --audit-level=low && npm run routes:validate && npm run workflows:validate"
},
"dependencies": {
"@headlessui/react": "^1.7.0",
"@tanstack/react-query": "^5.17.0",
"accounts": "^0.6.7",
"circomlib": "^2.0.5",
"clsx": "^2.1.0",
"date-fns": "^3.0.0",
"ethers": "^6.9.0",
"framer-motion": "^11.0.0",
"jose": "^5.2.0",
"lucide-react": "^0.303.0",
"next": "15.5.18",
"next-themes": "^0.2.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.0",
"sharp": "^0.33.0",
"snarkjs": "^0.7.3",
"sonner": "^1.3.0",
"tailwind-merge": "^2.2.0",
"viem": "^2.48.11",
"wagmi": "^3.6.4",
"zod": "^3.22.0",
"zustand": "^4.4.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@playwright/test": "^1.41.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.17",
"circom_tester": "^0.0.24",
"encoding": "^0.1.13",
"eslint": "^8.56.0",
"eslint-config-next": "15.5.18",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.1.0",
"postcss": "8.5.10",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.0",
"typescript": "^5.7.3",
"undici": "^6.21.3"
},
"overrides": {
"@tootallnate/once": "3.0.1",
"axios": "1.15.2",
"bfj": "9.1.3",
"defu": "6.1.7",
"fast-xml-builder": "1.2.0",
"fast-xml-parser": "5.7.1",
"follow-redirects": "1.16.0",
"handlebars": "4.7.9",
"hono": "4.12.18",
"postcss": "8.5.10",
"picomatch": "4.0.4",
"serialize-javascript": "7.0.5"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}