initial commit

This commit is contained in:
Altair-sh
2025-03-18 20:11:30 +05:00
commit 94582a522b
17 changed files with 1170 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "nyanberg",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier src --write"
},
"dependencies": {
"next": "15.2",
"react": "^19.0",
"react-dom": "^19.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"prettier": "^3",
"typescript": "^5"
}
}