-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
53 lines (50 loc) · 1.4 KB
/
mix.exs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
defmodule Hexpds.MixProject do
use Mix.Project
def project do
[
app: :hexpds,
version: "0.1.0",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto],
mod: {Hexpds.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"}
{:httpoison, "~> 2.2.1"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.28.0", only: :dev, runtime: false},
{:multibase, "~> 0.0.1"},
{:ex_multihash, "~> 2.0.0"},
{:rustler, "~> 0.32"},
{:toml, "~> 0.7.0"},
{:varint, "~> 1.4"},
{:plug, "~> 1.15.3"},
{:cors_plug, "~> 3.0"},
{:bandit, "~> 1.3.0"},
{:argon2_elixir, "~> 4.0"},
{:memento, "~> 0.3.2"},
{:infer, "~> 0.2.6"},
{:ecto, "~> 3.11.2"},
{:ecto_sqlite3, "~> 0.15"},
{:matcha, "~> 0.1.10"},
{:witchcraft, "~> 1.0.4"},
{:websock_adapter, "~> 0.5.6"}, # Websockets
{:syn, "~> 3.3.0"},
# type checking
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
# for linting
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
end