From 47198af8bc1876aedb275a53f66eed5e8393cb6e Mon Sep 17 00:00:00 2001 From: Vyacheslav Chernyshev <81693471+slaveeks@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:50:36 +0300 Subject: [PATCH] Added yarn start command to start on prod (#262) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 517ea2f..2f0f951 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "> 1%" ], "scripts": { + "start": "concurrently \"yarn start-backend\" \"yarn build-frontend\"", "dev": "concurrently \"yarn start-backend\" \"yarn build-frontend:dev\"", "start-backend": "cross-env NODE_ENV=development npx nodemon --config nodemon.json ./src/bin/server.ts", "compile": "tsc && copyfiles -u 3 ./src/**/*.twig ./dist/backend/views && copyfiles -u 1 ./src/**/*.svg ./dist/",