du -hs * .* | sort -h
$ find . -mindepth 1 -maxdepth 2 -print0 | xargs -0 -- du -hs
Not that I would write it in a shell. ;)
du -hs * .* | sort -h