Files
react/examples/basic-commonjs/package.json
thorn0 58492362c5 Remove envify from the basic-commonjs example
`envify` is installed as a dependency of the `react` package. There is no need in installing it one more time
2015-06-01 01:09:46 +03:00

14 lines
332 B
JSON

{
"name": "react-basic-commonjs-example",
"description": "Basic example of using React with CommonJS",
"main": "index.js",
"devDependencies": {
"browserify": "^6.3.3",
"react": "^0.13.0",
"reactify": "^0.17.1"
},
"scripts": {
"build": "browserify --debug --transform reactify index.js > bundle.js"
}
}