-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
44 lines (41 loc) · 1.62 KB
/
project.clj
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
(defproject itbf-web "1.0.0"
:description "Is the bathroom free?"
:url "http://isthebathroomfree.com"
:uberjar-name "itbf-web-standalone.jar"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2234"]
[om "0.6.4"]
[com.cemerick/piggieback "0.1.3"]
[weasel "0.2.0"]
[http-kit "2.1.16"]
[compojure "1.1.8"]
[ring "1.3.0"]
[clj-http "0.9.2"]
[org.clojure/core.async "0.1.303.0-886421-alpha"]
[environ "0.5.0"]
[com.taoensso/timbre "3.2.1"]
[com.taoensso/carmine "2.6.2"]
[org.clojars.gjahad/debug-repl "0.3.3"]
[com.taoensso/sente "0.14.1"]
[org.clojure/data.json "0.2.5"]
[hiccup "1.0.5"]
[instaparse "1.3.2"]
[cljs-ajax "0.2.6"]
[cljs-uuid "0.0.4"]
[prismatic/dommy "0.1.2"]
[diane "1.0.0"]
[org.clojure/core.match "0.2.1"]]
:main itbf-web.core
:plugins [[lein-cljsbuild "1.0.3"]
[lein-environ "0.5.0"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:source-paths ["src/clj" "src/cljs"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {
:output-to "resources/public/itbf_web.js"
:output-dir "resources/public/out"
:optimizations :none
:source-map true}}]})