Created
March 2, 2015 22:09
-
-
Save burabure/90d3223eaa174a264eed to your computer and use it in GitHub Desktop.
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
{ | |
"main": "src/app.jsx", | |
"dependencies": { | |
"flux": "^2.0.1", | |
"keymirror": "~0.1.0", | |
"object-assign": "^1.0.0", | |
"underscore": "^1.8.2", | |
"immutable": "^3.6.2", | |
"react": "^0.12.0" | |
}, | |
"devDependencies": { | |
"browserify": "^6.2.0", | |
"envify": "^3.0.0", | |
"jest-cli": "~0.1.17", | |
"reactify": "^0.15.2", | |
"uglify-js": "~2.4.15", | |
"watchify": "^2.1.1", | |
"babelify": "^5.0.3" | |
}, | |
"scripts": { | |
"start": "watchify -o js/bundle.js -v -d .", | |
"build": "NODE_ENV=production browserify . | uglifyjs -cm > js/bundle.min.js", | |
"test": "jest" | |
}, | |
"author": "BuraBure", | |
"browserify": { | |
"transform": [ | |
"babelify", | |
"reactify", | |
"envify" | |
] | |
}, | |
"jest": { | |
"rootDir": "./src" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment