.PHONY: run clean

all: build

build:
	npm run build

run:
	npm run start

test:
	npm run test

clean:
	rm -f *.js

