2023-08-20 23:39:43 +02:00
|
|
|
;; shadow-cljs configuration
|
|
|
|
(defproject liberty-hu "0.1.0-SNAPSHOT"
|
|
|
|
:description "FIXME: write description"
|
|
|
|
:url "http://example.com/FIXME"
|
|
|
|
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
:url "https://www.eclipse.org/legal/epl-2.0/"}
|
2023-08-25 12:58:43 +02:00
|
|
|
:dependencies [[org.clojure/clojure "1.11.1"]
|
2023-08-20 23:39:43 +02:00
|
|
|
[org.clojure/clojurescript "1.11.60"]
|
|
|
|
[thheller/shadow-cljs "2.25.2"]
|
2023-08-23 03:43:41 +02:00
|
|
|
[com.google.javascript/closure-compiler-unshaded "v20230802"]
|
2023-08-20 23:39:43 +02:00
|
|
|
[ring/ring-core "1.11.0-alpha1"]
|
2023-08-23 03:43:41 +02:00
|
|
|
[org.babashka/http-client "0.4.14"]
|
2023-08-25 14:25:55 +02:00
|
|
|
[http-kit "2.7.0"]
|
2023-08-23 03:43:41 +02:00
|
|
|
[org.jsoup/jsoup "1.16.1"]
|
2023-08-25 06:54:32 +02:00
|
|
|
[cheshire "5.11.0"]
|
2023-08-20 23:39:43 +02:00
|
|
|
|
|
|
|
[org.slf4j/slf4j-nop "2.0.7"]
|
|
|
|
[reagent/reagent "1.2.0"]
|
|
|
|
[metosin/reitit "0.7.0-alpha5"]
|
2023-08-25 05:11:48 +02:00
|
|
|
[superstructor/re-frame-fetch-fx "0.2.0"]
|
2023-08-24 15:48:56 +02:00
|
|
|
[binaryage/devtools "1.0.7"]
|
|
|
|
[re-frame/re-frame "1.3.0"]
|
|
|
|
[day8.re-frame/tracing "0.6.2"]
|
2023-08-25 06:54:32 +02:00
|
|
|
[day8.re-frame/re-frame-10x "1.6.0"]]
|
2023-08-20 23:39:43 +02:00
|
|
|
|
|
|
|
:source-paths ["src/main"]
|
|
|
|
:main ^:skip-aot backend.core
|
|
|
|
|
|
|
|
:profiles
|
|
|
|
{:uberjar {:dependencies ^:replace [[org.clojure/clojure "1.11.1"]
|
2023-08-25 14:25:55 +02:00
|
|
|
[http-kit "2.7.0"]
|
2023-08-25 06:54:32 +02:00
|
|
|
[metosin/reitit "0.7.0-alpha5"]
|
2023-08-23 03:43:41 +02:00
|
|
|
[org.slf4j/slf4j-nop "2.0.7"]
|
2023-08-25 06:54:32 +02:00
|
|
|
[org.babashka/http-client "0.4.14"]
|
|
|
|
[org.jsoup/jsoup "1.16.1"]
|
|
|
|
[cheshire "5.11.0"]]
|
2023-08-20 23:39:43 +02:00
|
|
|
|
2023-08-25 12:58:43 +02:00
|
|
|
:aot :all}})
|