Skip to content

Instantly share code, notes, and snippets.

@iam-rohid
Created August 1, 2022 06:06
Show Gist options
  • Save iam-rohid/51166b1f14bc016d8b53b17fbaa3096f to your computer and use it in GitHub Desktop.
Save iam-rohid/51166b1f14bc016d8b53b17fbaa3096f to your computer and use it in GitHub Desktop.
Default Next.js with TypeScript & Tailwind CSS Package JSON File
{
"name": "<app-name>",
"version": "<app-version>",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"classnames": "^2.3.1",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"autoprefixer": "^10.4.7",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.0.24",
"typescript": "4.6.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment