Created
December 2, 2015 20:53
-
-
Save eric-miller2129/accf5632a83c622b02b4 to your computer and use it in GitHub Desktop.
Package.json for a simple react app
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": "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