-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
58 lines (51 loc) · 2.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(defproject friendly "0.1.0-SNAPSHOT"
:description "Friendly RSS Reader"
:url "http://friendly.clojurecup.com/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [;; server
[org.clojure/clojure "1.6.0"]
[clj-http "1.0.0"]
[ring/ring-json "0.3.1"]
;; [org.clojure/data.json "0.2.5"]
[cheshire "5.3.1"]
[compojure "1.1.5" :exclusions [ring/ring-core org.clojure/core.incubator]]
[com.cemerick/friend "0.2.0" :exclusions [ring/ring-core]]
[friend-oauth2 "0.1.1" :exclusions [org.apache.httpcomponents/httpcore]]
[ring-server "0.3.0" :exclusions [ring]]
[http-kit "2.0.0"]
[hickory "0.5.2"] ;; parse HTML to extract potential RSS feeds
;; RRS/OPML
[com.rometools/rome "1.5.0"]
[com.rometools/rome-opml "1.5.0"]
[org.slf4j/slf4j-simple "1.7.7"]
;; web resources, css, etc
[org.webjars/bootstrap "3.2.0"]
[org.webjars/bootswatch-lumen "3.2.0-1"]
[org.webjars/bootswatch-readable "3.2.0-1"]
[org.webjars/react "0.11.1"]
[org.webjars/jquery "1.11.1"]
[org.webjars/font-awesome "4.2.0"]
;; client side
[org.clojure/clojurescript "0.0-2311"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[whoops/reagent "0.4.3"]
[secretary "1.2.1"]
[cljs-ajax "0.2.6"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]]
:source-paths ["src", "src-cljs"]
:cljsbuild
{:builds [{:id "dev"
:source-paths ["src-cljs"]
:compiler {:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:optimizations :none
:source-map true}}
{:id "prod"
:source-paths ["src-cljs"]
:compiler {:output-to "resources/public/js/app-prod.js"
:output-dir "resources/public/js/out-prod"
:optimizations :advanced
:source-map "resources/public/js/app-prod.map"}}
]}
:main friendly.core)