Unable to get my project to automatically run the server side code

I have been trying to get a project running that someone else made but abandoned. (Was made open source, has GNU General Public License v3.0). However, I have been unable to get the project to run server.js, or any other files that i do not specifically request (the server files do not run when I open them, just show me the text)

code is at https://github.com/EternalFrostOrig/H2HL

In order for glitch to make it run the server side code instead of just serving it, you’ve to create and fill a package.json file with the project configuration. You can look for example package.json files in other glitch projects, for example by creating a new express app

Oh thank you, I didn’t not realize this was a requirement.