You can use a dict comprehension:
data = {smallItem:smallItem for smallItem in bigList}
You might also use dict and a generator expression:
data = dict((smallItem, smallItem) for smallItem in bigList)
But the dict comprehension will be faster.
As for converting this into a JSON string, you can use json.dumps.