mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
15 lines
347 B
JSON
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"
|
|
}
|
|
}
|