init project

This commit is contained in:
RubikMH
2025-12-21 11:10:51 +03:30
parent 262e7862d9
commit 9db6d279a1
18 changed files with 4276 additions and 93 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "16.1.0",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}