Last active
February 4, 2017 19:59
-
-
Save 15Dkatz/752c1b73f3d2821de96103671dc0be57 to your computer and use it in GitHub Desktop.
package.json for webpack-es6-boilerplate
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
{ | |
"name": "es6", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"build": "webpack", | |
"start": "webpack-dev-server" | |
}, | |
"babel": { | |
"presets": ["es2015"] | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-core": "^6.22.1", | |
"babel-loader": "^6.2.10", | |
"babel-polyfill": "^6.22.0", | |
"babel-preset-es2015": "^6.22.0", | |
"webpack": "^2.2.1", | |
"webpack-dev-server": "^2.3.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment