Some apps need to be started with querystring parameters. So it would be helpful to specify an optional querystring for npm start. Suggested approach: ``` "scripts": { "start": "react-scripts start --query=?foo=bar&baz=qux", .... ``` Thoughts?