Created
May 18, 2016 04:35
-
-
Save DavidDudson/4ad791bce3dc11a049311a013000f004 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"test": "karma start", | |
"clean": "rm -r dist/*", | |
"populate": "node ./src/database.js", | |
"mkPub": "mkdir -p dist/public", | |
"copy:index": "cp src/client/index.html dist/public/index.html", | |
"copy": "npm run copy:index && npm run copy:iframe", | |
"quicktest": "open ./dist/public/test.html", | |
"webpack": "webpack --config=\"src/webpack.conf.js\" --progress", | |
"deploy": "git push heroku master", | |
"start": "npm run production && node ./src/start.js", | |
"babel-node": "babel-node --stage 0 --ignore='node_modules|dist'", | |
"webpackDevServer": "webpack-dev-server --config src/webpack.conf.js --content-base dist/public --hot --inline", | |
"develop2": "(npm run clean || ! npm run clean) && npm run mkPub && npm run copy && npm run webpackDevServer & open http://localhost:8080" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment