deps.edn 1.3 KB

123456789101112131415161718192021222324252627
  1. {:paths ["src"]
  2. :deps
  3. ;; These nbb-logseq deps are kept in sync with https://github.com/logseq/nbb-logseq/blob/main/bb.edn
  4. {com.andrewmcveigh/cljs-time {:git/url "https://github.com/logseq/cljs-time" ;; fork
  5. :sha "5704fbf48d3478eedcf24d458c8964b3c2fd59a9"}
  6. funcool/promesa {:mvn/version "11.0.678"}
  7. cljs-bean/cljs-bean {:mvn/version "1.5.0"}
  8. ;; Any other deps should be added here and to nbb.edn
  9. borkdude/rewrite-edn {:mvn/version "0.4.9"}
  10. logseq/db {:local/root "../db"}
  11. logseq/common {:local/root "../common"}
  12. ;; stubbed via logseq.common.log
  13. com.lambdaisland/glogi {:mvn/version "1.1.144"}}
  14. :aliases
  15. ;; This runs tests with nodejs. Would be nice to run this with in a browser env
  16. ;; since this is how its normally run in the app but this requires more setup
  17. ;; with karma, shadow-cljs.edn and headless mode on CI
  18. {:test {:extra-paths ["test"]
  19. :extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
  20. org.clojure/clojurescript {:mvn/version "1.11.132"}
  21. logseq/outliner {:local/root "../outliner"}}
  22. :main-opts ["-m" "cljs-test-runner.main"]}
  23. :clj-kondo {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
  24. :main-opts ["-m" "clj-kondo.main"]}}}