-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
20 lines (20 loc) · 1021 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"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.test.conf -Dsbt.ivy.home='.ivy2' -Dsbt.global.base='.sbt' -Dsbt.repository.config='.sbt/repositories' -mem 1536 compile \"~ run\" shell",
"start-no-docker": "npm run grunt-concat && grunt watch & sbt -Dhttp.port=$SIDEWALK_HTTP_PORT -Dsbt.ivy.home='.ivy2' -Dsbt.global.base='.sbt' -Dsbt.repository.config='.sbt/repositories' $SBT_MEM_ARG compile \"~ run\" shell",
"test": "grunt && grunt test"
}
}