In crontab you do not execute a login shell. So the profile is not sourced.
You could include (depending which files exist in your account or on your system)
source $HOME/.bashrc
or
source $HOME/.profile
or
source /etc/profile
to the start of your script.
'source' could be abbreviated by a dot (.).