Before you go down the route of making every verse a new paragraph, have you considered marginal verse numbers? (as shown here below):
To do that, all you need to do is turn on the Marginal Verses setting on the Body tab:
If you really want each verse to be a new “paragraph” then you can just place a rule in the changes.txt file (see the 2nd option at the top left of the Advanced tab) and then enter a rule like this:
"\\v " > "\\p \\v "
But that will make every verse a paragraph. Probably not what you really want.
Alternatively, you could make them all \m margin aligned paragraphs, by replacing the \p above with a \m which would give you this:
…but then you lose your real paragraph breaks. So what you probably need is to KEEP the original paragraph markers \p whilst turning all the others into \m markers:
"\\v " > "\\m \\v "
"\\p ?\r?\n?\\m " > "\\p "
Which will result in this layout (I’ve highlighted the actual para breaks):
Does that help?