.PHONY: all check test lint build dev start

all: check build

check:
	npm run lint && npm test

test:
	npm test

lint:
	npm run lint

build:
	npm run build

dev:
	npm run dev

start:
	npm start
