(defproject hello-world "0.1.0-SNAPSHOT"
  :description "FIXME: write this!"
  :url "http://example.com/FIXME"

  :dependencies [[org.clojure/clojure "1.5.1"]
                 [org.clojure/clojurescript "0.0-2173"]
		 [reagent "0.4.1"]
		 [org.clojure/core.async "0.1.267.0-0d7780-alpha"]
		 [org.clojure/core.match "0.2.1"]]

  :plugins [[lein-cljsbuild "1.0.2"]]

  :source-paths ["src"]

  :cljsbuild { 
    :builds [{:id "hello-world"
              :source-paths ["src"]
              :compiler {
                :preamble ["reagent/react.js"]
                :output-to "hello_world.js"
                :output-dir "out"
                :optimizations :whitespace
                :source-map "hello_world.js.map"}}]})