diff --git a/goofy-client/package.json b/goofy-client/package.json index 42016b3713c3aae56e814a0f9b402643cf5be507..ea456bcb033595b2e8901903925b23f2c69060f3 100644 --- a/goofy-client/package.json +++ b/goofy-client/package.json @@ -3,17 +3,17 @@ "version": "0.0.0", "license": "MIT", "scripts": { - "start": "nx serve --port=4300 --disable-host-check", - "start:debug": "nx serve --port=4300 --disable-host-check --verbose", - "start-for-screenreader": "nx serve --host=192.168.178.20 --port=4300 --disable-host-check --verbose", - "start:devbe": "nx serve --port=4300 --disable-host-check --proxy-config=proxy.dev.conf.json --verbose", - "build": "nx build", + "start": "nx run goofy:serve --port 4300 --disable-host-check", + "start:debug": "nx run goofy:serve --port 4300 --disable-host-check --verbose", + "start-for-screenreader": "nx run goofy:serve --host 192.168.178.20 --port 4300 --disable-host-check --verbose", + "start:devbe": "nx run goofy:serve --port 4300 --disable-host-check --proxy-config proxy.dev.conf.json --verbose", + "build": "nx run goofy:build", "test": "nx run-many --target=test --all --parallel --maxParallel 8 --runInBand", "test:cov": "jest --coverage", "test:lib": "nx test ${npm_config_lib} --watchAll", "test:debug:lib": "nx test ${npm_config_lib} --detectOpenHandles --watchAll", - "ci-build": "nx build --outputHashing=all", - "ci-prodBuild": "nx build --outputHashing=all --configuration production", + "ci-build": "nx run goofy:build --outputHashing=all", + "ci-prodBuild": "nx run goofy:build --outputHashing=all --configuration production", "ci-test": "nx run-many --target=test --all --parallel --maxParallel 2 --runInBand --ci --testResultsProcessor='jest-sonar-reporter' --coverage", "ci-sonar": "npm run sonar-scanner", "lint": "nx workspace-lint && nx lint",