Initial commit from Create Next App

This commit is contained in:
2024-02-01 00:46:06 +04:00
commit 7cdc259fb3
7 changed files with 572 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "20.8.10",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"typescript": "^5.2.2"
}
}