in a play framework application each time I run "sbt test" it tries to load all node modules due to the fact that I have package.json in application root.
Here is my sbt file:
import play.PlayScala
scalaVersion := "2.11.1"
name := """Livrarium"""
version := "0.1"
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-slick" % "0.8.0",
"org.postgresql" % "postgresql" % "9.3-1102-jdbc4",
"com.mohiva" %% "play-silhouette" % "1.0",
"org.scaldi" %% "scaldi-play" % "0.4.1",
"com.sksamuel.scrimage" %% "scrimage-core" % "1.4.1",
"com.sksamuel.scrimage" %% "scrimage-canvas" % "1.4.1",
"org.bouncycastle" % "bcprov-jdk16" % "1.45",
"org.apache.pdfbox" % "pdfbox" % "1.8.6"
)
lazy val root = (project in file(".")).enablePlugins(PlayScala)
As you can see, there is no sbt-web.
Is there anything I can do to restrict sbt from loading node modules?