Basit bir node.js uygulaması yaptım ama plesk üzerinde çalıştıramadım gözden kaçırdığım bir nokta mı var acaba?

App SS : https://prnt.sc/1rdxf9p
Folder SS : https://prnt.sc/1rdxgit
Error SS : https://prnt.sc/1rdxhz7

index.js
import express from 'express'
const app = express()
 
app.get('/', function (req, res) {
  res.send('Hello World')
})
app.listen(3000);
package.json
{
  "name": "nodetest",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "express": "^4.17.1"
  }
}