gendesign/frontend/package.json
2026-04-25 13:45:19 +03:00

36 lines
961 B
JSON

{
"name": "gendesign-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"codegen": "openapi-typescript http://localhost:8000/openapi.json -o src/lib/api-types.ts"
},
"dependencies": {
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@tanstack/react-query": "^5.50.0",
"leaflet": "^1.9.4",
"react-leaflet": "^4.2.1",
"leaflet-draw": "^1.0.4"
},
"devDependencies": {
"@types/leaflet": "^1.9.0",
"@types/leaflet-draw": "^1.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.5.0",
"tailwindcss": "^4.0.0",
"@tailwindcss/postcss": "^4.0.0",
"postcss": "^8.4.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"openapi-typescript": "^7.0.0"
}
}