-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
55 lines (41 loc) · 984 Bytes
/
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
(defproject jtk-dvlp/re-frame-tasks "2.0.1"
:description
"A re-frame interceptor and helpers to register / unregister (background-)tasks"
:url
"https://github.com/jtkDvlp/re-frame-tasks"
:license
{:name
"MIT"
:url
"https://github.com/jtkDvlp/budgetbook/blob/master/LICENSE"}
:source-paths
["src"]
:target-path
"target"
:clean-targets
^{:protect false}
[:target-path]
:dependencies
[[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.773"]
[jtk-dvlp/core.async-helpers "3.2.0"]
[re-frame "1.1.2"]]
:profiles
{:dev
{:dependencies
[[com.bhauman/figwheel-main "0.2.7"]
[org.clojure/core.async "1.3.610"]
[net.clojars.jtkdvlp/re-frame-async-coeffects "2.0.0"]]
:source-paths
["dev"]}
:repl
{:dependencies
[[cider/piggieback "0.5.0"]]
:repl-options
{:nrepl-middleware
[cider.piggieback/wrap-cljs-repl]
:init-ns
user
:init
(fig-init)}}}
,,,)