mirror of
https://github.com/facebook/react.git
synced 2026-02-24 12:43:00 +00:00
`envify` is installed as a dependency of the `react` package. There is no need in installing it one more time
14 lines
332 B
JSON
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"
|
|
}
|
|
}
|