forked from AustinClojure/groops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
46 lines (39 loc) · 1.7 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
(defproject groops "0.1.0-SNAPSHOT"
:description "Austin Clojure Meetup groops project"
:url "https://github.com/AustinClojure/groops"
:dependencies [[org.clojure/clojure "1.6.0"]
;; server
[cheshire "5.3.1"]
[compojure "1.1.8"]
[http-kit "2.1.16"]
[ring/ring-devel "1.1.8"]
[ring/ring-core "1.1.8"]
[ring/ring-json "0.3.1"]
[liberator "0.12.1"]
[enlive "1.1.5"]
;; clojurescript
[org.clojure/clojurescript "0.0-2280"]
[om "0.7.0"]
[kioo "0.4.1-SNAPSHOT"]
[cljs-ajax "0.2.6"]
[com.facebook/react "0.11.1"]
;; dev
[org.clojure/tools.nrepl "0.2.3"]
[cider/cider-nrepl "0.7.0"]
[cljs-hash "0.0.2"]]
:plugins [[com.cemerick/austin "0.1.5"]
[lein-cljsbuild "1.0.3"]
[lein-ring "0.8.8"]]
:resource-paths ["resources"]
:cljsbuild {:builds
[{:source-paths ["src-cljs"]
:compiler {
:output-to "resources/generated/js/groops.js"
:output-dir "resources/generated/js"
:optimizations :whitespace
;;:source-map "resources/generated/js/groops.js.map"
:pretty-print true}}]}
:profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]
:repl-options {:init-ns "groops.web"}}}
:aliases {"server" ["trampoline" "run" "-m" "groops.server"]})