feat: add backpex (config, js hooks, deps, css, formatter)

This commit is contained in:
Moritz 2025-07-03 13:56:50 +02:00
parent b05cd7db77
commit 5d0e8b5f78
Signed by: moritz
GPG key ID: 1020A035E5DD0824
6 changed files with 31 additions and 12 deletions

12
mix.exs
View file

@ -33,6 +33,7 @@ defmodule Mv.MixProject do
defp deps do
[
{:tidewave, "~> 0.1", only: [:dev]},
{:backpex, "~> 0.13.0"},
{:phoenix, "~> 1.7.20"},
{:phoenix_ecto, "~> 4.5"},
{:ecto_sql, "~> 3.10"},
@ -42,11 +43,11 @@ defmodule Mv.MixProject do
{:phoenix_live_view, "~> 1.0.0"},
{:floki, ">= 0.30.0", only: :test},
{:phoenix_live_dashboard, "~> 0.8.3"},
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},
{:esbuild, "~> 0.10", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.2", runtime: Mix.env() == :dev},
{:heroicons,
github: "tailwindlabs/heroicons",
tag: "v2.1.1",
tag: "v2.2.0",
sparse: "optimized",
app: false,
compile: false,
@ -57,11 +58,12 @@ defmodule Mv.MixProject do
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.26"},
{:jason, "~> 1.2"},
{:dns_cluster, "~> 0.1.1"},
{:dns_cluster, "~> 0.2.0"},
{:bandit, "~> 1.5"},
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
{:sobelow, "~> 0.14", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ecto_commons, "~> 0.3"}
]
end