forked from 2702rebels/reflect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.61 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.61 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@2702rebels/reflect",
"description": "Modern dashboard for FIRST Robotics ecosystem",
"version": "2026.0.4",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "tsc && vite build",
"build-app": "tauri build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint --ext .ts,.tsx src && tsc --noEmit -p .",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"format": "prettier --write ."
},
"dependencies": {
"@2702rebels/logger": "1.0.0",
"@2702rebels/ntcore": "1.0.1",
"@2702rebels/shared": "1.0.0",
"@2702rebels/wpidata": "1.0.1",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@fontsource-variable/figtree": "5.2.10",
"@fontsource-variable/kode-mono": "5.2.8",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-focus-scope": "1.1.7",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slider": "1.3.6",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tooltip": "1.2.8",
"@react-three/drei": "10.7.7",
"@react-three/fiber": "9.5.0",
"@tauri-apps/api": "2.9.1",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-store": "2.4.2",
"@xyflow/system": "0.0.74",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"d3-array": "3.2.4",
"d3-scale": "4.0.2",
"d3-shape": "3.2.0",
"immer": "11.1.3",
"lucide-react": "0.562.0",
"motion": "12.27.5",
"next-themes": "0.4.6",
"re-resizable": "6.11.2",
"react": "19.2.3",
"react-aria": "3.45.0",
"react-dom": "19.2.3",
"react-hotkeys-hook": "5.2.3",
"react-is": "19.2.3",
"react-keyed-flatten-children": "5.1.1",
"react-resizable-panels": "4.4.1",
"react-stately": "3.43.0",
"react-timing-hooks": "5.2.0",
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "1.0.7",
"three": "0.182.0",
"use-resize-observer": "9.1.0",
"uuid": "13.0.0",
"yaml": "2.8.2",
"zod": "4.3.5",
"zustand": "5.0.10"
},
"devDependencies": {
"@2702rebels/eslint-config": "1.0.0",
"@2702rebels/typescript-config": "1.0.0",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@tailwindcss/vite": "4.1.18",
"@tauri-apps/cli": "2.9.6",
"@types/d3-array": "3.2.2",
"@types/d3-scale": "4.0.9",
"@types/d3-shape": "3.1.8",
"@types/node": "25.0.9",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@types/three": "0.182.0",
"@types/wicg-file-system-access": "2023.10.7",
"@vitejs/plugin-react": "5.1.2",
"eslint": "9.39.2",
"prettier": "3.8.0",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.2",
"tailwindcss": "4.1.18",
"tw-animate-css": "1.4.0",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.17"
},
"engines": {
"node": ">=21",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.27.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"eslint"
],
"allowedVersions": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"vite": ">=6"
}
}
}
}