-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
30 lines (29 loc) · 1.78 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
(defproject peanuts "0.7.2"
:description "Packing peanuts for decoupling Reagent Form-1 components from Re-frame subscriptions"
:url "https://github.com/sansarip/peanuts"
:signing {:gpg-key "[email protected]"}
:test-paths ["test/cljc"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"]
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/test.check "1.0.0"]]
:repl-options {:init-ns peanuts.core}
:source-paths []
:resource-paths ["resources/clj-kondo"]
:aliases {"fig:prod" ["with-profile" "devcards" "run" "-m" "figwheel.main" "-bo" "prod"]
"fig:dev" ["with-profile" "devcards" "trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"deploy:clojars" ["with-profile" "peanuts" "deploy" "clojars"]
"test" ["with-profile" "peanuts,test-deps" "test"]}
:profiles {:peanuts {:source-paths ["src/cljc" "src/cljs"]}
:test-deps {:source-paths ["test/deps"]}
:devcards {:source-paths ["devcards/src/cljs" "devcards/src/cljc"]
:dependencies [[com.bhauman/figwheel-main "0.2.13"]
[org.clojure/tools.namespace "1.1.0"]
[org.clojure/clojurescript "1.10.866"]
[re-frame "1.2.0"]
[reagent "0.8.1"]
[re-catch "0.1.4"]
[devcards "0.2.6"]
[cljstache "2.0.6"]
[net.dhleong/spade "1.0.4"]]}})