-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
58 lines (43 loc) · 1.02 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
(defproject net.clojars.jtkdvlp/re-frame-async-coeffects "2.0.0"
:description
"A re-frame interceptors to use async actions as coeffect for events"
:url
"https://github.com/jtkDvlp/re-frame-async-coeffects"
:license
{:name
"EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url
"https://www.eclipse.org/legal/epl-2.0/"}
:source-paths
["src"]
:target-path
"target"
:clean-targets
^{:protect false}
[:target-path]
:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.773"]
[re-frame "1.1.2"]
[org.clojure/core.async "1.3.610"]
[jtk-dvlp/core.async-helpers "3.0.0"]]}
:dev
{:dependencies
[[com.bhauman/figwheel-main "0.2.13"]
[day8.re-frame/http-fx "0.2.3"]]
:source-paths
["dev"]}
:repl
{:dependencies
[[cider/piggieback "0.5.2"]]
:repl-options
{:nrepl-middleware
[cider.piggieback/wrap-cljs-repl]
:init-ns
user
:init
(fig-init)
}}}
,,,)