/ package.json
package.json
 1  {
 2    "name": "acdc-scanner",
 3    "version": "0.1.0",
 4    "description": "ACDC Block Explorer - View transactions, blocks, and chain data",
 5    "scripts": {
 6      "dev": "next dev",
 7      "build": "next build",
 8      "start": "next start",
 9      "lint": "eslint src/",
10      "typecheck": "tsc --noEmit",
11      "test": "vitest run --passWithNoTests",
12      "test:coverage": "vitest run --coverage --passWithNoTests",
13      "test:e2e": "playwright test",
14      "test:e2e:ui": "playwright test --ui",
15      "test:a11y": "playwright test --project=a11y"
16    },
17    "dependencies": {
18      "@acdc/design": "git+https://source.ac-dc.network/alpha-delta-network/acdc-design.git",
19      "lucide-react": "^0.400.0",
20      "next": "14.2.0",
21      "react": "^18.3.0",
22      "react-dom": "^18.3.0",
23      "recharts": "^2.12.0",
24      "zustand": "^5.0.10"
25    },
26    "devDependencies": {
27      "@axe-core/playwright": "^4.9.0",
28      "@eslint/js": "^9.39.2",
29      "@playwright/test": "^1.44.0",
30      "@types/node": "^20.14.0",
31      "@types/react": "^18.3.0",
32      "@vitest/coverage-v8": "^1.6.0",
33      "autoprefixer": "^10.4.0",
34      "eslint": "^9.39.2",
35      "postcss": "^8.4.0",
36      "tailwindcss": "^3.4.0",
37      "typescript": "^5.4.0",
38      "typescript-eslint": "^8.53.0",
39      "vitest": "^1.6.0"
40    }
41  }