If you have changed the default recovery model from "simple" to "Full" recovery model, this will cause your transaction log file to grow very large.
You can shrink your database by setting it to the "Simple" recovery model and setting it to auto-shrink.
This can be enabled by running the following queries against your database:
alter database dbname set RECOVERY simple
alter database dbname set AUTO_SHRINK ON