2014-04-30 01:55:06 +08:00
|
|
|
{
|
|
|
|
|
"name": "react-basic-commonjs-example",
|
|
|
|
|
"description": "Basic example of using React with CommonJS",
|
|
|
|
|
"main": "index.js",
|
2015-09-19 09:24:53 +08:00
|
|
|
"dependencies": {
|
|
|
|
|
"babelify": "^6.3.0",
|
|
|
|
|
"react": "^0.14.0-rc1",
|
|
|
|
|
"react-dom": "^0.14.0-rc1",
|
|
|
|
|
"watchify": "^3.4.0"
|
2014-04-30 01:55:06 +08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2015-09-19 09:24:53 +08:00
|
|
|
"start": "watchify index.js -v -t babelify -o bundle.js"
|
2014-04-30 01:55:06 +08:00
|
|
|
}
|
|
|
|
|
}
|