forked from bhauman/figwheel-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (26 loc) · 1.21 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
(defproject com.bhauman/figwheel-main "0.2.13-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.9.0"]
[org.clojure/clojurescript "1.10.773" :exclusions [commons-codec]]
[com.bhauman/figwheel-repl "0.2.13-SNAPSHOT"]
[com.bhauman/figwheel-core "0.2.13-SNAPSHOT"]
[com.bhauman/spell-spec "0.1.1"]
[com.bhauman/cljs-test-display "0.1.1"]
[com.bhauman/certifiable "0.0.7"]
[ring "1.8.1"]
[org.eclipse.jetty.websocket/websocket-servlet "9.4.28.v20200408"]
[org.eclipse.jetty.websocket/websocket-server "9.4.28.v20200408"]
[binaryage/devtools "0.9.10"]
[hawk "0.2.11"]
[expound "0.7.1"]]
:resource-paths ["helper-resources"]
:profiles {:dev {:dependencies [[cider/piggieback "0.3.9"]
#_[com.bhauman/rebel-readline-cljs "0.1.4"]]
:source-paths ["src" "devel" "dev"]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}})