1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
defmodule Thulani.MixProject do
use Mix.Project
def project do
[
app: :thulani,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
mod: {Thulani, []},
extra_applications: [:logger, :crypto]
]
end
defp deps do
[
{:nostrum, "~> 0.10"},
{:nosedrum, "~> 0.5"},
{:witchcraft, "~> 1.0"},
{:quark, "~> 2.3"},
{:exceptional, "~> 2.1"},
{:ok, "~> 2.3"},
{:phoenix_pubsub, "~>2.1"},
{:uuid, "~> 1.1"},
{:rustler, "~> 0.34"},
{:ecto_sql, "~> 3.11"},
{:postgrex, "~> 0.14"},
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false}
]
end
end
|