generator-react-flux-barebones
Version:
A generator for scaffolding a barebones React.js app with build pipeline and development server
28 lines (27 loc) • 805 B
JSON
{
"name": "<%= appname %>",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "lite-server",
"build": "browserify ./js/app.js -o ./js/bundle.js -t [ babelify --presets [ es2015 react ]]",
"start": "concurrently \"watchify ./js/app.js -o ./js/bundle.js -t [ babelify --presets [ es2015 react ] ] \" \"npm run server\"",
"postinstall": "typings install"
},
"author": "<%= author %>",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"concurrently": "^2.0.0",
"flux": "^2.1.1",
"lite-server": "^2.2.0",
"react": "^15.0.1",
"react-dom": "^15.0.2",
"typings": "^0.8.1",
"watchify": "^3.7.0"
}
}