Skip to content

Instantly share code, notes, and snippets.

@eric-miller2129
Created December 2, 2015 20:53
Show Gist options
  • Save eric-miller2129/accf5632a83c622b02b4 to your computer and use it in GitHub Desktop.
Save eric-miller2129/accf5632a83c622b02b4 to your computer and use it in GitHub Desktop.
Package.json for a simple react app
{
"name": "agently",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "watchify game/core.js -o game.js -v",
"browserify": "browserify core.js | uglifyjs > game.js"
},
"author": "",
"license": "ISC",
"browserify": {
"transform": [
"reactify"
]
},
"dependencies": {
"browserify": "^12.0.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"reactify": "^1.1.1",
"watchify": "^3.6.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment