-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "value-network-visualization",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@chakra-ui/react": "^3.22.0",
"@emotion/react": "^11.14.0",
"@react-three/drei": "^10.7.3",
"@react-three/fiber": "^9.3.0",
"@supabase/supabase-js": "^2.50.3",
"@types/d3-scale": "^4.0.9",
"@types/lodash": "^4.17.20",
"@types/three": "^0.178.0",
"lodash": "^4.17.21",
"next": "^15.5.2",
"next-themes": "^0.4.6",
"r3f-forcegraph": "^1.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"three": "^0.178.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/d3-force": "^3.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^3.2.4",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"happy-dom": "^18.0.1",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.2.4"
}
}