.PHONY: build dev prod test build: tsc dev: build NODE_ENV=development node dist/main.js prod: build NODE_ENV=production node dist/main.js rund: NODE_ENV=development node dist/main.js runp: NODE_ENV=production node dist/main.js test: node_modules/mocha/bin/_mocha -r ts-node/register tests/**/*.spec.ts