forked from bzg/jecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
58 lines (58 loc) · 2 KB
/
project.clj
File metadata and controls
58 lines (58 loc) · 2 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
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
jecode "0.0.5"
:url "http://github.com/bzg/jecode"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies
[[org.clojure/clojure "1.5.1"]
[lib-noir "0.8.2"]
[domina "1.0.2"]
[hiccup "1.0.5"]
[simple-time "0.1.1"]
[compojure "1.1.6"]
[prismatic/schema "0.2.1"]
[clojurewerkz/scrypt "1.1.0"]
[http-kit "2.1.18"]
[org.clojure/clojurescript "0.0-2202"]
[net.drib/blade "0.1.0"]
[friend-oauth2 "0.1.1"]
[com.cemerick/friend "0.2.0"
:exclusions [org.apache.httpcomponents/httpclient org.clojure/core.cache]]
[com.taoensso/carmine "2.6.2"]
[shoreleave/shoreleave-remote-ring "0.3.0"]
[shoreleave/shoreleave-remote "0.3.0"]
[com.draines/postal "1.11.1"]
[digest "1.4.4"]
[enlive "1.1.5"]
[clj-rss "0.1.6"]
[clj-http "0.9.1"]
[cheshire "5.3.1"]
[markdown-clj "0.9.43"]
[clojurewerkz/elastisch "2.0.0-beta4"]]
:main jecode.handler
:description "jecode.org"
:min-lein-version "2.0.0"
:plugins
[[lein-cljsbuild "0.3.2"]]
:cljsbuild {:builds
[{:source-paths ["src/cljs/showinit"]
:compiler
{:output-to "resources/public/js/showinits.js"
:optimizations :whitespace
:pretty-print false}}
{:source-paths ["src/cljs/showevent"]
:compiler
{:output-to "resources/public/js/showevents.js"
:optimizations :whitespace
:pretty-print false}}
{:source-paths ["src/cljs/validate_email"]
:compiler
{:output-to "resources/public/js/validate_email.js"
:optimizations :whitespace
:pretty-print false}}
{:source-paths ["src/cljs/validate_event_init"]
:compiler
{:output-to "resources/public/js/validate_event_init.js"
:optimizations :whitespace
:pretty-print false}}
]})