Files
react/examples/basic-commonjs/package.json
2015-09-24 15:08:28 -07:00

15 lines
347 B
JSON

{
"name": "react-basic-commonjs-example",
"description": "Basic example of using React with CommonJS",
"main": "index.js",
"dependencies": {
"babelify": "^6.3.0",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"watchify": "^3.4.0"
},
"scripts": {
"start": "watchify index.js -v -t babelify -o bundle.js"
}
}