synor/apps/explorer-web/package.json
Gulshan Yadav 48949ebb3f Initial commit: Synor blockchain monorepo
A complete blockchain implementation featuring:
- synord: Full node with GHOSTDAG consensus
- explorer-web: Modern React blockchain explorer with 3D DAG visualization
- CLI wallet and tools
- Smart contract SDK and example contracts (DEX, NFT, token)
- WASM crypto library for browser/mobile
2026-01-08 05:22:17 +05:30

41 lines
1.1 KiB
JSON

{
"name": "synor-explorer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.17",
"clsx": "^2.1.0",
"date-fns": "^3.3.0",
"lucide-react": "^0.325.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph-3d": "^1.29.0",
"react-router-dom": "^6.22.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.3",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vitest": "^1.2.0"
}
}