-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
74 lines (66 loc) · 2.2 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 boodle "1.0.0"
:description "boodle: a simple accounting SPA"
:url "http://github.com/manuel-uberti/boodle"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies
[;; Clojure
[cheshire "5.8.0"]
[clojure.java-time "0.3.1"]
[com.taoensso/encore "2.92.0"]
[com.taoensso/timbre "4.10.0" :exclusions [com.taoennso/encore]]
[dire "0.5.4"]
[hiccup "1.0.5"]
[hikari-cp "1.8.3"]
[http-kit "2.2.0"]
[metosin/compojure-api "1.1.11"]
[metosin/ring-http-response "0.9.0"]
[mount "0.1.11"]
[org.clojure/clojure "1.9.0-alpha17"]
[org.clojure/java.jdbc "0.7.3"]
[org.clojure/test.check "0.9.0"]
[org.clojure/tools.reader "1.1.1"]
[org.postgresql/postgresql "42.1.4"]
[prone "1.1.4"]
[ring "1.6.3"]
[ring/ring-defaults "0.3.1"]
[ring/ring-json "0.4.0"]
[ring/ring-mock "0.3.2"]
[ring-middleware-format "0.7.2"]
;; ClojureScript
[bidi "2.1.2"]
[cljs-ajax "0.7.3"]
[day8.re-frame/http-fx "0.1.4"]
[kibu/pushy "0.3.8"]
[org.clojure/clojurescript "1.9.946"]
[re-frame "0.10.2"]
[reagent "0.7.0"]
[reagent-utils "0.2.1"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-eftest "0.4.1"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:figwheel {:css-dirs ["resources/public/css"]}
:source-paths ["src/clj"]
:test-paths ["test/clj" "test/cljs"]
:resource-paths ["resources"]
:target-path "target/%s"
:clean-targets ^{:protect false} [:target-path "resources/public/js"]
:main ^:skip-aot boodle.core
:profiles
{:dev
{:dependencies [[binaryage/devtools "0.9.7"]
[com.cemerick/piggieback "0.2.2"]
[figwheel-sidecar "0.5.14"]]
:plugins [[lein-figwheel "0.5.14"]]}}
:cljsbuild
{:builds
{:dev
{:source-paths ["src/cljs"]
:figwheel true
:compiler {:main boodle.core
:asset-path "js/out"
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out"
:preloads [devtools.preload]
:external-config {:devtools/config
{:features-to-install :all}}}}}})