-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.92 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": "cryptoviz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"generate:sw": "node scripts/generate-sw-precache.mjs",
"prebuild": "npm run generate:sw",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"validate:ci": "node scripts/validate-ci-pipeline.mjs",
"check:budgets": "node scripts/check-bundle-budgets.mjs",
"test": "vitest run",
"conformance": "node scripts/run-conformance-tests.mjs",
"test:a11y": "vitest run tests/unit/a11y",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:security": "vitest run tests/security",
"test:visual": "playwright test tests/visual tests/e2e/visual.spec.ts",
"check:bundle-budget": "node scripts/check-bundle-budget.mjs"
},
"dependencies": {
"@exodus/bytes": "^1.15.1",
"@noble/curves": "^2.4.0",
"@noble/hashes": "^2.4.0",
"@noble/post-quantum": "^0.6.1",
"@types/dompurify": "^3.0.5",
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dompurify": "^3.4.13",
"framer-motion": "^12.42.2",
"lucide-react": "^1.24.0",
"next": "^16.2.9",
"pure-rand": "^8.4.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.9.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"fast-check": "^4.9.0",
"jest-axe": "^10.0.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.8"
},
"overrides": {
"postcss": "^8.5.26",
"nanoid": "^3.3.18",
"js-yaml": "^4.3.1"
}
}