portal/apps/centralcloud_staff/mix.exs

39 lines
899 B
Elixir

defmodule CentralcloudStaff.MixProject do
use Mix.Project
def project do
[
app: :centralcloud_staff,
version: "0.1.0",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.20",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
mod: {CentralcloudStaff.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp deps do
[
{:centralcloud_core, in_umbrella: true},
{:phoenix, "~> 1.7"},
{:phoenix_live_view, "~> 1.0"},
{:phoenix_html, "~> 4.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:bandit, "~> 1.2"},
{:jason, "~> 1.4"},
{:oidcc, "~> 3.2"},
{:req, "~> 0.5"},
{:petal_components, "~> 2.0"}
]
end
end