-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
36 lines (33 loc) · 877 Bytes
/
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
defmodule Fruitbot.MixProject do
use Mix.Project
def project do
[
app: :fruitbot,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :ssl, :inets],
mod: {Fruitbot, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug_cowboy, "~> 2.0"},
{:cowlib, "~> 2.11", hex: :remedy_cowlib, override: true},
{:slipstream, "~> 1.0"},
{:jason, "~> 1.0"},
{:nostrum, git: "[email protected]:Kraigie/nostrum.git", branch: "master" },
{:httpoison, "~> 2.0"},
{:tmi, git: "https://github.com/mcfiredrill/tmi.ex" },
{:castore, "~> 1.0"},
{:persistent_ets, "~> 0.1.0"}
]
end
end