Skip to content

Instantly share code, notes, and snippets.

@dayhaysoos
Last active October 25, 2015 16:51
Show Gist options
  • Save dayhaysoos/03e9fac95060bce34eed to your computer and use it in GitHub Desktop.
Save dayhaysoos/03e9fac95060bce34eed to your computer and use it in GitHub Desktop.
package.json for React
{
"name": "whatever",
"version": "1.0.0",
"main": "main.js",
"private": true,
"scripts": {
"build": "gulp and browserify",
"start": ""
},
"keywords": [
"React"
],
"author": "Nick DeJesus",
"license": "ISC",
"devDependencies": {
"babelify": "^6.0.2",
"browser-sync": "^2.6.5",
"browserify": "^9.0.8",
"browserify-shim": "^3.8.6",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.2.1",
"gulp-concat": "^2.5.2",
"gulp-if": "^1.2.5",
"gulp-jshint": "^1.10.0",
"jshint-stylish": "^1.0.1",
"lodash": "^3.7.0",
"react-bootstrap": "^0.25.0",
"run-sequence": "^1.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"react": "React"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment