forked from blackbing/react-kp-api-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
36 lines (31 loc) · 1.56 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
36
(defproject om-kp-api-sample "0.1.0-SNAPSHOT"
:description "柯文哲野生官網 API 使用範例 - ClojureScript/Om 版本"
:url "https://github.com/cataska/om-kp-api-sample"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2311"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[om "0.7.1"]
[jayq "2.5.2"]
[sablono "0.2.22"]
[compojure "1.1.8"]
[ring "1.3.1"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]
[lein-ring "0.8.11"]]
:source-paths ["src/clj"]
:ring {:handler om-kp-api-sample.core/app}
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/app.js"
:output-dir "out"
:optimizations :whitespace
:pretty-print true}}
{:id "release"
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/app.js"
:optimizations :advanced
:pretty-print false
:output-wrapper false
:elide-asserts true
:warnings false
:externs ["externs/react-with-addons.min.js"
"externs/jquery.min.js"]}}]})