summaryrefslogtreecommitdiff
path: root/examples/demos/build.sbt
blob: 0db3dec339d6622827204712e6675b556f1b1f66 (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 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"