Files
remoteturtle/client/package.json
MayaTheShy 29dfde9f25 feat: Initialize Turtle Control Center with React and WebSocket server
- Added index.html for the main entry point of the client application.
- Created package.json for client dependencies and scripts.
- Implemented App component with view controls and layout.
- Added CSS styles for the application and components.
- Developed ControlPanel component for turtle management and commands.
- Created Map3D component for 3D visualization of turtles.
- Established Zustand store for state management of turtles and WebSocket connection.
- Set up server with Express and WebSocket for handling turtle updates and commands.
- Added REST API endpoints for turtle status updates and command handling.
- Implemented start.sh script for setting up and running the application.
2026-02-15 23:49:46 -05:00

27 lines
581 B
JSON

{
"name": "turtle-control-panel",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.159.0",
"@react-three/fiber": "^8.15.12",
"@react-three/drei": "^9.92.7",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/three": "^0.159.0",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.0.8"
}
}