-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
161 lines (143 loc) · 6.35 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
(defproject pb "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[buddy "2.0.0"]
[ch.qos.logback/logback-classic "1.2.3"]
[clj-time "0.14.3"]
[cljs-ajax "0.8.0"]
[cljsjs/moment "2.22.0-0"]
[cljsjs/showdown "1.4.2-0"]
[com.walmartlabs/lacinia "0.25.0"]
[compojure "1.6.0"]
[conman "0.7.8"]
[cprop "0.1.11"]
[day8.re-frame/http-fx "0.1.6"]
[funcool/struct "1.2.0"]
[luminus-http-kit "0.1.5"]
[luminus-migrations "0.5.0"]
[luminus-nrepl "0.1.4"]
[luminus/ring-ttl-session "0.3.2"]
[markdown-clj "1.0.2"]
[metosin/compojure-api "1.1.12"]
[metosin/muuntaja "0.5.0"]
[metosin/ring-http-response "0.9.0"]
[mount "0.1.12"]
[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.439" :scope "provided"]
[org.clojure/tools.cli "0.3.6"]
[org.clojure/tools.logging "0.4.0"]
[org.postgresql/postgresql "42.2.2"]
[org.webjars.bower/tether "1.4.3"]
[org.webjars/bootstrap "4.0.0-2"]
[org.webjars/font-awesome "5.0.9"]
[re-com "2.1.0"]
[re-frame "0.10.5"]
[re-frisk "0.5.3"]
[reagent "0.7.0"]
[ring/ring-json "0.4.0"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.6.3"]
[ring/ring-defaults "0.3.1"]
[clj-commons/secretary "1.2.4"]
[selmer "1.11.7"]
[twilio-api "1.0.1"]
[cljs-http "0.1.45"]
[org.clojure/core.async "0.4.474"]
[metosin/jsonista "0.2.2"]
[funcool/cuerdas "2.0.5"]]
:min-lein-version "2.0.0"
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj"]
:resource-paths ["resources" "target/cljsbuild"]
:target-path "target/%s/"
:main ^:skip-aot pb.core
:plugins [[lein-cljsbuild "1.1.5"]
[lein-sassc "0.10.4"]
[lein-auto "0.1.2"]]
:sassc
[{:src "resources/scss/screen.scss"
:output-to "resources/public/css/screen.css"
:style "nested"
:import-path "resources/scss"}]
:auto
{"sassc" {:file-pattern #"\.(scss|sass)$" :paths ["resources/scss"]}}
;; :hooks [leiningen.sassc]
:clean-targets ^{:protect false}
[:target-path [:cljsbuild :builds :app :compiler :output-dir] [:cljsbuild :builds :app :compiler :output-to]]
:figwheel
{:http-server-root "public"
:nrepl-port 7002
:css-dirs ["resources/public/css"]
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:profiles
{:uberjar {:omit-source true
:prep-tasks ["compile" ["cljsbuild" "once" "min"]]
:cljsbuild
{:builds
{:min
{:source-paths ["src/cljc" "src/cljs" "env/prod/cljs"]
:compiler
{:output-dir "target/cljsbuild/public/js"
:output-to "target/cljsbuild/public/js/app.js"
:source-map "target/cljsbuild/public/js/app.js.map"
:optimizations :advanced
:pretty-print false
:closure-defines {goog.DEBUG false}
:closure-warnings
{:externs-validation :off :non-standard-jsdoc :off}
:externs ["react/externs/react.js"]}}}}
:aot :all
:uberjar-name "pb.jar"
:source-paths ["env/prod/clj"]
: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 "0.9.10"]
[com.cemerick/piggieback "0.2.2"]
[day8.re-frame/re-frame-10x "0.3.2"]
[doo "0.1.10"]
[figwheel-sidecar "0.5.17"]
[pjstadig/humane-test-output "0.8.3"]
[prone "1.5.1"]
[ring/ring-devel "1.6.3"]
[ring/ring-mock "0.3.2"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.19.0"]
[lein-doo "0.1.10"]
[lein-figwheel "0.5.17"]
[org.clojure/clojurescript "1.10.439"]]
:cljsbuild
{:builds
{:app
{:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"]
:figwheel {:on-jsload "pb.core/mount-root"}
:compiler
{:main "pb.app"
:asset-path "/js/out"
:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:source-map true
:optimizations :none
:pretty-print true
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true
goog.DEBUG true}
:preloads [day8.re-frame-10x.preload]}}}}
:doo {:build "test"}
:source-paths ["env/dev/clj"]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn"]
:resource-paths ["env/test/resources"]
:cljsbuild
{:builds
{:test
{:source-paths ["src/cljc" "src/cljs" "test/cljs"]
:compiler
{:output-to "target/test.js"
:main "pb.doo-runner"
:optimizations :whitespace
:pretty-print true}}}}}
:profiles/dev {}
:profiles/test {}})