Skip to content

Instantly share code, notes, and snippets.

@yutin1987
Created July 10, 2016 03:59
Show Gist options
  • Save yutin1987/6b370ecc2daa3217c8728f7df35cef2c to your computer and use it in GitHub Desktop.
Save yutin1987/6b370ecc2daa3217c8728f7df35cef2c to your computer and use it in GitHub Desktop.
{
"name": "react-starter-es6-babel",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-0",
"react"
]
}
]
]
},
"scripts": {
"build": "NODE_ENV=production browserify main.js | uglifyjs -cm > public/bundle.js",
"start": "ecstatic -p 8000 public",
"watch": "watchify main.js -o public/bundle.js -dv"
},
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^10.2.6",
"ecstatic": "~0.8.0",
"react": "~0.13.3",
"uglify-js": "^2.4.24",
"watchify": "^3.2.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment