-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
56 lines (55 loc) · 2.83 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
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
(defproject lucid "0.1.0-SNAPSHOT"
:description "A flexible MUD framework written in Clojure"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.9.946"]
[org.flatland/useful "0.11.5"]
[me.raynes/fs "1.4.6"]
[clj-time "0.14.2"]
[automat "0.2.4"]
[reduce-fsm "0.1.4"]
[com.datomic/datomic-pro "0.9.5656" :exclusions [com.google.guava/guava]]
[org.clojure/core.async "0.3.465"]
[org.clojure/data.codec "0.1.0"]
[buddy/buddy-hashers "1.0.0"]
[aleph "0.4.4"]
[com.taoensso/timbre "4.10.0"]
[manifold "0.1.6"]
[danlentz/clj-uuid "0.1.6"]
[javax.servlet/servlet-api "2.5"]
[ring/ring-core "1.6.3"]
[ring/ring-defaults "0.3.1"]
[compojure "1.6.0"]
[jarohen/chord "0.8.1"]
[reagent "0.8.0-alpha2"]]
:main ^:skip-aot lucid.core
:source-paths ["src/clj"]
:target-path "target/%s"
:repl-options {:init (do
(use 'clojure.repl)
(require '[alembic.still])
(def $$$distill alembic.still/distill))}
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[alembic "0.3.2"]
[figwheel-sidecar "0.5.14"]
[com.cemerick/piggieback "0.2.2"]
[org.clojure/tools.nrepl "0.2.12"]]
:source-paths ["src/clj" "dev"]
:repl-options {:init-ns user
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}
:repl {:dependencies [[acyclic/squiggly-clojure "0.1.8"]]
:env {:squiggly {:checkers [:eastwood :kibit]
:eastwood-options {:add-linters [:unused-locals
:unused-fn-args
:unused-private-vars
:keyword-typos]}}}}}
:plugins [[lein-environ "1.0.0"]
[lein-figwheel "0.5.14"]]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {:main "lucid.client.core"
:output-dir "resources/public/js/compiled"
:output-to "resources/public/js/compiled/main.js"
:asset-path "js/compiled"
:optimizations :none
:source-map true}
:figwheel true}]})