Autoprefixer doesn't work in create-react-app while using sass
Your browserlist setting is really modern. This means many of the css prefixes are no longer necessary. Try something like
"browserslist": [
"since 2010" // support all browsers & versions released since 2010
]
and you should start to see autoprefixer kicking in.
Here's the list of queries you can make.