-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
64 lines (57 loc) · 2.93 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
59
60
61
62
63
64
(defproject luma "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/core.async "1.5.648"]
[org.clojure/tools.logging "1.2.4"]
[org.clojure/tools.reader "1.3.6"]
[compojure "1.6.2"]
[yogthos/config "1.2.0"]
[ring/ring-core "1.9.5"]
[ring/ring-defaults "0.3.3"]
[ring/ring-json "0.5.1"]
[aleph "0.4.7"]
[org.clj-commons/byte-streams "0.3.0"]
[hiccup "1.0.5"]
[mount "0.1.16"]
[com.taoensso/sente "1.16.2"]
[com.taoensso/timbre "5.2.1"]
[com.cognitect/transit-clj "1.0.329" :exclusions [javax.xml.bind/jaxb-api]]
[org.clojure/java.jdbc "0.7.12"]
[org.postgresql/postgresql "42.3.4"]
[hikari-cp "2.14.0"]
[clj-time "0.15.2"]]
:plugins [[lein-ancient "0.7.0"]
[lein-cljfmt "0.8.0"]
[lein-kibit "0.1.8"]
[jonase/eastwood "1.2.3"]]
:min-lein-version "2.8.2"
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:test-paths []
:clean-targets ^{:protect false} ["target"
"resources/public/js"
"resources/manifest.edn"
".shadow-cljs"]
:cljfmt {:indents {async [[:inner 0]]
when-let+ [[:inner 0]]
react-component [[:inner 0]]}}
:eastwood {:namespaces [:source-paths]
:config-files ["test-resources/eastwood.clj"]}
:profiles {:dev {:dependencies [[binaryage/devtools "1.0.6"]
[re-frisk "1.5.2" :exclusions [org.clojure/clojurescript]]
[day8.re-frame/test "0.1.5"]
[org.clojure/tools.namespace "1.2.0"]
[ring/ring-devel "1.9.5"]]
:source-paths ["dev"]
:test-paths ["test/clj" "test/cljc" "test/cljs"]
:resource-paths ["dev-resources" "target"]}
:provided {:dependencies [[reagent "1.1.1"]
[re-frame "1.2.0"]
[arttuka/reagent-material-ui "5.6.2-0"]
[com.cognitect/transit-cljs "0.8.269"]
[com.cognitect/transit-js "0.8.874"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[thheller/shadow-cljs "2.18.0"]]}
:uberjar {:dependencies [[com.fzakaria/slf4j-timbre "0.3.21"]]
:main luma.main
:uberjar-name "luma.jar"
:auto-clean false}}
:aot [luma.main])