-
Notifications
You must be signed in to change notification settings - Fork 10
/
project.clj
74 lines (59 loc) · 2.64 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
(defproject rente "1.1"
:description "A barebones Reagent+Sente app deployable to Heroku. Uses Figwheel (for development build) and Component (lifecycle management)."
:url "http://enterlab.com"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.8.3"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439"]
[org.clojure/core.async "0.4.490"]
[com.stuartsierra/component "0.4.0"]
[environ "1.1.0"]
[ch.qos.logback/logback-classic "1.2.3"]
[org.clojure/tools.logging "0.4.1"]
[ring/ring-core "1.7.1"]
[ring/ring-defaults "0.3.2"]
[compojure "1.6.1"]
[http-kit "2.4.0-alpha2"]
[com.taoensso/sente "1.13.1"]
[com.cognitect/transit-clj "0.8.313"]
[com.cognitect/transit-cljs "0.8.256"]
[reagent "0.8.1"]
[org.webjars/bootstrap "4.2.1"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:source-paths ["src"]
:resource-paths ["resources" "resources-index/prod"]
:target-path "target/%s"
:main ^:skip-aot rente.run
:cljsbuild
{:builds
{:client {:source-paths ["src/rente/client"]
:compiler
{:output-to "resources/public/js/app.js"
:output-dir "dev-resources/public/js/out"}}}}
:profiles {:dev-config {}
:dev [:dev-config
{:dependencies [[org.clojure/tools.namespace "0.3.0-alpha4"]
[figwheel "0.5.18"]]
:plugins [[lein-figwheel "0.5.18"]]
:source-paths ["dev"]
:resource-paths ^:replace
["resources" "dev-resources" "resources-index/dev"]
:cljsbuild
{:builds
{:client {:source-paths ["dev"]
:compiler
{:optimizations :none
:source-map true}}}}
:figwheel {:http-server-root "public"
:server-port 3449
:repl false
:css-dirs ["resources/public/css"]}}]
:prod {:cljsbuild
{:builds
{:client {:compiler
{:optimizations :advanced
:pretty-print false}}}}}}
:aliases {"package"
["with-profile" "prod" "do"
"clean" ["cljsbuild" "once"]]})