-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
118 lines (104 loc) · 4.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
(defproject bball "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[ch.qos.logback/logback-classic "1.2.3"]
[cljs-ajax "0.8.1"]
[clojure.java-time "0.3.2"]
[com.cognitect/transit-clj "1.0.324"]
[com.google.javascript/closure-compiler-unshaded "v20200504" :scope "provided"]
[conman "0.9.1"]
[cprop "0.1.17"]
[day8.re-frame/http-fx "0.2.3"]
[expound "0.8.9"]
[funcool/struct "1.4.0"]
[luminus-http-kit "0.1.9"]
[luminus-migrations "0.7.1"]
[luminus-transit "0.1.2"]
[luminus/ring-ttl-session "0.3.3"]
[markdown-clj "1.10.5"]
[metosin/muuntaja "0.6.8"]
[metosin/reitit "0.5.12"]
[metosin/ring-http-response "0.9.2"]
[mount "0.1.16"]
[nrepl "0.8.3"]
[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.844" :scope "provided"]
[org.clojure/core.async "1.3.610"]
[org.clojure/google-closure-library "0.0-20191016-6ae1f72f" :scope "provided"]
[org.clojure/tools.cli "1.0.206"]
[org.clojure/tools.logging "1.1.0"]
[org.postgresql/postgresql "42.2.18"]
[org.webjars.npm/bulma "0.9.1"]
[org.webjars.npm/material-icons "0.3.1"]
[org.webjars/webjars-locator "0.40"]
[re-frame "1.2.0"]
[reagent "1.0.0"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.9.1"]
[ring/ring-defaults "0.3.2"]
[selmer "1.12.33"]
[thheller/shadow-cljs "2.12.1" :scope "provided"]
[org.clojure/data.json "2.0.2"]
[overtone/at-at "1.2.0"]
[com.taoensso/sente "1.16.2"]]
:min-lein-version "2.0.0"
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj"]
:test-selectors {:not-db [(fn [n & _]
(not (.contains (str n) "bball.db.core-test")))
(fn [m & _]
true)]}
:resource-paths ["resources" "target/cljsbuild"]
:target-path "target/%s/"
:main ^:skip-aot bball.core
:plugins [[lein-shadow "0.2.0"]]
:clean-targets ^{:protect false}
[:target-path "target/cljsbuild"]
:shadow-cljs
{:nrepl {:port 7002}
:builds
{:app
{:target :browser
:output-dir "target/cljsbuild/public/js"
:asset-path "/js"
:modules {:app {:entries [bball.app]}}
:devtools
{:watch-dir "resources/public" :preloads [re-frisk.preload]}
:dev
{:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}}}
:test
{:target :node-test
:output-to "target/test/test.js"
:autorun true}}}
:npm-deps []
:npm-dev-deps [[xmlhttprequest "1.8.0"]]
:profiles
{:uberjar {:omit-source true
:prep-tasks ["compile" ["shadow" "release" "app"]]
:aot :all
:uberjar-name "bball.jar"
:source-paths ["env/prod/clj" "env/prod/cljs" ]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:project/dev {:jvm-opts ["-Dconf=dev-config.edn" ]
:dependencies [[binaryage/devtools "1.0.2"]
[cider/piggieback "0.5.2"]
[pjstadig/humane-test-output "0.10.0"]
[prone "2020-01-17"]
[re-frisk "1.3.12"]
[ring/ring-devel "1.9.1"]
[ring/ring-mock "0.4.0"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.24.1"]
[jonase/eastwood "0.3.5"]]
:source-paths ["env/dev/clj" "env/dev/cljs" "test/cljs" ]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user
:timeout 120000}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn" ]
:resource-paths ["env/test/resources"]
}
:profiles/dev {}
:profiles/test {}})