Where can I see the number of draw calls per frame?

It should be renderer.info.render.calls. It reports the amount of draw calls for a single render call. If you have multiple calls of WebGLRenderer.render() in order to produce a single frame, you need to set renderer.info.autoReset to false and call renderer.info.reset() manually at the end of your frame.