forked from bhauman/figwheel-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
35 lines (34 loc) · 1.52 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
(defproject com.bhauman/figwheel-main "0.2.0-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.339" :exclusions [commons-codec]]
[com.bhauman/figwheel-repl "0.2.0-SNAPSHOT"]
[com.bhauman/figwheel-core "0.2.0-SNAPSHOT"]
[com.bhauman/spell-spec "0.1.1"]
[com.bhauman/cljs-test-display "0.1.1"]
[ring "1.7.0"]
[org.eclipse.jetty.websocket/websocket-servlet "9.2.24.v20180105"]
[org.eclipse.jetty.websocket/websocket-server "9.2.24.v20180105"]
[binaryage/devtools "0.9.10"]
[hawk "0.2.11"]
[expound "0.7.1"]
[com.datomic/client-cloud "0.8.63"
:exclusions [org.eclipse.jetty/jetty-io
org.eclipse.jetty/jetty-util
org.eclipse.jetty/jetty-http
com.cognitect/transit-java
com.cognitect/transit-clj
commons-logging
com.fasterxml.jackson.core/jackson-core]]
]
: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]}}})