-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
61 lines (56 loc) · 1.45 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
defmodule Imagine.MixProject do
use Mix.Project
def project do
[
app: :imagine_cms,
version: "6.3.7",
elixir: "~> 1.10",
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Imagine.Application, []},
extra_applications: [:logger]
]
end
defp description do
"""
An easy-to-use, self-contained CMS
"""
end
defp package do
[
files: ["lib", "priv", "mix.exs", "package.json", "LICENSE", "*.md"],
maintainers: ["Aaron Namba"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/ImagineCMS/imagine_cms"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.5"},
{:phoenix_ecto, "~> 4.1"},
{:ecto_sql, "~> 3.0"},
{:myxql, ">= 0.0.0"},
{:phoenix_live_view, "~> 0.18"},
{:phoenix_html, "~> 3.0"},
{:gettext, "~> 0.17"},
{:jason, "~> 1.0"},
{:argon2_elixir, "~> 3.0"},
{:nebulex, "~> 1.2"},
{:timex, "~> 3.6"},
{:floki, ">= 0.0.0"},
{:nodejs, "~> 2.0"},
{:mix_test_watch, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end