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

scalaJSSettings

name := "Example"

version := "0.1-SNAPSHOT"

scalaVersion := "2.11.4"

libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.5.1"

jsDependencies += "org.webjars" % "react" % "0.11.1" / "react-with-addons.js" commonJSName "React"

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

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

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