nextjs-package-manager-exam.../package.json

28 lines
565 B
JSON
Raw Normal View History

2024-04-12 03:57:56 +00:00
{
"name": "nextjs-package-manager-example-app",
2024-04-12 04:29:57 +00:00
"version": "0.0.1",
"private": false,
"license": "MIT",
2024-04-12 03:57:56 +00:00
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.2.0"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.0"
}
}