stack/apps/nextjs/package.json
2024-02-28 14:35:30 +01:00

27 lines
557 B
JSON

{
"name": "dev-app",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rm -rf .next",
"dev": "next dev --port 8102",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "14.0.4",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"stack": "workspace:*",
"stack-shared": "workspace:*"
},
"devDependencies": {
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8"
}
}