mirror of
https://github.com/ryannhg/elm-spa.git
synced 2024-11-25 23:43:02 +03:00
24 lines
852 B
JSON
24 lines
852 B
JSON
{
|
|
"name": "elm-spa-elm-ui",
|
|
"version": "1.0.0",
|
|
"description": "elm-live running in the browser!",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "npm run dev",
|
|
"dev": "npm run elm:spa:build && npm run elm:spa:watch & npm run elm:live",
|
|
"build": "npm run elm:spa:build && npm run elm:compile",
|
|
"elm:compile": "elm make example/Main.elm --output=dist/elm.compiled.js --optimize",
|
|
"elm:live": "elm-live example/Main.elm --start-page=index.html --pushstate --port=8080 -- --output=dist/elm.compiled.js --debug",
|
|
"elm:spa:build": "echo '🌳 elm-spa build .'",
|
|
"elm:spa:watch": "SHELL=/bin/bash chokidar './example' -c 'npm run elm:spa:build'"
|
|
},
|
|
"dependencies": {
|
|
"chokidar-cli": "2.1.0",
|
|
"elm": "0.19.1-3",
|
|
"elm-live": "4.0.1",
|
|
"elm-spa": "1.1.0"
|
|
},
|
|
"devDependencies": {},
|
|
"keywords": []
|
|
}
|