Check to see if in your package.json file "prisma.schema" is pointing at the directory and not the "prisma.schema" file:
from:
"prisma": { "schema": "./prisma/schema/schema.prisma" },
to:
"prisma": { "schema": "./prisma/schema" },