forked from stuarthalloway/exploring-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (37 loc) · 1.93 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
(defproject exploring-clojure "0.1.0-SNAPSHOT"
:description "Template project for interactive exploration of Clojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-1889"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha" #_"0.1.242.0-44b1e3-alpha" #_"0.1.222.0-83d0c2-alpha"]
[org.clojure/core.logic "0.6.6"]
[org.clojure/core.match "0.2.0-rc6"]
[org.clojure/core.typed "0.2.13"]
[org.clojure/data.json "0.2.3"]
[org.clojure/math.combinatorics "0.0.4"]
[org.clojure/test.generative "0.5.1"]
[org.clojure/test.check "0.5.7"]
[com.datomic/datomic-free "0.9.4699"]
[com.datomic/simulant "0.1.7"]
[gorilla-repl "0.1.2"]
[clj-time "0.6.0"]
[criterium/criterium "0.3.1"]
[dorothy "0.0.3"]
[enlive/enlive "1.1.4"]
[prismatic/schema "0.1.5"]
[quil "1.6.0"]
[rhizome "0.2.0"]]
:plugins [[lein-typed "0.3.0"] [lein-cljsbuild "0.3.2"]]
:source-paths ["src/clj" "src/cljs"]
:core.typed {:check [exploring.type-checked-namespace]}
:profiles {:dev {:jvm-opts ["-Xmx6g" "-server"]}}
:cljsbuild {:builds
{:dev {:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/javascript/exploring-clojure.js"
:pretty-print true
:optimizations :simple}}
:prod {:source-paths ["src/cljs"]
:compiler { :output-to "resources/public/javascript/exploring-clojure-min.js"
:pretty-print false
:optimizations :advanced}}}})