Last active
June 6, 2017 11:50
This is a JSON code snippet that we used for our blog post https://rubygarage.org/blog/vuejs-vs-react-battle at RubyGarage. This a package.json file with all dependencies created with the Create React App CLI.
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": "sample-react-app", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"react": "^15.5.4", | |
"react-dom": "^15.5.4" | |
}, | |
"devDependencies": { | |
"react-scripts": "1.0.6" | |
}, | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
"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