(defproject parensofthedead "0.1.0-SNAPSHOT"
:description "A series of zombie-themed games written with Clojure and ClojureScript."
:license {:name "Eclipse Public License"
:jvm-opts []
:main parensofthedead.system
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.58"]
[http-kit "2.1.18"]
[com.stuartsierra/component "0.3.0"]
[compojure "1.4.0"]
[quiescent "0.2.0-RC2"]
[expectations "2.1.3"]
[jarohen/chord "0.6.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]]
:source-paths ["src"]
:test-paths ["test"]
:profiles {:dev {:plugins [[lein-cljsbuild "1.1.0"]
[lein-figwheel "0.4.0"]]
:dependencies [[reloaded.repl "0.2.0"]
[lein-figwheel "0.4.0"]
[com.cemerick/piggieback "0.2.2-SNAPSHOT"]]
:source-paths ["dev"]
:figwheel {:nrepl-port 7888}
:cljsbuild {:builds [{:source-paths ["src" "dev"]
:figwheel true
:compiler {:output-to "target/classes/public/app.js"
:output-dir "target/classes/public/out"
:optimizations :none
:source-map true}}]}}})