elm-pages-v3-beta/site/package.json

32 lines
898 B
JSON
Raw Normal View History

2019-07-23 18:50:51 +03:00
{
"name": "elm-pages-example",
2019-07-23 18:50:51 +03:00
"version": "1.0.0",
"description": "Example site built with elm-pages.",
2019-07-23 18:50:51 +03:00
"scripts": {
"watch": "elm-pages --watch",
"start": "concurrently \"npm:watch\" \"parcel src/index.html\"",
2019-07-24 05:51:01 +03:00
"start:prod": "npm run build && http-server ./dist -a localhost -p 3000 -c-1",
2019-07-23 19:26:55 +03:00
"build": "rm -r dist && parcel build src/index.html",
2019-07-23 18:50:51 +03:00
"test": "elm-test",
"autotest": "elm-test --watch"
},
"author": "Dillon Kearns",
"license": "BSD-3",
"dependencies": {
"glob": "^7.1.4"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.6.8",
"concurrently": "^4.1.1",
2019-07-23 18:50:51 +03:00
"elm": "^0.19.0-no-deps",
"elm-hot": "^1.0.1",
2019-08-02 20:30:27 +03:00
"elm-pages": "^1.0.3",
2019-07-23 18:50:51 +03:00
"elm-test": "^0.19.0-rev6",
"node-elm-compiler": "^5.0.3",
"parcel-bundler": "^1.12.3",
"parcel-plugin-prerender": "^1.4.1",
"typescript": "^3.5.3"
}
}