Files
basic-computer-games/04_Awari/elm/package.json
2022-03-15 13:35:24 +01:00

16 lines
509 B
JSON

{
"name": "04_Awari",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"live": "elm-live src/Main.elm --proxy-prefix=/api --proxy-host=http://localhost:8080/api --open --start-page=resources/index.html -- --output=app.js --debug",
"build": "elm make src/Main.elm --optimize --output docs/app.js && cp -R resources/ docs/",
"optimize": "yarn build && ./optimize.sh src/Main.elm"
},
"devDependencies": {
"elm-live": "^4.0.2",
"uglify-js": "^3.15.3"
}
}