-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathproject.clj
25 lines (25 loc) · 1.14 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
(defproject com.bhauman/figwheel-main "0.2.21-SNAPSHOT"
:description "Figwheel Main - Clojurescript tooling."
:url "https://github.com/bhauman/figwheel-main"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/bhauman/figwheel-main"}
:dependencies
[[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.773" :exclusions [commons-codec]]
[org.clojure/data.json "2.4.0"]
[com.bhauman/figwheel-core "0.2.21-SNAPSHOT"]
[com.bhauman/figwheel-repl "0.2.21-SNAPSHOT"]
[ring/ring "1.13.0"]
[com.nextjournal/beholder "1.0.2"]
[binaryage/devtools "1.0.7"]
[expound/expound "0.9.0"]
[com.bhauman/spell-spec "0.1.2"]
[com.bhauman/cljs-test-display "0.1.1"]
[com.bhauman/certifiable "0.0.7"]]
:resource-paths ["helper-resources"]
:profiles {:dev {:dependencies [[cider/piggieback "0.6.0"]
#_[com.bhauman/rebel-readline-cljs "0.1.4"]]
:source-paths ["src" "devel" "dev"]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}})