summaryrefslogtreecommitdiff
path: root/examples/demos/build.sbt
blob: aa801b04d80b4d30e0d2234808f90f4948b750af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import scala.scalajs.sbtplugin.ScalaJSPlugin.ScalaJSKeys._

(emitSourceMaps in fullOptJS) := false

scalaJSSettings

name := "Example"

version := "0.1-SNAPSHOT"

scalaVersion := "2.11.4"

libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.1.2" % "provided"

libraryDependencies += "com.lihaoyi" %%% "upickle" % "0.2.5"

libraryDependencies += "org.scala-lang.modules.scalajs" %%% "scalajs-dom" % "0.6"

libraryDependencies += "com.scalatags" %%% "scalatags" % "0.4.2"

libraryDependencies += "com.scalarx" %%% "scalarx" % "0.2.6"

libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.2"