Start Script is missing

It always appears this error: Check /app/package.json: command not found. Is a start script missing? https://glitch.com/help/failstart/ and I don’t know which start script I need to use to fix that error

{
  "name": "dashboard",
  "version": "1.0.0",
  "description": "Test Dashboard",
  "main": "index.js",
  "scripts": {
  "test": "echo \"Error: no test specified\" && exist 1"
  },
  "author": "ctk",
  "license": "ISC"
}
"start": "node index.js",

it would look like

  "scripts": {
  "start": "node index.js",
  "test": "echo \"Error: no test specified\" && exist 1"
  },
2 Likes

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.