-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
37 lines (35 loc) · 1.4 KB
/
deps.edn
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
{:paths
["src"]
:deps
{org.clojure/clojure {:mvn/version "1.10.0-alpha4" :scope "provided"}
org.clojure/clojurescript {:mvn/version "1.10.238" :scope "provided"}
datascript {:mvn/version "0.16.5" :scope "provided"}
com.stuartsierra/dependency {:mvn/version "0.2.0"}
medley {:mvn/version "1.0.0"}}
:aliases
{:dev
{:extra-paths ["env/dev"]}
:test
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "0.10.0-alpha2"}
com.clojure-goes-fast/clj-memory-meter {:mvn/version "0.1.0"}
expound {:mvn/version "0.5.0"}}}
:cljs-repl
{:extra-deps {com.bhauman/rebel-readline-cljs {:mvn/version "0.1.1"}}}
;; Temp aliases
:fikes/watch-fn-fix
{:extra-deps
{org.clojure/clojurescript
{:git/url "https://github.com/mfikes/clojurescript"
:sha "9aeac990d10457cc4567c6d65efbcda94761f1f7"}}}
:uberjar
{:extra-deps
{pack/pack.alpha
{:git/url "https://github.com/juxt/pack.alpha.git"
:sha "bb2c5a2c78aca9328e023b029c06ba0efdd1e3b7"}}
:main-opts ["-m" "mach.pack.alpha.jcl"
"deps.edn"
"target/lajt-0.1.2-SNAPSHOT-standalone.jar"
"--application-id" "org.clojars.petterik/lajt"
"--application-version" "0.1.2-SNAPSHOT"
]}}}