Loading a 31mb javascript file in react native is giving error, any solutions?

I am building an app in react native without backend so i am loading a javascript data file by exporting the data like this :

export const dataArray = [
{
"field1": 1,
"field2": "text"
},
{
"field1": 2,
"field2": "text"
},
];

So the file i am loading is 31mb so when i start my app on expo go i get this error in the console

error: Appdatabasequotes.js: A jest worker process (pid=13648) was terminated by another process: signal=SIGTERM, exitCode=null. Operating system logs may contain more information on why this occurred.

i need your help please, what is the solution for such an issue, is there any other way to call the file in the apps screens ?