-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 744 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject cljs-react-navigation "0.1.3"
:description "CLJS Wrappers for react-navigation"
:url "https://github.com/seantempesta/cljs-react-navigation"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.9.946"]
[reagent "0.7.0" :exclusions [cljsjs/react
cljsjs/react-dom
cljsjs/react-dom-server
cljsjs/create-react-class]]
[re-frame "0.10.4"]]
:plugins [[lein-codox "0.10.3"]]
:codox {:language :clojurescript}
:source-paths ["src"])