reagent/examples/react-sortable-hoc/project.clj

29 lines
967 B
Clojure
Raw Normal View History

2018-10-19 09:56:10 +00:00
(defproject reagent/react-sortable-hoc-example "0.1.0"
2019-02-07 18:42:06 +00:00
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.516"]
2018-10-19 09:56:10 +00:00
[reagent "0.8.1"]
2019-02-07 18:42:06 +00:00
[figwheel "0.5.18"]
2018-10-19 09:56:10 +00:00
[cljsjs/react-sortable-hoc "0.8.2-0"]]
:plugins [[lein-cljsbuild "1.1.7"]
2019-02-07 18:42:06 +00:00
[lein-figwheel "0.5.18"]]
2018-10-19 09:56:10 +00:00
:figwheel {:repl false
:http-server-root "public"}
:profiles {:dev {:resource-paths ["target/cljsbuild/client" "target/cljsbuild/client-npm"]}}
:cljsbuild
{:builds
{:client
{:source-paths ["src"]
:figwheel true
:compiler {:parallel-build true
:source-map true
:optimizations :none
:main "example.core"
:output-dir "target/cljsbuild/client/public/js/out"
:output-to "target/cljsbuild/client/public/js/main.js"
:asset-path "js/out"
:npm-deps false}}}})