-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 792 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject chrome-clojurescript-repl "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.520"]
[tailrecursion/cljson "1.0.7"]
[alandipert/storage-atom "1.2.4"]
[javax.xml.bind/jaxb-api "2.2.11"]
[com.sun.xml.bind/jaxb-core "2.2.11"]
[com.sun.xml.bind/jaxb-impl "2.2.11"]
[javax.activation/activation "1.1.1"]
]
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:node-dependencies [[source-map-support "0.3.2"]]
:plugins [[lein-npm "0.5.0"]]
:source-paths ["src" "target/classes"]
:clean-targets ["out" "release"]
:target-path "target")