-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
65 lines (54 loc) · 2.68 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
65
(defproject cljchat "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.597"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]]
[thheller/shadow-cljs "2.8.83"]
[reagent "0.9.1"]
[re-frame "0.11.0"]
[secretary "1.2.3"]
[ns-tracker "0.4.0"]
[compojure "1.6.1"]
[yogthos/config "1.1.7"]
[ring "1.7.1"]
[re-pressed "0.3.1"]
[breaking-point "0.1.2"]
[talltale "0.4.3"]
[stylefy "1.14.0"]]
:plugins [[lein-shell "0.5.0"]]
: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"]
:shell {:commands {"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:aliases {"dev" ["with-profile" "dev" "do"
["run" "-m" "shadow.cljs.devtools.cli" "watch" "app"]]
"prod" ["with-profile" "prod" "do"
["run" "-m" "shadow.cljs.devtools.cli" "release" "app"]]
"build-report" ["with-profile" "prod" "do"
["run" "-m" "shadow.cljs.devtools.cli" "run" "shadow.cljs.build-report" "app" "target/build-report.html"]
["shell" "open" "target/build-report.html"]]
"karma" ["with-profile" "prod" "do"
["run" "-m" "shadow.cljs.devtools.cli" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]}
:profiles
{:dev
{:dependencies [[binaryage/devtools "1.0.0"]
[day8.re-frame/re-frame-10x "0.5.1"]
[day8.re-frame/tracing "0.5.3"]
[re-frisk "0.5.4.1"]]
:source-paths ["dev"]}
:prod { :dependencies [[day8.re-frame/tracing-stubs "0.5.3"]]}
:uberjar {:source-paths ["env/prod/clj"]
:dependencies [[day8.re-frame/tracing-stubs "0.5.3"]]
:omit-source true
:main cljchat.server
:aot [cljchat.server]
:uberjar-name "cljchat.jar"
:prep-tasks ["compile" ["prod"]]}})