-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
70 lines (59 loc) · 2.28 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{:paths ["src" "test"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.cli {:mvn/version "1.0.219"}
org.clojure/tools.namespace {:mvn/version "1.4.4"}
io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "OLD-SHA"}}
:aliases
{:test
{:extra-deps {org.clojure/tools.namespace {:mvn/version "1.5.0"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "9d36f36ff541dac680a05010e4348c744333f191"}}
:main-opts ["-m" "cognitect.test-runner"]}
;; Static analysis and linting
:clj-kondo
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "RELEASE"}}
:main-opts ["-m" "clj-kondo.main"]}
;; Dependency graph visualization
:graph
{:extra-deps {org.clojure/tools.deps.graph {:mvn/version "1.1.84"}}
:main-opts ["-m" "clojure.tools.deps.graph"]}
;; REPL with enhanced capabilities
:repl
{:extra-deps {nrepl/nrepl {:mvn/version "1.0.0"}
cider/cider-nrepl {:mvn/version "0.44.0"}}}
;; Code formatting
:cljfmt
{:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.2"}}
:main-opts ["-m" "cljfmt.main"]}
;; Dependency version checking
:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
;; Hot code reloading
:hot-load
{:extra-deps {org.clojure/tools.namespace {:mvn/version "1.4.4"}}}
;; Project scaffolding
:new
{:extra-deps {com.github.seancorfield/clj-new {:mvn/version "1.2.404"}}
:main-opts ["-m" "clj-new.create"]}
;; Build tool
:build
{:deps {io.github.clojure/tools.build {:git/tag "v0.9.6" :git/sha "8e78bcc"}}
:ns-default build}
;; Socket REPL
:socket
{:jvm-opts ["-Dclojure.server.repl={:port,5555,:accept,clojure.core.server/repl}"]}
;; Portal data visualization
:portal
{:extra-deps {djblue/portal {:mvn/version "0.51.1"}}}
;; Test runner
:test-runner
{:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:git/sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-m" "cognitect.test-runner"]}
}}