-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
48 lines (37 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
46
47
48
(defproject prod-inv-ui "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.520"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library]]
[thheller/shadow-cljs "2.8.51"]
[reagent "0.8.1"]
[re-frame "0.10.8"]
[re-com "2.5.0"]
[garden "1.3.9"]
[ns-tracker "0.4.0"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[re-frame-datatable "0.6.0"]
[day8.re-frame/http-fx "0.1.6"]
[cljs-ajax "0.8.0"]]
:plugins [[lein-garden "0.2.8"]]
:min-lein-version "2.5.3"
:jvm-opts ["-Xmx1G"]
:source-paths ["src/clj" "src/cljs"]
:test-paths ["test/cljs"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"
"test/js"
"resources/public/css"]
:garden {:builds [{:id "screen"
:source-paths ["src/clj"]
:stylesheet prod-inv-ui.css/screen
:compiler {:output-to "resources/public/css/screen.css"
:pretty-print? true}}]}
:aliases {"dev" ["with-profile" "dev" "run" "-m" "shadow.cljs.devtools.cli" "watch" "app"]
"prod" ["with-profile" "prod" "run" "-m" "shadow.cljs.devtools.cli" "release" "app"]}
:profiles
{:dev
{:dependencies [[binaryage/devtools "0.9.10"]
[day8.re-frame/re-frame-10x "0.4.2"]
[day8.re-frame/tracing "0.5.3"]]}
:prod { :dependencies [[day8.re-frame/tracing-stubs "0.5.3"]]}
})