To find out what packages your project directly depends on, you can simply use this command:
stack list-dependencies
This way you can find out what version of your dependencies where actually pulled down by stack.
Haskell projects frequently find themselves pulling in a lot of libraries indirec...