forked from ingesolvoll/kee-frame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (29 loc) · 1.39 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
(defproject kee-frame "0.3.4-SNAPSHOT"
:description "A micro-framework on top of re-frame"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/ingesolvoll/kee-frame"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"]
[re-frame "0.10.6"]
[re-chain "1.0"]
[metosin/reitit-core "0.2.13"]
[day8.re-frame/http-fx "0.1.6"]
[cljs-ajax "0.8.0"]
[org.clojure/core.async "0.3.442"]
[jarohen/chord "0.8.1"]
[venantius/accountant "0.2.4"]
[org.clojure/core.match "0.3.0-alpha5"]
[expound "0.7.2"]
[day8.re-frame/test "0.1.5"]
[breaking-point "0.1.2"]
[pez/clerk "1.0.0"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.20.0"]
[venantius/ultra "0.5.2"]]
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password}]]
:source-paths ["src" "assets"]
:aliases {"deploy!" ["do" ["test"] ["deploy" "clojars"]]})