defmodule Thulani.Bot.MixProject do use Mix.Project def project do [ app: :thulani_bot, version: "0.1.0", build_path: "../../_build", config_path: "../../config/config.exs", deps_path: "../../deps", lockfile: "../../mix.lock", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps() ] end def application do [ extra_applications: [ :logger, :sasl ], mod: {Thulani.Bot.Application, []} ] end defp deps do [ {:util, in_umbrella: true}, {:nostrum, "~> 0.4", runtime: false}, {:dialyxir, "~>1.0.0-rc.7", only: [:dev], runtime: false}, {:credo, "~> 1.2", only: [:dev, :test], runtime: false} ] end end