mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
f26a801775
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
34 lines
823 B
Markdown
34 lines
823 B
Markdown
---
|
|
title: package.json
|
|
head.title: package.json
|
|
description: The package.json file contains all the dependencies and scripts for your application.
|
|
navigation.icon: i-ph-file-duotone
|
|
---
|
|
|
|
The minimal `package.json` of your Nuxt application should looks like:
|
|
|
|
```json [package.json]
|
|
{
|
|
"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.
|
|
::
|