Skip to content

Instantly share code, notes, and snippets.

@suprith-s-reddy
Created December 14, 2020 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suprith-s-reddy/a1d6b4278239548ebcd935eb19017825 to your computer and use it in GitHub Desktop.
Save suprith-s-reddy/a1d6b4278239548ebcd935eb19017825 to your computer and use it in GitHub Desktop.
Nuxt package json script commands
{
"name": "nuxt-migration-project",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nuxt",
"build-prod": "NODE_ENV=production nuxt build",
"build-staging": "NODE_ENV=staging nuxt build",
"build-analyze": "NODE_ENV=staging nuxt build -a",
"start": "NODE_ENV=production nuxt start",
"generate": "NODE_ENV=development nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"dependencies": {},
"devDependencies": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment