2015-08-22 05:07:37 +00:00
|
|
|
(defproject $PROJECT_NAME_HYPHENATED$ "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"}
|
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
2015-10-17 03:54:46 +00:00
|
|
|
[org.clojure/clojurescript "1.7.145"]
|
2015-10-31 18:13:36 +00:00
|
|
|
[$REACT_INTERFACE$]
|
2015-08-22 05:07:37 +00:00
|
|
|
[org.omcljs/ambly "0.6.0"]]
|
2015-08-30 04:27:51 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.0"]]
|
2015-08-22 05:07:37 +00:00
|
|
|
:cljsbuild {:builds {:dev {:source-paths ["src"]
|
|
|
|
:compiler {:output-to "target/out/main.js"
|
|
|
|
:output-dir "target/out"
|
|
|
|
:optimizations :none}}}})
|