-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
24 lines (24 loc) · 1.05 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject todos "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.4.0"]
[org.clojure/clojurescript "0.0-1535"]
[org.clojure/google-closure-library-third-party "0.0-2029"]
[com.cemerick/piggieback "0.0.2"]
[crate "0.2.1"]
[domina "1.0.1"]
[compojure "1.1.3"]]
:source-paths ["src/clj"]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:plugins [[lein-cljsbuild "0.2.9"]
[lein-ring "0.7.5"]]
:ring {:handler todos.core/handler}
:cljsbuild {
:builds [{
:source-path "src/cljs"
:compiler {
:output-to "resources/public/todo.js"
:optimizations :whitespace
:pretty-print true}}]})