mirror of
https://github.com/facebook/react.git
synced 2026-02-24 20:53:03 +00:00
17 lines
441 B
JSON
17 lines
441 B
JSON
{
|
|
"name": "react-basic-commonjs-example",
|
|
"description": "Basic example of using React with CommonJS",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"babelify": "^6.3.0",
|
|
"browserify": "^11.0.1",
|
|
"react": "^0.14.0-rc1",
|
|
"react-dom": "^0.14.0-rc1",
|
|
"watchify": "^3.4.0"
|
|
},
|
|
"scripts": {
|
|
"build": "browserify ./index.js -t babelify -o bundle.js",
|
|
"start": "watchify ./index.js -v -t babelify -o bundle.js"
|
|
}
|
|
}
|