chore: initialize project with package.json and dependencies

This commit is contained in:
Poyraz Avsever
2026-04-27 23:37:05 +03:00
parent cd382f60ba
commit e35a0659aa
5 changed files with 6660 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "mood-tracker-mvp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"framer-motion": "^11.18.2",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.6",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}