mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
20 lines
525 B
JSON
20 lines
525 B
JSON
{
|
|
"name": "react-basic-commonjs-example",
|
|
"description": "Basic example of using React with CommonJS",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"babel-preset-es2015": "^6.6.0",
|
|
"babel-preset-react": "^6.5.0",
|
|
"babelify": "^7.3.0",
|
|
"browserify": "^13.0.0",
|
|
"react": "^15.0.2",
|
|
"react-dom": "^15.0.2",
|
|
"watchify": "^3.7.0"
|
|
},
|
|
"scripts": {
|
|
"build": "browserify ./index.js -t babelify -o bundle.js",
|
|
"start": "watchify ./index.js -v -t babelify -o bundle.js"
|
|
}
|
|
}
|