-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
29 lines (29 loc) · 1.05 KB
/
project.clj
File metadata and controls
29 lines (29 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(defproject bananas "0.1.0-SNAPSHOT"
:description "I'm just a Clojure web app."
:url "https://github.com/decomplecting/bananas"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.3.1"]
[ring/ring-defaults "0.1.2"]
[ring/ring-json "0.3.1"]
[reagent "0.5.0-alpha"]
[hiccup "1.0.5"]
[garden "1.2.5"]
[prone "0.8.0"]
[org.clojure/clojurescript "0.0-2913"]]
:source-paths ["src/clj" "src/cljs"]
:plugins [[lein-ring "0.8.13"]
[lein-cljsbuild "1.0.5"]]
:ring {:handler bananas.handler/app}
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src/cljs"]
:compiler
{:optimizations :none
:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"}}]}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}
:ring {:stacktrace-middleware prone.middleware/wrap-exceptions}})