Files
geo/package.json

21 lines
817 B
JSON
Raw Permalink Normal View History

2026-02-04 00:11:19 +05:00
{
"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"
}
}