Reviving this question because strace is an overkill here.
Execute bash and carve it out of the output. -li is login interactively, -x prints out what bash is doing internally, and -c exit tells bash to terminate immediately. Using sed to filter out the source command printoutor the . alias.
/bin/bash -lixc exit 2>&1 | sed -n 's/^+* source\(source\|\.\) //p'