reorder deps

This commit is contained in:
Graham McIntire 2025-06-17 14:24:57 -05:00
parent 70aecf091b
commit a7a26251be
No known key found for this signature in database

21
mix.exs
View file

@ -45,38 +45,37 @@ defmodule Aprs.MixProject do
{:ecto_sql, "~> 3.11"}, {:ecto_sql, "~> 3.11"},
{:finch, "~> 0.13"}, {:finch, "~> 0.13"},
{:geo, "~> 4.0.1"}, {:geo, "~> 4.0.1"},
{:geocalc, "~> 0.8"},
{:geo_postgis, "~> 3.4"}, {:geo_postgis, "~> 3.4"},
{:geocalc, "~> 0.8"},
{:gettext, "~> 0.26.2"},
{:hackney, "~> 1.24"},
{:heroicons, "~> 0.5"}, {:heroicons, "~> 0.5"},
{:jason, "~> 1.2"}, {:jason, "~> 1.2"},
{:libcluster, "~> 3.3"}, {:libcluster, "~> 3.3"},
{:oban, "~> 2.11"}, {:oban, "~> 2.11"},
{:phoenix, "~> 1.7.0-rc.2", override: true}, {:phoenix, "~> 1.7.0-rc.2", override: true},
{:phoenix_ecto, "~> 4.4"}, {:phoenix_ecto, "~> 4.4"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 4.0"}, {:phoenix_html, "~> 4.0"},
{:phoenix_live_dashboard, "~> 0.8"},
{:phoenix_live_reload, "~> 1.2", only: :dev}, {:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 1.0.2"}, {:phoenix_live_view, "~> 1.0.2"},
{:phoenix_live_dashboard, "~> 0.8"},
{:plug_cowboy, "~> 2.5"}, {:plug_cowboy, "~> 2.5"},
{:postgrex, ">= 0.0.0"},
{:swoosh, "~> 1.3"}, {:swoosh, "~> 1.3"},
# {:timex, "~> 3.4"},
{:gettext, "~> 0.26.2"},
{:telemetry_metrics, "~> 1.0"}, {:telemetry_metrics, "~> 1.0"},
{:hackney, "~> 1.24"},
{:telemetry_poller, "~> 1.0"}, {:telemetry_poller, "~> 1.0"},
{:esbuild, "~> 0.5", runtime: Mix.env() == :dev}, {:esbuild, "~> 0.5", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.3.1", runtime: Mix.env() == :dev}, {:tailwind, "~> 0.3.1", runtime: Mix.env() == :dev},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false}, {:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.18", only: :test, runtime: false}, {:excoveralls, "~> 0.18", only: :test, runtime: false},
{:exvcr, "~> 0.15", only: :test}, {:exvcr, "~> 0.15", only: :test},
{:floki, ">= 0.30.0", only: :test},
{:faker, "~> 0.18", only: [:dev, :test]}, {:faker, "~> 0.18", only: [:dev, :test]},
{:stream_data, "~> 1.2.0", only: [:dev, :test]}, {:floki, ">= 0.30.0", only: :test},
{:styler, "~> 1.4.2", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.1", only: [:dev, :test]}, {:mix_test_watch, "~> 1.1", only: [:dev, :test]},
{:sobelow, "~> 0.8", only: :dev} {:sobelow, "~> 0.8", only: :dev},
{:stream_data, "~> 1.2.0", only: [:dev, :test]},
{:styler, "~> 1.4.2", only: [:dev, :test], runtime: false}
] ]
end end