forked from kovasb/session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
50 lines (41 loc) · 1.47 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
(defproject session "0.1.4"
:dependencies
[
;; Platform
[com.datomic/datomic-free "0.9.4556"]
[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2197"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[com.stuartsierra/component "0.2.1"]
;; Primary Libs
[om "0.5.3"]
[yantra "0.1.4"]
[merchant "0.1.4"]
;; Tools
[compojure "1.1.5" :exclusions [ring/ring-core]]
[com.keminglabs/jetty7-websockets-async "0.1.0"]
[ring/ring-jetty-adapter "1.2.0"]
[ring/ring-servlet "1.2.0"]
[secretary "1.1.0"]
;; XXXXX
[criterium "0.4.3"]
[alembic "0.1.0"]
[me.raynes/conch "0.5.0"]
]
:dev-dependencies []
:source-paths ["src/clj"]
:plugins [[lein-cljsbuild "1.0.0"]
[lein-localrepo "0.4.1"]]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {
:source-map true
:foreign-libs [{:file "om/react.js"
:provides ["React"]}]
:externs ["om/externs/react.js"]
:output-to "resources/public/cljs/bootstrap.js" ; default: main.js in current directory
:output-dir "resources/public/cljs"
:optimizations :none}}]}
:jvm-opts ["-Xmx1g"]
:main ^{:skip-aot true} session.main)