Created
March 17, 2016 02:48
-
-
Save StevenXL/e6d4408d9e87b405e520 to your computer and use it in GitHub Desktop.
A package.json example.
This file contains hidden or 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
| { | |
| "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