defmodule Bbox.MixProject do use Mix.Project defp package() do [ # This option is only needed when you don't want to use the OTP application name name: "bbox", # These are the default files included in the package files: ~w(lib priv .formatter.exs mix.exs README* LICENSE*), licenses: ["MIT"], links: %{"GitHub" => "https://github.com/ElioenaiFerrari/bbox"} ] end def project do [ app: :bbox, version: "0.1.2", elixir: "~> 1.14-dev", start_permanent: Mix.env() == :prod, deps: deps(), name: "bbox", description: "descentralized voting system", source_url: "https://github.com/ElioenaiFerrari/bbox", package: package() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger, :cowboy, :plug, :poison, :telemetry, :ranch], mod: {Bbox.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} {:ex_doc, "~> 0.28.4"}, {:ecto, "~> 3.8"}, {:ecto_sql, "~> 3.8"}, {:postgrex, "~> 0.16.4"}, {:x509, "~> 0.8.5"}, {:telemetry, "~> 1.1"}, {:telemetry_metrics, "~> 0.6.1"}, {:telemetry_poller, "~> 1.0"}, {:poison, "~> 5.0"}, {:plug, "~> 1.13"}, {:cowboy, "~> 2.9.0"}, {:plug_cowboy, "~> 2.5"}, {:jason, "~> 1.3"} ] end end