in infra/create-proj.ts [24:32]
function sortKeys<T extends {[key: string]: unknown}>(obj: T): T {
const sortedObj = {} as T;
for (const key of Object.keys(obj).sort() as (keyof T)[]) {
sortedObj[key] = obj[key];
}
return sortedObj;
}