#! /bin/bash # Helper script for setting up the sandbox. # Start an NPM build watcher process. if [ -e "package.json" ]; then npm start else echo "No package.json found here." echo "Navigate to the project root and run 'npm start'." fi