Ankit Maheshwari
Ankit Maheshwari

Reputation: 1680

Ionic error - package.json file seems malformed

On running ionic serve in ionic project..

ionic serve

[ERROR] The package.json file seems malformed.

and command gets terminated. How to fix this error?

package.json file:

{
  "dependencies": {
    "@angular/common": "2.0.0-rc.3",
    "@angular/compiler": "2.0.0-rc.3",
    "@angular/core": "2.0.0-rc.3",
    "@angular/http": "2.0.0-rc.3",
    "@angular/platform-browser": "2.0.0-rc.3",
    "@angular/platform-browser-dynamic": "2.0.0-rc.3",
    "es6-shim": "^0.35.3",
    "firebase": "^3.9.0",
    "ionic-angular": "^3.9.2",
    "ionic-native": "1.3.2",
    "ionicons": "3.0.0",
    "reflect-metadata": "^0.1.12",
    "rxjs": "5.0.0-beta.6",
    "zone.js": "^0.6.12"
  },
  "devDependencies": {
    "del": "2.2.0",
    "gulp": "3.9.1",
    "gulp-watch": "4.3.5",
    "ionic-gulp-browserify-typescript": "2.0.0",
    "ionic-gulp-fonts-copy": "^1.0.0",
    "ionic-gulp-html-copy": "^1.0.0",
    "ionic-gulp-sass-build": "^1.0.0",
    "ionic-gulp-scripts-copy": "^2.0.0",
    "run-sequence": "1.1.5"
  }
}

Upvotes: 1

Views: 1846

Answers (1)

Samuel Fraga Mateos
Samuel Fraga Mateos

Reputation: 623

If this is your complete package.json file please, read this documentation and complete it with, at least, the required elements.

I think name and version fields will be sufficient.

Upvotes: 3

Related Questions