Skip to content

Instantly share code, notes, and snippets.

@manshu
Created November 22, 2020 02:15
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 manshu/5ed66eaf136192cc7f831bea31e6b1d7 to your computer and use it in GitHub Desktop.
Save manshu/5ed66eaf136192cc7f831bea31e6b1d7 to your computer and use it in GitHub Desktop.
NextJS with Typescript
{
"name": "myapp",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"typescript": "^4.1.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment