-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.93 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
{
"dependencies": {
"@heroicons/react": "^2.2.0",
"@radix-ui/react-accordion": "^1.2.20",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-context-menu": "^2.3.7",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-hover-card": "^1.1.23",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-progress": "^1.1.16",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slider": "^1.4.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.16",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"async-sema": "^3.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"eslint-config-next": "^16.2.12",
"lucide-react": "^1.28.0",
"motion": "^12.43.0",
"next": "^16.2.12",
"next-themes": "^0.4.6",
"nuqs": "^2.9.3",
"path-browserify": "^1.0.1",
"pretty-bytes": "^7.1.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-dropzone": "^19.1.1",
"react-error-boundary": "^6.1.2",
"react-hook-form": "^7.83.0",
"react-resizable-panels": "^4.12.2",
"react-zoom-pan-pinch": "^4.0.3",
"simple-statistics": "^7.9.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.175.0",
"tiff.js": "^1.0.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@simbathesailor/use-what-changed": "^2.0.0",
"@tailwindcss/postcss": "^4.3.3",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/d3": "^7.4.3",
"@types/node": "^26.1.2",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/three": "^0.175.0",
"fake-indexeddb": "^6.2.5",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"tailwindcss": "^4.1.16",
"typescript": "^6.0.3",
"ultracite": "^7.9.4"
},
"name": "lumilab",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "ultracite check",
"tauri": "tauri",
"test": "jest",
"test:e2e:watch": "npm --prefix e2e-tests run test:watch",
"check": "ultracite check",
"fix": "ultracite fix",
"wasm:versions": "node scripts/wasm-versions.mjs",
"wasm:versions:check": "node scripts/wasm-versions.mjs --check",
"test:e2e:web": "npm run build && npm --prefix e2e-web test",
"test:e2e:desktop": "npm --prefix e2e-tests test"
},
"version": "4.0.0",
"private": true,
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
}
}