local-weather/package.json

27 lines
523 B
JSON
Raw Permalink Normal View History

2024-05-03 14:48:24 +00:00
{
"name": "local-weather",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-05-04 07:39:10 +00:00
"next": "14.2.3",
2024-05-03 14:48:24 +00:00
"react": "^18",
2024-05-04 07:39:10 +00:00
"react-dom": "^18"
2024-05-03 14:48:24 +00:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-05-04 07:39:10 +00:00
"eslint": "^8",
"eslint-config-next": "14.2.3",
2024-05-03 14:48:24 +00:00
"postcss": "^8",
"tailwindcss": "^3.4.1",
2024-05-04 07:39:10 +00:00
"typescript": "^5"
2024-05-03 14:48:24 +00:00
}
}