Given a list of strings, return a new list with the strings sorted in increasing order of lengths. If two strings have the same length, sort them in lexicographic order.
['banana', 'apple', 'cherry', 'kiwi', 'mango']['kiwi', 'apple', 'mango', 'cherry', 'banana']