A simple browser singleplayer roguelike game built with TypeScript and React.
- Node.js (v14.0.0 or higher)
- npm (comes with Node.js)
Clone the repository and install dependencies:
# Clone the repository
git clone <repository-url>
cd booblike
# Install dependencies
npm installTo start the development server:
npm startThis will:
- Build the project
- Start a development server
- Open the application in your default browser
- Watch for changes and automatically reload
To build the project for production:
npm run buildThis creates optimized files in the dist directory.
This project uses Prettier for code formatting:
# Format all files
npm run format
# Check formatting without making changes
npm run format:checkNote: The format scripts are configured to check files in the src directory.