Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created May 15, 2022 23:33
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 jesulink2514/b7cd500484a51ab24723fa8b6b8d06cb to your computer and use it in GitHub Desktop.
Save jesulink2514/b7cd500484a51ab24723fa8b6b8d06cb to your computer and use it in GitHub Desktop.
package.json for Next.js
{
"name": "nextjs-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/node": "17.0.33",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"typescript": "4.6.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment