first commit

This commit is contained in:
romiz5269
2025-11-18 18:45:28 +03:30
commit acfea140a3
152 changed files with 15818 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"json-server --watch db.json --port 4000\"",
"build": "next build",
"start": "next start",
"lint": "eslint",
"json-server": "json-server --watch db.json --port 4000",
"app": "npm run json-server & npm run dev"
},
"dependencies": {
"next": "15.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-select": "^5.10.2",
"swiper": "^12.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"json-server": "^1.0.0-beta.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}