From 76aefe830d3d3909223b362b5eabee45041551ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandr=20=C4=8Celakovsk=C3=BD?= <20592948+AsToNlele@users.noreply.github.com> Date: Fri, 31 May 2024 13:48:42 +0200 Subject: [PATCH] fix(npm scripts): Align start script with other apps (#749) --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a17f5212..831f25d8 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "lint:js:fix": "eslint config src --fix", "lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json", "nightly": "npm run deploy", - "start": "PROXY=true fec dev", + "start": "fec dev", + "start:proxy": "PROXY=true fec dev", "start:mock": "PROXY=true MOCK=true fec dev", "test:ct": "BABEL_ENV=component cypress run --component", "test:openct": "BABEL_ENV=component cypress open --component",