This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
70 lines (67 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule Sweetroll2.MixProject do
use Mix.Project
def project do
[
app: :sweetroll2,
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger],
mod: {Sweetroll2.Application, []}
]
end
defp deps do
[
{:ex_early_ret, "~> 0.1"},
{:timex, "~> 3.5"},
{:date_time_parser, "~> 1.0.0-rc1"},
{:jason, "~> 1.1"},
{:earmark, "~> 1.4"},
{:phoenix_html, "~> 2.13"},
{:taggart, "~> 0.1.5"},
{:floki, "~> 0.23", override: true},
{:html_sanitize_ex, "~> 1.3"},
{:rustler, "~> 0.21.0", override: true},
{:html5ever, "~> 0.7.0"},
{:rustled_syntect, "~> 0.1"},
{:microformats2, git: "https://github.com/ckruse/microformats2-elixir"},
{:plug_micropub, git: "https://github.com/bismark/plug_micropub"},
{:ex_http_link, "~> 0.1.2"},
{:argon2_elixir, "~> 2.0"},
{:nanoid, "~> 2.0.1"},
{:slugger, "~> 0.3.0"},
{:file_system, git: "https://github.com/falood/file_system"},
{:debounce, "~> 0.1.0"},
{:con_cache, "~> 0.13"},
{:quantum, "~> 2.3"},
{:memento, "~> 0.3.1"},
{:liquid, "~> 0.9"},
{:nimble_parsec, "~> 0.5", override: true},
{:que, git: "https://github.com/sheharyarn/que"},
{:ssl_verify_fun, "~> 1.1", override: true},
{:hackney, "~> 1.15"},
{:tesla, "~> 1.3"},
{:hammer, "~> 6.0"},
{:timber, "~> 3.1"},
{:timber_plug, "~> 1.0"},
{:timber_exceptions, "~> 2.0"},
{:exceptional, "~> 2.1"},
{:ex_aws, "~> 2.1"},
{:ex_aws_s3, "~> 2.0"},
{:ex_aws_sts, "~> 2.0"},
{:sweet_xml, "~> 0.6"},
{:plug_cowboy, "~> 2.0"},
{:remote_ip, "~> 0.2"},
{:sse, "~> 0.4"},
{:event_bus, ">= 1.6.0"},
{:observer_cli, "~> 1.5"},
{:credo, "~> 1.1", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false}
]
end
end