Files
basic-computer-games/00_Alternate_Languages/04_Awari/elm/package.json
2022-03-16 09:58:40 +01:00

14 lines
421 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/"
},
"devDependencies": {
"elm-live": "^4.0.2"
}
}