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

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"