set shell := ["bash", "-eu", "-o", "pipefail", "-c"]

default:
	@just --list

install:
    npm install

dev:
    npm run dev

build:
    npm run build

start:
    npm run start

lint:
    npm run lint

deploy:
    bash scripts/deploy.sh
