Update packages
This commit is contained in:
parent
c08970c06c
commit
30bb9a3d7c
5 changed files with 567 additions and 744 deletions
|
|
@ -14,7 +14,7 @@ tasks:
|
||||||
cmds:
|
cmds:
|
||||||
- uv run python download_land_registry.py
|
- uv run python download_land_registry.py
|
||||||
- uv run python download_arcgis_data.py
|
- uv run python download_arcgis_data.py
|
||||||
- uv run python download_pois.py
|
- uv run python -m pipeline.pois
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
desc: Run data processing pipeline
|
desc: Run data processing pipeline
|
||||||
|
|
|
||||||
17
frontend/package-lock.json
generated
17
frontend/package-lock.json
generated
|
|
@ -11,6 +11,7 @@
|
||||||
"@deck.gl/core": "^9.0.0",
|
"@deck.gl/core": "^9.0.0",
|
||||||
"@deck.gl/geo-layers": "^9.0.0",
|
"@deck.gl/geo-layers": "^9.0.0",
|
||||||
"@deck.gl/layers": "^9.0.0",
|
"@deck.gl/layers": "^9.0.0",
|
||||||
|
"@deck.gl/mapbox": "^9.2.6",
|
||||||
"@deck.gl/react": "^9.0.0",
|
"@deck.gl/react": "^9.0.0",
|
||||||
"@radix-ui/react-select": "^2.0.0",
|
"@radix-ui/react-select": "^2.0.0",
|
||||||
"@radix-ui/react-slider": "^1.1.0",
|
"@radix-ui/react-slider": "^1.1.0",
|
||||||
|
|
@ -181,6 +182,22 @@
|
||||||
"@luma.gl/engine": "~9.2.6"
|
"@luma.gl/engine": "~9.2.6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@deck.gl/mapbox": {
|
||||||
|
"version": "9.2.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-9.2.6.tgz",
|
||||||
|
"integrity": "sha512-gyqCHZwiZS8LOYY6LILQQp5YCCf++VFk/wRoGskZvhb/kdEPX2Onv8iV8pXe0h9UyMLO6Mj0wl3HlJWg2ILkrg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@luma.gl/constants": "^9.2.6",
|
||||||
|
"@math.gl/web-mercator": "^4.1.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@deck.gl/core": "~9.2.0",
|
||||||
|
"@luma.gl/constants": "~9.2.6",
|
||||||
|
"@luma.gl/core": "~9.2.6",
|
||||||
|
"@math.gl/web-mercator": "^4.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@deck.gl/mesh-layers": {
|
"node_modules/@deck.gl/mesh-layers": {
|
||||||
"version": "9.2.6",
|
"version": "9.2.6",
|
||||||
"resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-9.2.6.tgz",
|
"resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-9.2.6.tgz",
|
||||||
|
|
|
||||||
|
|
@ -11,41 +11,42 @@
|
||||||
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "^18.2.0",
|
|
||||||
"react-dom": "^18.2.0",
|
|
||||||
"@deck.gl/core": "^9.0.0",
|
"@deck.gl/core": "^9.0.0",
|
||||||
"@deck.gl/layers": "^9.0.0",
|
|
||||||
"@deck.gl/geo-layers": "^9.0.0",
|
"@deck.gl/geo-layers": "^9.0.0",
|
||||||
|
"@deck.gl/layers": "^9.0.0",
|
||||||
|
"@deck.gl/mapbox": "^9.2.6",
|
||||||
"@deck.gl/react": "^9.0.0",
|
"@deck.gl/react": "^9.0.0",
|
||||||
"maplibre-gl": "^4.0.0",
|
|
||||||
"react-map-gl": "^7.1.0",
|
|
||||||
"@radix-ui/react-slider": "^1.1.0",
|
|
||||||
"@radix-ui/react-select": "^2.0.0",
|
"@radix-ui/react-select": "^2.0.0",
|
||||||
|
"@radix-ui/react-slider": "^1.1.0",
|
||||||
"class-variance-authority": "^0.7.0",
|
"class-variance-authority": "^0.7.0",
|
||||||
"clsx": "^2.1.0",
|
"clsx": "^2.1.0",
|
||||||
|
"maplibre-gl": "^4.0.0",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"react-dom": "^18.2.0",
|
||||||
|
"react-map-gl": "^7.1.0",
|
||||||
"tailwind-merge": "^2.2.0",
|
"tailwind-merge": "^2.2.0",
|
||||||
"tailwindcss-animate": "^1.0.7"
|
"tailwindcss-animate": "^1.0.7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"webpack": "^5.90.0",
|
|
||||||
"webpack-cli": "^5.1.0",
|
|
||||||
"webpack-dev-server": "^5.0.0",
|
|
||||||
"html-webpack-plugin": "^5.6.0",
|
|
||||||
"css-loader": "^7.0.0",
|
|
||||||
"style-loader": "^4.0.0",
|
|
||||||
"postcss-loader": "^8.0.0",
|
|
||||||
"ts-loader": "^9.5.0",
|
|
||||||
"typescript": "^5.4.0",
|
|
||||||
"@types/react": "^18.2.0",
|
"@types/react": "^18.2.0",
|
||||||
"@types/react-dom": "^18.2.0",
|
"@types/react-dom": "^18.2.0",
|
||||||
"tailwindcss": "^3.4.0",
|
|
||||||
"autoprefixer": "^10.4.0",
|
|
||||||
"postcss": "^8.4.0",
|
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
||||||
"@typescript-eslint/parser": "^7.0.0",
|
"@typescript-eslint/parser": "^7.0.0",
|
||||||
|
"autoprefixer": "^10.4.0",
|
||||||
|
"css-loader": "^7.0.0",
|
||||||
|
"eslint": "^8.57.0",
|
||||||
"eslint-plugin-react": "^7.34.0",
|
"eslint-plugin-react": "^7.34.0",
|
||||||
"eslint-plugin-react-hooks": "^4.6.0",
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"prettier": "^3.2.0"
|
"html-webpack-plugin": "^5.6.0",
|
||||||
|
"postcss": "^8.4.0",
|
||||||
|
"postcss-loader": "^8.0.0",
|
||||||
|
"prettier": "^3.2.0",
|
||||||
|
"style-loader": "^4.0.0",
|
||||||
|
"tailwindcss": "^3.4.0",
|
||||||
|
"ts-loader": "^9.5.0",
|
||||||
|
"typescript": "^5.4.0",
|
||||||
|
"webpack": "^5.90.0",
|
||||||
|
"webpack-cli": "^5.1.0",
|
||||||
|
"webpack-dev-server": "^5.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,7 +6,7 @@ readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"attrs>=22.2.0",
|
"attrs>=22.2.0",
|
||||||
"httpx>=0.28.1",
|
"httpx[socks]>=0.28.1",
|
||||||
"ipywidgets>=8.0.0",
|
"ipywidgets>=8.0.0",
|
||||||
"jupyter>=1.0.0",
|
"jupyter>=1.0.0",
|
||||||
"nest-asyncio>=1.6.0",
|
"nest-asyncio>=1.6.0",
|
||||||
|
|
@ -22,10 +22,12 @@ dependencies = [
|
||||||
"h3>=3.7.0",
|
"h3>=3.7.0",
|
||||||
"overturemaps>=0.18.0",
|
"overturemaps>=0.18.0",
|
||||||
"fastexcel>=0.19.0",
|
"fastexcel>=0.19.0",
|
||||||
|
"osmium>=4.0.0",
|
||||||
|
"matplotlib>=3.10.8",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.uv]
|
||||||
|
environments = ["sys_platform == 'linux' and python_version < '3.14'"]
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
dev = ["ruff>=0.8.0"]
|
dev = ["ruff>=0.8.0"]
|
||||||
|
|
||||||
[tool.uv.sources]
|
|
||||||
journey-client = { path = "./tfl_journey_client" }
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue