From 79ef182b6c3efc074422aed01c668bdef2f30676 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sat, 25 Sep 2021 19:49:37 +0000 Subject: Move to Plug'n'Play over node_modules --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index da60a5d..eeb2e80 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,9 @@ }, "main": "build/index.js", "scripts": { - "start:dev": "tsc-watch --onSuccess \"node ./build/index.js\"", - "start": "tsc && node ./build/index.js", - "start:prod": "tsc && NODE_ENV=production node ./build/index.js", + "start:dev": "tsc-watch --onSuccess \"yarn node ./build/index.js\"", + "start": "tsc && yarn node ./build/index.js", + "start:prod": "tsc && NODE_ENV=production yarn node ./build/index.js", "format": "prettier --write 'src/**/*.ts'", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint --fix 'src/**/*.ts'", @@ -41,6 +41,7 @@ "@types/express": "^4.17.13", "@types/jest": "^27.0.1", "@types/jsdom": "^16.2.13", + "@types/node": "^16.10.1", "@types/supertest": "^2.0.11", "@types/triple-beam": "^1.3.2", "@types/uuid": "^8.3.1", -- cgit