elm-pages/package.json

25 lines
764 B
JSON
Raw Normal View History

2019-07-22 18:11:26 +03:00
{
"name": "elm-markup-pages",
"version": "1.0.0",
"description": "Static site generator for elm-markup.",
"scripts": {
"start": "parcel src/index.html",
"build": "rm -r dist && parcel build src/index.html --public-url ./",
2019-07-23 07:05:31 +03:00
"generator:build": "parcel build generator/src/elm-markup-pages.ts --out-file bundle.js --target node --bundle-node-modules --no-source-maps",
2019-07-22 18:11:26 +03:00
"test": "elm-test",
"autotest": "elm-test --watch"
},
"author": "Dillon Kearns",
"license": "BSD-3",
"dependencies": {},
"devDependencies": {
2019-07-23 07:05:31 +03:00
"@types/node": "^12.6.8",
2019-07-22 18:11:26 +03:00
"elm": "^0.19.0-no-deps",
"elm-hot": "^1.0.1",
"elm-test": "^0.19.0-rev6",
"node-elm-compiler": "^5.0.3",
2019-07-23 07:05:31 +03:00
"parcel-bundler": "^1.12.3",
"typescript": "^3.5.3"
2019-07-22 18:11:26 +03:00
}
}