-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
31 lines (22 loc) · 1 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
(defproject hetry "0.1.0-SNAPSHOT"
:description ""
:url ""
:dependencies [[org.clojure/core.match "0.3.0-alpha5"]
[com.bhauman/figwheel-main "0.1.9"]
[com.bhauman/rebel-readline-cljs "0.1.4"]
;; [reagent "0.7.0"]
[re-frame "0.10.5"]
[cljs-ajax "0.7.4"]
[day8.re-frame/http-fx "0.1.6"]
[day8.re-frame/async-flow-fx "0.0.11"]
[garden "1.3.6"]
[org.clojure/core.incubator "0.1.4"]]
:plugins [[lein-nomis-ns-graph "0.14.1"]]
:main main
:source-paths ["src"]
:resource-paths ["resources" "target"]
:clean-targets ^{:protect false} ["target/public"]
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.1.5"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]}}
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]
"fig:build" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]})