forked from zk-coins/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "zkcoins-app",
"version": "0.9.0",
"private": true,
"scripts": {
"predev": "node scripts/sync-handbook-baselines.mjs",
"dev": "next dev --port 3090",
"prebuild": "node scripts/sync-handbook-baselines.mjs",
"build": "next build",
"sync:handbook": "node scripts/sync-handbook-baselines.mjs",
"start": "next start --port 3090",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"clean": "rm -rf .next node_modules",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e:local": "bash scripts/e2e-local.sh"
},
"dependencies": {
"@zkcoins/sdk": "file:vendor/zkcoins-sdk-0.4.0.tgz",
"jsqr": "^1.4.0",
"lucide-react": "^0.460.0",
"next": "^15.5.18",
"next-intl": "^4.13.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"zod": "4.4.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@axe-core/playwright": "4.11.3",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.18",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.9.0",
"postcss": "^8.5.14",
"prettier": "^3.4.2",
"qrcode": "^1.5.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vitest": "^4.1.5"
},
"overrides": {
"postcss": "^8.5.14",
"@swc/helpers": "0.5.15"
}
}