Fix: estimates geo v2

This commit is contained in:
Arsen
2026-02-04 00:11:19 +05:00
commit 3f0086f88e
22567 changed files with 4348823 additions and 0 deletions

20
package.json Executable file
View File

@@ -0,0 +1,20 @@
{
"name": "estimate-assistant",
"version": "1.0.0",
"private": true,
"description": "Смета Ассистент — веб-приложение для смет на изыскательские работы",
"scripts": {
"install:all": "npm install --prefix backend && npm install --prefix frontend",
"setup:db": "npm run prisma:generate --prefix backend && npm run prisma:push --prefix backend && npm run prisma:seed --prefix backend",
"dev:backend": "npm run dev --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\""
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"@fontsource/pt-sans": "^5.2.8",
"react-router-dom": "^7.13.0"
}
}