https://github.com/remix-run/remix/blob/main/templates/express/server.js#L5
chokidar is a devDependency, and it's only used when NODE_ENV is development.
However, the way the template's server.js is written, I think chokidar will always be required? and making production rely on devDependencies.
I changed it to use dynamic import on my own project, but I wonder if I'm missing something?