re-frame/examples/todomvc/project.clj

36 lines
1.5 KiB
Clojure
Raw Normal View History

(defproject todomvc-re-frame "0.8.0"
2016-06-14 12:46:38 +00:00
:dependencies [[org.clojure/clojure "1.8.0"]
2016-07-07 04:52:13 +00:00
[org.clojure/clojurescript "1.9.89"]
2016-06-11 12:21:29 +00:00
[reagent "0.6.0-rc"]
2016-08-21 09:50:17 +00:00
[re-frame "0.8.0"]
2016-08-19 08:20:21 +00:00
[binaryage/devtools "0.8.1"]
2016-07-19 23:39:59 +00:00
[secretary "1.2.3"]]
2015-02-26 01:51:59 +00:00
2016-06-14 12:46:38 +00:00
:plugins [[lein-cljsbuild "1.1.3"]
2016-07-19 04:34:10 +00:00
[lein-figwheel "0.5.4-7"]]
2015-02-26 01:51:59 +00:00
:hooks [leiningen.cljsbuild]
:profiles {:dev {:cljsbuild
{:builds {:client {:source-paths ["devsrc"]
:compiler {:main "todomvc.dev"
:asset-path "js"
:optimizations :none
:source-map true
:source-map-timestamp true}}}}}
2015-02-26 01:51:59 +00:00
:prod {:cljsbuild
{:builds {:client {:compiler {:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
:figwheel {:server-port 3450
2015-11-02 11:37:04 +00:00
:repl true}
2015-11-02 11:37:04 +00:00
:clean-targets ^{:protect false} ["resources/public/js" "target"]
2015-02-26 01:51:59 +00:00
2015-11-02 11:37:04 +00:00
:cljsbuild {:builds {:client {:source-paths ["src" "../../src"]
:compiler {:output-dir "resources/public/js"
:output-to "resources/public/js/client.js"}}}})