forecast/package.json
Mathis f87e388ddd
feat(build): add project configuration files and dependencies
Add IntelliJ IDEA project settings, TypeScript configuration, and pnpm lock file. Updated `package.json` with new dependencies and refactored API handler to TypeScript.
2024-09-27 11:37:21 +02:00

25 lines
481 B
JSON

{
"name": "weather-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"axios": "^1.7.7",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^22.7.3",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"taze": "^0.17.1"
}
}