Refactor code structure for improved readability and maintainability

This commit is contained in:
MythEclipse
2026-05-07 22:22:35 +07:00
parent 83e66805c4
commit 1a0a947674
13 changed files with 844 additions and 66 deletions
+24 -24
View File
@@ -1,26 +1,26 @@
{
"name": "proxy-bun",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/bun": "latest",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3"
},
"dependencies": {
"next": "^16.2.5",
"react": "^19.2.6",
"react-dom": "^19.2.6"
}
"name": "real-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "16.2.5",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.5",
"tailwindcss": "^4",
"typescript": "^5"
}
}