Created
June 4, 2018 02:28
-
-
Save mostlyfine/8a6d3d39f54558a68178f43ad7d5a10c 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
{ | |
"name": "es2015", | |
"version": "1.0.0", | |
"description": "", | |
"main": "bundle.js", | |
"scripts": { | |
"build": "watchify -t babelify -o bundle.js main.js -v", | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", | |
"babel": { | |
"presets": [ | |
"es2015", | |
"react" | |
] | |
}, | |
"dependencies": { | |
"react": "^16.4.0", | |
"react-dom": "^16.4.0" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.26.3", | |
"babel-preset-es2015": "^6.24.1", | |
"babel-preset-react": "^6.24.1", | |
"babelify": "^8.0.0", | |
"watchify": "^3.11.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment