-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "swarming",
"version": "0.1.0",
"description": "GPU-accelerated real-time 3D network visualization for any streaming data source. React + Three.js + D3-force. 5,000+ nodes at 60fps.",
"keywords": [
"data-visualization",
"real-time",
"force-graph",
"force-directed-graph",
"react",
"threejs",
"webgl",
"network-graph",
"graph-visualization",
"websocket",
"d3-force",
"3d-graph",
"blockchain",
"streaming-data"
],
"homepage": "https://swarming.dev",
"repository": {
"type": "git",
"url": "https://github.com/nirholas/visualize-web3-realtime"
},
"license": "SEE LICENSE IN LICENSE",
"private": true,
"packageManager": "npm@10.8.2",
"workspaces": [
"packages/*",
"apps/playground"
],
"scripts": {
"dev": "next dev -p 3100",
"dev:playground": "turbo run dev --filter=@web3viz/playground",
"dev:executor": "turbo run dev --filter=@web3viz/executor",
"prebuild": "rm -f .next/tsconfig.tsbuildinfo .next/cache/.tsbuildinfo",
"build": "next build",
"build:web": "next build",
"start": "next start -p 3100",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"typecheck:turbo": "turbo run typecheck",
"capture-assets": "npx tsx scripts/capture-assets.ts",
"bench": "cd benchmarks && npm run bench",
"bench:report": "cd benchmarks && npm run bench:report",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "cp scripts/pre-commit .git/hooks/pre-commit 2>/dev/null && chmod +x .git/hooks/pre-commit 2>/dev/null || true"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@chenglou/pretext": "^0.0.4",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.41.0",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@react-three/postprocessing": "^2.19.1",
"@types/lz-string": "^1.3.34",
"codemirror": "^6.0.2",
"d3-force": "^3.0.0",
"d3-force-3d": "^3.0.6",
"framer-motion": "^11.0.0",
"groq-sdk": "^1.1.2",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"lz-string": "^1.5.0",
"next": "^14.2.0",
"postprocessing": "^6.39.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-force-graph-3d": "^1.25.0",
"reagraph": "^4.30.8",
"three": "^0.169.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/d3-force": "^3.0.10",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.169.0",
"@vitest/coverage-v8": "^4.1.2",
"autoprefixer": "^10.4.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.0",
"jsdom": "^29.0.1",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"vitest": "^4.1.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"next lint --fix --file"
]
}
}