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

56 lines
2.6 KiB
Clojure
Raw Normal View History

2016-05-25 16:26:37 -04:00
(defproject class-registry "0.1.0-SNAPSHOT"
2022-01-12 17:18:47 -05:00
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.773"]
[ring "1.9.4"]
[ring/ring-defaults "0.3.3" :exclusions [javax.servlet/servlet-api]]
[ring-middleware-format "0.7.4"]
[compojure "1.6.2"]
[org.immutant/web "2.1.10"]
[org.clojure/java.jdbc "0.7.12"]
[org.postgresql/postgresql "42.3.1"]
[com.taoensso/sente "1.16.2"]
[net.gered/views "1.6.0"]
[net.gered/views.sql "0.2.0"]
[net.gered/views.reagent "0.2.0"]
[net.gered/views.reagent.sente "0.2.0"]
2016-05-25 16:26:37 -04:00
2016-05-30 17:25:57 -04:00
[hiccup "1.0.5"]
2022-01-12 17:18:47 -05:00
[reagent "1.1.0"]
[cljs-ajax "0.8.4"]
2016-05-25 16:26:37 -04:00
[cljsjs/bootstrap "3.3.6-1"]
2022-01-12 17:18:47 -05:00
[cljsjs/react "17.0.2-0"]
[cljsjs/react-dom "17.0.2-0"]]
2016-05-25 16:26:37 -04:00
2022-01-12 17:18:47 -05:00
:plugins [[lein-cljsbuild "1.1.8"]]
2016-05-25 16:26:37 -04:00
: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}}}}
2022-01-12 17:18:47 -05:00
:profiles {:dev {}
2016-05-25 16:26:37 -04:00
2022-01-12 17:18:47 -05:00
:uberjar {:aot :all
2016-05-25 16:26:37 -04:00
: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"]]}
)