-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
28 lines (28 loc) · 1.56 KB
/
project.clj
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
(defproject com.wotbrew/relic "0.1.7"
:description "Functional relational programming for Clojure/Script"
:url "https://github.com/wotbrew/relic"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.10.0"]]
:repl-options {:init-ns com.wotbrew.relic}
:profiles {:dev {:source-paths ["dev"]
:dependencies [[com.clojure-goes-fast/clj-async-profiler "0.5.1"]
[criterium "0.4.6"]
[org.clojure/data.csv "1.0.0"]
[thheller/shadow-cljs "2.15.13"]
[datascript "1.2.10"]
[reagent "1.1.0"]
[io.airlift.tpch/tpch "0.10"]
[org.clojure/test.check "1.1.0"]
[ring "1.9.4"]
[ring-middleware-format "0.7.4"]
[ring-cors "0.1.13"]
[compojure "1.6.2"]]
:repl-options {:nrepl-middleware [shadow.cljs.devtools.server.nrepl/middleware]}
:injections [(try
(println "Loading dev.clj")
(println "...")
(require 'dev)
(catch Throwable e
(println "An error occurred loading dev")
(.printStackTrace e)))]}})