-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "zkcoins-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node scripts/sync-handbook-baselines.mjs",
"dev": "next dev --port 3091",
"prebuild": "node scripts/sync-handbook-baselines.mjs",
"build": "next build",
"start": "npx --yes serve@14.2.4 out -l 3091",
"sync:handbook": "node scripts/sync-handbook-baselines.mjs",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .next out node_modules",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots=all",
"handbook:assemble": "bash scripts/assemble-handbook-screenshots.sh public/handbook/screenshots"
},
"dependencies": {
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@zkcoins/sdk": "file:../sdk",
"next": "^15.5.18",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.18",
"happy-dom": "^20.9.0",
"postcss": "^8.5.14",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vitest": "^4.1.5"
},
"overrides": {
"postcss": "^8.5.14"
}
}