-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
56 lines (53 loc) · 1.48 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
defmodule TwitchDiscordConnector.MixProject do
use Mix.Project
def project do
[
app: :twitch_discord_connector,
version: "0.1.1",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :plug, :cowboy],
# extra_applications: [:logger],
mod: {TwitchDiscordConnector, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Oauth library
# {:oauth2, "~> 2.0"},
# JSON library
{:poison, "~> 4.0", override: true},
# HTTP request library that uses :poison
{:httpoison, "~> 1.8"},
# webserver
{:plug_cowboy, "~> 2.4.0"},
# CORS support
{:cors_plug, "~> 2.0.2"},
# all this for s3 access :'(
{:ex_aws, "~> 2.1"},
{:ex_aws_s3, "~> 2.0"},
{:hackney, "~> 1.15"},
{:sweet_xml, "~> 0.6"},
# Twitch Bot
# {:blur, path: "/Users/ddrexler/src/elixir/blur"},
{:blur, git: "https://github.com/aeturnum/blur.git", branch: "0.3.0-beta1"},
# test area
{:excoveralls, "~> 0.13", only: :test},
{:stenotype, git: "https://github.com/aeturnum/stenotype.git"}
]
end
end