-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (16 loc) · 918 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject chess "0.8.0"
:description "Chess engine and UI in Reagent"
:url "https://github.com/sunflowerseastar/chess"
:license {:name "GNU Affero General Public License v3"
:url "http://www.gnu.org/licenses/agpl-3.0.html"}
:min-lein-version "2.7.1"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]
[reagent "0.8.1"]]
:source-paths ["src"]
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]
"fig:build" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]
"fig:test" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" chess.test-runner]}
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.1.9"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]}})