-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
46 lines (46 loc) · 2.21 KB
/
Copy pathproject.clj
File metadata and controls
46 lines (46 loc) · 2.21 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
(defproject berest "1.0.0-SNAPSHOT"
:min-lein-version "2.0.0"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/math.numeric-tower "0.0.1"]
[incanter/incanter-core "1.4.0"]
[com.datomic/datomic-free "0.8.3704"]
[clj-time "0.4.2"]
[egamble/let-else "1.0.4"]
[clojure-csv/clojure-csv "2.0.0-alpha1"]
#_[org.clojure/data.csv "0.1.2"]
[compojure "1.1.3"]
[ring/ring-core "1.1.8"]
[lib-noir "0.3.3"]
[hiccup "1.0.2"]
#_[enlive "1.0.1"]
#_[the/parsatron "0.0.2"] ;current version directly copied to src
#_[org.clojure/tools.macro "0.1.1"]
[cheshire "4.0.3"]
[clj-info "0.2.6"]
[com.keminglabs/c2 "0.2.0"]
[org.clojure/core.match "0.2.0-alpha11"]
[org.clojars.pallix/analemma "1.0.0"]
[com.cemerick/friend "0.1.3"]
[org.clojure/algo.generic "0.1.0"]
[bouncer "0.2.0"]
[enfocus "1.0.0-beta2"]
[prismatic/dommy "0.0.1"]
[domina "1.0.0"]
[org.clojure/google-closure-library-third-party "0.0-2029"]
[formative "0.3.2"]
]
:plugins [[lein-cljsbuild "0.3.0"]]
:cljsbuild {:builds [{; The path to the top-level ClojureScript source directory:
;:source-paths ["src"]
:source-path "src"
; The standard ClojureScript compiler options:
; (See the ClojureScript compiler documentation for details.)
:compiler {:output-to "resources/public/cljs/main.js" ; default: main.js in current directory
:output-dir "resources/public/cljs"
:optimizations :whitespace
:pretty-print true}}]}
:ring {:handler weberest.web.routes/berest-app}
;:main ^{:skip-aot true} weberest.web.server
;:main ^{:skip-aot true} weberest.core
)