xesite/frontend/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

2016-12-14 07:11:20 +00:00
{
2016-12-18 16:50:42 +00:00
"name": "christine-website",
"version": "0.1.0",
2016-12-14 07:11:20 +00:00
"description": "Starter Pux application using webpack with hot-reloading.",
"main": "support/index.js",
"keywords": [
"pux",
"purescript-pux",
"boilerplate",
"starter-app"
],
"scripts": {
"postinstall": "bower cache clean && bower install",
"clean": "rimraf static/dist && rimraf dist && rimraf output",
2016-12-18 16:50:42 +00:00
"build": "webpack --config ./webpack.production.config.js --progress --profile --colors",
2016-12-14 07:11:20 +00:00
"watch": "npm run clean && node ./webpack.config.js",
"serve": "http-server static --cors -p 3000",
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/pux-starter-app.git"
},
"author": "Alexander C. Mingoia",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/alexmingoia/pux-starter-app/issues"
},
"dependencies": {
"bower": "^1.7.9",
"connect-history-api-fallback": "^1.2.0",
"express": "^4.13.4",
2016-12-18 05:14:25 +00:00
"favicons-webpack-plugin": "0.0.7",
2016-12-14 07:11:20 +00:00
"html-webpack-plugin": "^2.15.0",
"http-server": "^0.9.0",
"purescript": "^0.10.1",
"purescript-psa": "^0.3.9",
"purs-loader": "^2.0.0",
"react": "^15.0.0",
2016-12-17 14:15:29 +00:00
"react-document-title": "^2.0.2",
2016-12-14 07:11:20 +00:00
"react-dom": "^15.0.0",
"rimraf": "^2.5.2",
2016-12-18 05:14:25 +00:00
"webpack": "^2.1.0-beta.25",
"webpack-uglify-js-plugin": "^1.1.9"
2016-12-14 07:11:20 +00:00
},
"devDependencies": {
"source-map-loader": "^0.1.5",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
}
}