next.js initialization

This commit is contained in:
2026-02-05 09:27:33 +05:30
parent ea1cb3e7bb
commit af0a874c55
18 changed files with 5023 additions and 1 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "artsplash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check ."
},
"dependencies": {
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"biome": "^0.3.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}