Skip to content

Instantly share code, notes, and snippets.

@StevenXL
Created March 17, 2016 02:48
Show Gist options
  • Select an option

  • Save StevenXL/e6d4408d9e87b405e520 to your computer and use it in GitHub Desktop.

Select an option

Save StevenXL/e6d4408d9e87b405e520 to your computer and use it in GitHub Desktop.
A package.json example.
{
"name": "nodejs-and-express-app",
"version": "1.0.0",
"description": "Following along with the Building Web Applications with Node.js and Express 4.0 tutorial from PluralSight.",
"main": "app.js",
"scripts": {
"start": "webpack --progress --colors --watch -d",
"build": "webpack --progress --colors -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Steven Leiva",
"license": "ISC",
"dependencies": {
"express": "^4.13.4"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.12.14"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment