This repository was archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
57 lines (49 loc) · 2.75 KB
/
project.clj
File metadata and controls
57 lines (49 loc) · 2.75 KB
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
(defproject mailman.core "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.7.1"
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/core.async "1.6.681"]
[io.forward/clojure-mail "1.0.8"]
[com.github.seancorfield/next.jdbc "1.3.883"]
[com.github.seancorfield/honeysql "2.4.1045"]
[org.xerial/sqlite-jdbc "3.42.0.0"]
[org.clojure/data.csv "1.0.1"]
;; Java interop with ns com.google.common.net.InternetDomainName to extract domain information
[com.google.guava/guava "32.1.2-jre"]
;; Helpful functions not available in base clojure
[dev.weavejester/medley "1.7.0"]
;; Webserver
[org.babashka/http-client "0.4.15"]
[javax.servlet/servlet-api "2.5"]
[http-kit "2.7.0"]
[ring "1.10.0"]
[metosin/reitit "0.7.0-alpha5"]
[metosin/muuntaja "0.6.8"]
[cheshire "5.11.0"]
;; GraphQL
[com.walmartlabs/lacinia "1.2.1"]
]
:source-paths ["src" "target"]
;; :aliases {
;; "fig:build2" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev"]
;; "fig:build" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
;; "fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]
;; "fig:test" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" "mailman.test-runner"]
;; "run:dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
;; "run:npm" ["trampoline" "run" "-m" "figwheel.main" "-b" "npm" "-r"]}
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.18"]
[org.slf4j/slf4j-nop "2.0.7"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
:clean-targets ^{:protect false} [:target-path "resources/public/cljs-out" "target" "resources/public/js" ".shadow-cljs" ]}
:npm {:dependencies
[[com.bhauman/figwheel-main "0.2.18"]
[org.slf4j/slf4j-nop "2.0.7"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
:clean-targets ^{:protect false} [:target-path "resources/public/cljs-out" "target" "resources/public/js" ".shadow-cljs" ]}
})
;; check clean targets meaning and compare both:
;; https://github.com/bhauman/figwheel-main-template
;; https://github.com/arttuka/reagent-material-ui/tree/master/example