mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +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"
|
|
}
|
|
}
|