-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
51 lines (48 loc) · 1.23 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
defmodule CastPub.Mixfile do
use Mix.Project
def project do
[app: :cast_pub,
version: "0.0.1",
elixir: "~> 1.0",
elixirc_paths: ["lib", "web"],
compilers: [:phoenix] ++ Mix.compilers,
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[
mod: {CastPub, []},
applications: [
:phoenix, :cowboy, :logger, :postgrex, :ecto,
:vex, :canada, :poison, :joken,
:plug_cors, :plug_jwt, :bcrypt, :timex, :kitsune, :faker
],
env: [locale: :en]
]
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[
{:phoenix, "0.7.0"},
{:plug, "0.9.0"},
{:cowboy, "~> 1.0"},
{:postgrex, ">= 0.0.0"},
{:ecto, "~> 0.3.0"},
{:vex, "~> 0.5.0"},
{:canada, "~> 1.0.0"},
{:poison, "~> 1.3"},
{:joken, "~> 0.7.0"},
{:plug_jwt, "~> 0.4.0"},
{:plug_cors, "~> 0.6.0"},
{:bcrypt, github: "opscode/erlang-bcrypt"},
{:timex, "~> 0.13.1"},
{:exrm, "~> 0.14.12"},
{:kitsune, "~> 0.5.2"},
{:faker, path: "/Users/bryanjos/projects/surgeforward/faker"}
]
end
end