-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
35 lines (29 loc) · 1.3 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
25
26
27
28
29
30
31
32
33
34
35
(defproject mccawley-html "0.1.0-SNAPSHOT"
:description "HTML front end complement to McCawley API."
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src" "dev"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-3058" :scope "provided"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[ring "1.3.2"]
[compojure "1.2.0"]
[figwheel "0.2.5"]
[environ "1.0.0"]
[leiningen "2.5.0"]
[reagent "0.5.0"]
[cljs-ajax "0.3.11"]
[clj-time "0.9.0"]]
:min-lein-version "2.5.0"
:plugins [[lein-cljsbuild "1.0.4"]
[lein-environ "1.0.0"]
[lein-figwheel "0.2.0-SNAPSHOT"]]
:figwheel {:http-server-root "public"
:port 3449}
:cljsbuild {:builds {:app {:source-paths ["src" "dev"]
:compiler {:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:source-map "resources/public/js/out.js.map"
:optimizations :none}}}}
)