forked from timeforcoffee/tramboard-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
66 lines (59 loc) · 3.19 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
(defproject tramboard-clj "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[cljs-uuid "0.0.4"]
[clj-time "0.9.0"]
[compojure "1.3.1"]
[com.andrewmcveigh/cljs-time "0.3.0"]
[cheshire "5.4.0"]
[hiccup "1.0.0"]
[http-kit "2.1.18"]
[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2727"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.omcljs/om "0.8.8"]
[ring/ring-defaults "0.1.2"]
[ring/ring-jetty-adapter "1.2.1"]
[ring/ring-mock "0.2.0"]
[ring/ring-codec "1.0.0"]
[ring/ring-json "0.3.1"]
[bk/ring-gzip "0.1.1"]
[secretary "1.2.1"]
[org.clojars.jws/ring-etag-middleware "0.1.2-SNAPSHOT"]
[org.clojars.fterrier/om-autocomplete "0.2.0-SNAPSHOT"]
[com.newrelic.agent.java/newrelic-api "3.13.0"]]
:plugins [[lein-cljsbuild "1.0.4"]
[lein-less "1.7.2"]]
:uberjar-name "tramboard-clj.jar"
:source-paths ["src/clj"]
:cljsbuild {:builds {:app {:source-paths ["src/cljs"]}}}
:less {:source-paths ["src/less"]
:target-path "resources/public/css"}
:profiles {:dev {:source-paths ["env/dev/src/clj"]
:dependencies [[figwheel-sidecar "0.2.1-SNAPSHOT"]
[figwheel "0.2.1-SNAPSHOT"]
[midje "1.6.3"]]
:plugins [[lein-figwheel "0.2.1-SNAPSHOT"]
[lein-ring "0.8.13"]
[lein-deps-tree "0.1.2"]
[lein-pdo "0.1.1"]
[lein-midje "3.1.3"]]
:aliases {"autotest" ["midje" ":autotest"]}
:ring {:handler tramboard-clj.core.handler/app}
:figwheel {:css-dirs ["resources/public/css"]}
:cljsbuild {:builds {:app {:source-paths ["env/dev/src/cljs"]
:compiler {:output-to "resources/public/js/dev.js"
:output-dir "resources/public/out"
:optimizations :none
:pretty-print true
:source-map "resources/public/out.js.map"}}}}}
:uberjar {:source-paths ["env/prod/src/clj"]
:omit-source true
:aot :all
:hooks [leiningen.less leiningen.cljsbuild]
:cljsbuild {:builds {:app {:source-paths ["env/prod/src/cljs"]
:compiler {:output-to "resources/public/js/main.js"
:optimizations :advanced
:pretty-print false}}}}}}
:aliases {"develop" ["pdo" "figwheel" ["less" "auto"]]})