-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.31 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"devDependencies": {
"eslint": "^7.26.0",
"grunt": "^1.4.0",
"grunt-concat-css": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-watch": "*",
"htmlhint": "^0.14.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"scripts": {
"grunt-concat": "grunt concat && grunt concat_css",
"build": "npm install && grunt",
"debug": "npm run grunt-concat && grunt watch & sbt -jvm-debug 9998 run",
"start": "npm run grunt-concat && grunt watch & sbt -Dconfig.file=/home/conf/application.local.conf -Dsbt.coursier.home='.coursier' -Dsbt.global.base='.sbt' -Dsbt.boot.directory='.sbt/boot' -Dsbt.repository.config='.sbt/repositories' -J-Xmx1536m \"~ run\"",
"start-no-docker": "npm run grunt-concat && grunt watch & sbt -Dhttp.port=$SIDEWALK_HTTP_PORT -Dsbt.coursier.home='.coursier' -Dsbt.global.base='.sbt' -Dsbt.boot.directory='.sbt/boot' -Dsbt.repository.config='.sbt/repositories' $SBT_MEM_ARG \"~ run\"",
"play-shell": "npm run grunt-concat && grunt watch & sbt -Dconfig.file=/home/conf/application.local.conf -Dsbt.coursier.home='.coursier' -Dsbt.global.base='.sbt' -Dsbt.boot.directory='.sbt/boot' -Dsbt.repository.config='.sbt/repositories' -J-Xmx1536m",
"test": "grunt && grunt test"
}
}