Nuxt/docs/2.guide/2.directory-structure/3.package.md

823 B

title head.title description navigation.icon
package.json package.json The package.json file contains all the dependencies and scripts for your application. i-ph-file-duotone

The minimal package.json of your Nuxt application should looks like:

{
  "name": "nuxt-app",
  "private": true,
  "type": "module",
  "scripts": {
    "build": "nuxt build",
    "dev": "nuxt dev",
    "generate": "nuxt generate",
    "preview": "nuxt preview",
    "postinstall": "nuxt prepare"
  },
  "devDependencies": {
    "@nuxt/devtools": "latest",
    "nuxt": "latest",
    "vue": "latest",
    "vue-router": "latest"
  }
}

::read-more{icon="i-simple-icons-npm" color="gray" to="https://docs.npmjs.com/cli/configuring-npm/package-json" target="_blank"} Read more about the package.json file. ::