Last active
April 26, 2017 11:44
-
-
Save albertorestifo/27489dbbd572b643e7af6949862159f1 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": "react-emails-example", | |
"version": "0.1.0", | |
"private": true, | |
+ "main": "./server/createEmail.js", | |
"devDependencies": { | |
+ "babel-cli": "^6.24.1", | |
+ "babel-preset-react-app": "^2.2.0", | |
"react-scripts": "0.9.5" | |
}, | |
"dependencies": { | |
"react": "^15.5.4", | |
"react-dom": "^15.5.4" | |
}, | |
"scripts": { | |
+ "install": "babel src --out-dir lib --presets=react-app", | |
- "build": "react-scripts build", | |
+ "build": "babel src --out-dir lib --presets=react-app", | |
"start": "react-scripts start", | |
"test": "react-scripts test --env=jsdom", | |
"eject": "react-scripts eject" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment