initialize nextjs project

This commit is contained in:
Yusuf İpek
2021-07-26 01:28:48 +03:00
parent 31cbeabde5
commit 833c6c79cd
13 changed files with 9541 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "teknolojirehberleri.xyz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"eslint": "7.31.0",
"eslint-config-next": "11.0.1"
}
}