To convert your app to EthersJs, you need to check where you use the web3Js functions, and find similar functions from EthersJs. It is a different library so there is no 1-on-1 replacement.
For example, see in their docs on how to use contract interactions: https://docs.ethers.io/v5/api/contract/example/
Alternatively, you could still use web3Js via
import Web3 from 'web3' // Only when using package mananger.
import Moralis from 'moralis' // Only when using package mananger
await Moralis.enableWeb3()
const web3 = new Web3(Moralis.provider)