Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
yuflyud committed May 15, 2021
1 parent bf6b861 commit 8df8610
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"cp-fhirclient": "cp node_modules/fhirclient/build/fhir-client.js app",
"copy-npm-scripts": "npm run cp-lforms-updater && npm run cp-fhirclient",
"build": "npm run copy-npm-scripts && grunt build",
"prestart": "npm run cp-lforms-updater && echo 'Website starting at http://localhost:$(grep PORT .env | cut -d '=' -f2)/lforms-fhir-app'",
"start": "http-server -s -p $(grep PORT .env | cut -d '=' -f2) -c-1 .",
"prestart": "npm run cp-lforms-updater && echo 'Website starting at http://localhost:$PORT/lforms-fhir-app'",
"start": "http-server -s -p $PORT -c-1 .",
"prestart-local": "npm run prestart",
"start-local": "http-server -s -a localhost -p $(grep PORT .env | cut -d '=' -f2) -c-1 .",
"prestart-dist": "echo 'Website starting at http://localhost:$(grep PORT .env | cut -d '=' -f2)/lforms-fhir-app'",
"start-dist": "http-server -p $(grep PORT .env | cut -d '=' -f2) -c-1 dist",
"start-local": "http-server -s -a localhost -p $PORT -c-1 .",
"prestart-dist": "echo 'Website starting at http://localhost:$PORT/lforms-fhir-app'",
"start-dist": "http-server -p $PORT -c-1 dist",
"update-webdriver": "node node_modules/protractor/bin/webdriver-manager update --versions.chrome $(google-chrome --version |awk '{print $NF}')",
"test": "npm run start-local & sleep 5; protractor e2e-tests/protractor.conf.js; s=$?; kill %1; exit $s",
"test-dist": "npm run start-dist & sleep 5; protractor e2e-tests/protractor.conf.js; s=$?; kill %1; exit $s"
Expand Down

0 comments on commit 8df8610

Please sign in to comment.