forked from deg/re-frame-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (20 loc) · 929 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; Author: David Goldfarb ([email protected])
;;; Copyright (c) 2017, David Goldfarb
(defproject com.degel/re-frame-firebase "0.6.0-SNAPSHOT"
:description "A re-frame wrapper around firebase"
:url "https://github.com/deg/re-frame-firebase"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.9.946"]
[cljsjs/firebase "4.8.1-0"]
[re-frame "0.10.2"]
[reagent "0.7.0"]
[com.degel/iron "0.2.0"]]
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:cljsbuild {:builds {}} ; prevent https://github.com/emezeske/lein-cljsbuild/issues/413
:plugins [[lein-npm "0.6.2"]]
:npm {:dependencies [[source-map-support "0.4.0"]]}
:source-paths ["src" "target/classes"]
:clean-targets ["out" "release"]
:target-path "target")