-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
49 lines (43 loc) · 2.07 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
(defproject ixtlan "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
; :jvm-opts ^:replace ["-Xmx1g" "-server"]
:uberjar-name "ixtlan-0.1.0-SNAPSHOT-standalone.jar"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2199"]
[ring/ring-core "1.2.2"]
[ring/ring-jetty-adapter "1.2.2"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[om "0.5.3"]
[compojure "1.1.6"]
[alandipert/storage-atom "1.2.2"]
[com.facebook/react "0.9.0.1"]
[fogus/ring-edn "0.2.0"]]
:ring {:handler ixtlan.core/app}
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]
[lein-ring "0.8.7"]]
:source-paths ["src/clj" "src/cljs"]
:resource-paths ["resources"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {
:output-to "resources/public/js/development/main.js"
:output-dir "resources/public/js/development"
:optimizations :none
:source-map true}}
{:id "release"
:source-paths ["src/cljs"]
:compiler {
:output-to "out/release.js"
:optimizations :advanced
:pretty-print false
:externs ["react/externs/react.js"]
:preamble ["react/react.min.js"]
:closure-warnings {
:externs-validation :off
:non-standard-jsdoc :off}
}}]})