views.reagent/examples/class-registry/project.clj

58 lines
2.6 KiB
Clojure
Raw Normal View History

2016-05-25 16:26:37 -04:00
(defproject class-registry "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[ring "1.4.0"]
[ring/ring-defaults "0.2.0" :exclusions [javax.servlet/servlet-api]]
[ring-middleware-format "0.7.0"]
[compojure "1.4.0"]
[org.immutant/web "2.1.4"]
[org.clojure/java.jdbc "0.6.1"]
[org.postgresql/postgresql "9.4.1208.jre7"]
[com.taoensso/sente "1.8.1"]
2016-06-27 18:56:18 -04:00
[gered/views "1.5"]
[gered/views.sql "0.1"]
[gered/views.reagent "0.1"]
[gered/views.reagent.sente "0.1"]
2016-05-25 16:26:37 -04:00
2016-05-30 17:25:57 -04:00
[hiccup "1.0.5"]
2016-05-25 16:26:37 -04:00
[reagent "0.6.0-alpha2"]
[cljsjs/bootstrap "3.3.6-1"]
[cljs-ajax "0.5.4"]
[environ "1.0.3"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-environ "1.0.3"]]
:main class-registry.server
:clean-targets ^{:protect false} [:target-path
[:cljsbuild :builds :main :compiler :output-dir]
[:cljsbuild :builds :main :compiler :output-to]]
:cljsbuild {:builds {:main
{:source-paths ["src"]
2016-05-30 17:25:57 -04:00
:compiler {:main class-registry.client
:output-to "resources/public/cljs/app.js"
2016-05-25 16:26:37 -04:00
:output-dir "resources/public/cljs/target"
2016-05-30 17:25:57 -04:00
:asset-path "cljs/target"
2016-05-25 16:26:37 -04:00
:source-map true
:optimizations :none
:pretty-print true}}}}
:profiles {:dev {:env {:dev "true"}}
:uberjar {:env {}
:aot :all
:hooks [leiningen.cljsbuild]
:cljsbuild {:jar true
:builds {:main
{:compiler ^:replace {:output-to "resources/public/cljs/app.js"
:optimizations :advanced
:pretty-print false}}}}}}
:aliases {"rundemo" ["do" ["clean"] ["cljsbuild" "once"] ["run"]]
"uberjar" ["do" ["clean"] ["uberjar"]]}
)