-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
45 lines (43 loc) · 1.75 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
(defproject reference "3.0.0"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/core.async "0.4.474"]
[version-clj "0.1.2"]
;; general
[com.stuartsierra/component "0.3.2"]
[clj-time "0.15.1"]
[me.raynes/fs "1.4.6"]
[cheshire "5.8.1"]
;; templates
[selmer "1.12.3"]
;; web
[http-kit "2.3.0"]
[compojure "1.6.1"]
[ring/ring-json "0.4.0"]
[ring/ring-core "1.7.1"]
[enlive "1.1.6"]
;; logging
[com.taoensso/timbre "4.10.0"]
;; databases
[com.taoensso/carmine "2.19.1"]
[org.clojure/java.jdbc "0.7.8"]
[org.postgresql/postgresql "42.2.5"]
[clojure.jdbc/clojure.jdbc-c3p0 "0.3.3"]
[honeysql "0.9.4"]
[com.rpl/specter "1.1.1"]
[instaparse "1.4.9"]
[toml "0.1.3"]
[hiccup "1.0.5"]
[garden "1.3.6"]]
:profiles {:dev {:jvm-opts ["-Ddev=true"]}
:uberjar {:jvm-opts []}}
:plugins [[lein-ancient "0.6.10"]
[deraen/sass4clj "0.3.1"]
[deraen/lein-sass4clj "0.3.1"]
[lein-asset-minifier "0.4.4"]]
:sass {:source-paths ["src-scss"]
:target-path "resources/public/css"
:output-style :compressed}
:minify-assets [[:js {:source ["resources/public/lib/gemini/index.js"
"resources/public/lib/gemini/pisces.js"]
:target "resources/public/lib/gemini/gemini.min.js"}]]
:main reference.core)