install:
npm install
develop:
npm start
build:
rm -rf build
npm run build
.PHONY: build
stage: build
test:
npm test
.PHONY: test