-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
25 lines (21 loc) · 919 Bytes
/
build.sbt
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
enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.carpetscheme"
ThisBuild / organizationName := "carpetscheme"
lazy val root = (project in file("."))
.settings(
name := "heptathlon",
resolvers += "jitpack" at "https://jitpack.io",
libraryDependencies ++= Seq(
"com.raquo" %%% "laminar" % "0.14.2",
"com.raquo" %%% "domtypes" % "0.15.1",
"be.doeraene" %%% "url-dsl" % "0.4.0",
"com.github.fdietze.scala-js-d3v4" %%% "scala-js-d3v4" % "38364d6",
"org.scalameta" %%% "munit" % "0.7.29" % Test
)
)
Compile / npmDependencies ++= Seq(
"d3" -> "5.9.2" // https://github.com/d3/d3/releases
)
scalaJSUseMainModuleInitializer := true