-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
144 lines (127 loc) · 8.16 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
(defproject fractalify "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"}
:source-paths ["src/clj" "src/cljc"]
:test-paths ["test/clj"]
:dependencies [[org.clojure/clojure "1.8.0-alpha5"]
[org.clojure/clojurescript "1.7.48" :scope "provided"]
[ring "1.4.0" :exclusions [org.clojure/tools.namespace hiccup]]
[ring/ring-defaults "0.1.5" :exclusions [hiccup]]
[enlive "1.1.6"]
[environ "1.0.0"]
[http-kit "2.1.19"]
[com.cemerick/drawbridge "0.0.6"]
[ring-basic-authentication "1.0.5"]
[reagent "0.5.1" :exclusions [cljsjs/react]]
;[reagent "0.5.1"]
[re-frame "0.4.1"]
[cljs-ajax "0.5.0"]
[day8/re-frame-tracer "0.1.0-SNAPSHOT" :exclusions [org.clojars.stumitchell/clairvoyant]]
[org.clojars.stumitchell/clairvoyant "0.1.0-SNAPSHOT"]
[binaryage/devtools "0.3.0"]
[prismatic/schema "1.0.1"]
[kibu/pushy "0.3.2"]
[rm-hull/monet "0.2.1"]
[bidi "1.21.0"]
[prismatic/plumbing "0.5.0"]
[camel-snake-kebab "0.3.2"]
[com.andrewmcveigh/cljs-time "0.3.13"]
[clj-time "0.11.0"]
[com.stuartsierra/component "0.2.3"]
[liberator "0.13"]
[org.clojure/tools.logging "0.3.1"]
[juxt.modular/bidi "0.9.4"]
[juxt.modular/http-kit "0.5.4"]
[me.raynes/conch "0.8.0"]
[com.novemberain/monger "3.0.0-rc2"]
[clojurewerkz/scrypt "1.2.0"]
[cheshire "5.5.0"]
[org.clojure/tools.logging "0.3.1"]
[clj-logging-config "1.9.12"]
[org.slf4j/slf4j-nop "1.7.12"]
[org.clojure/core.cache "0.6.4"]
[io.forward/sendgrid-clj "1.0" :exclusions [commons-codec
org.apache.httpcomponents/httpclient
slingshot]]
[clj-http "2.0.0"]
[com.cemerick/friend "0.2.1" :exclusions [org.apache.httpcomponents/httpclient]]
[selmer "0.9.2" :exclusions [commons-codec hiccup]]
[digest "1.4.4"]
[midje "1.7.0" :exclusions [slingshot commons-codec]]
[io.clojure/liberator-transit "0.3.0"]
[ring-middleware-format "0.6.0"]
[com.cognitect/transit-clj "0.8.281"]
[com.rpl/specter "0.7.1"]
[instar "1.0.10" :exclusions [org.clojure/clojure]]
[com.cloudinary/cloudinary-http44 "1.2.1"]
[figwheel-sidecar "0.3.7" :exclusions [org.codehaus.plexus/plexus-utils]]
[ring.middleware.conditional "0.2.0"]
[org.clojure/test.check "0.8.2"]
[cljsjs/google-analytics "2015.04.13-0"]]
:plugins [[lein-cljsbuild "1.1.0"]
[lein-environ "1.0.0"]
[lein-less "1.7.3"]]
:min-lein-version "2.5.0"
:uberjar-name "fractalify.jar"
:cljsbuild {:builds {:app {:source-paths ["src/cljs" "src/cljc"]
:compiler {:main fractalify.core
:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:source-map "resources/public/js/out.js.map"
:optimizations :none
:externs ["src/externs.js"]
:pretty-print true}}
:turtle-worker {:source-paths ["src/cljs/workers" "src/cljc/fractalify/workers"]
:compiler {:main fractalify.workers.turtle
:output-to "resources/public/js/turtle-worker.js"
:output-dir "resources/public/js/turtle-worker"
:source-map "resources/public/js/turtle-worker.js.map"
:optimizations :simple
:pretty-print true
:externs ["src/externs.js"]}}}}
:less {:source-paths ["src/less"]
:target-path "resources/public/css"}
:profiles {:dev {:source-paths ["env/dev/clj"]
:test-paths ["test/clj"]
:dependencies [[figwheel "0.3.7"]
[com.cemerick/piggieback "0.1.5"]
[weasel "0.6.0"]
[io.aviso/pretty "0.1.18"]]
:repl-options {:init-ns fractalify.user
:welcome (println "Type (dev) to start")
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl
io.aviso.nrepl/pretty-middleware]}
:plugins [[lein-figwheel "0.3.7" :exclusions [org.clojure/clojure
org.codehaus.plexus/plexus-utils]]]
:figwheel {:http-server-root "public"
:server-port 3449
:css-dirs ["resources/public/css"]
:on-jsload "fractalify.core/mount-root"}
:env {:is-dev? true}
:cljsbuild {:test-commands {"test" ["phantomjs" "env/test/js/unit-test.js" "env/test/unit-test.html"]}
:builds {:app {:source-paths ["env/dev/cljs"]}
:test {:source-paths ["src/cljs" "test/cljs"]
:compiler {:output-to "resources/public/js/app_test.js"
:output-dir "resources/public/js/test"
:source-map "resources/public/js/test.js.map"
:optimizations :whitespace
:pretty-print false}}}}}
:uberjar {:source-paths ["env/prod/clj"]
:hooks [leiningen.cljsbuild leiningen.less]
:env {:production true}
:omit-source true
:aot :all
:main fractalify.prod
:cljsbuild {:builds {:app
{:source-paths ["env/prod/cljs"]
:compiler
{:main fractalify.core
:optimizations :advanced
:closure-defines {:goog.DEBUG false}
:pretty-print false}}
:turtle-worker
{:compiler {:optimizations :advanced
:closure-defines {:goog.DEBUG false}
:pretty-print false}}}}}})