<%- require "react_on_rails/version_syntax_converter" -%> { "name": "react-webpack-rails-tutorial", "version": "1.1.0", "description": "Built using the react_on_rails generator.", "main": "server.js", "engines": { "node": "5.0.0", "npm": "3.5.0" }, "repository": { "type": "git", "url": "https://github.com/shakacode/react-webpack-rails-tutorial.git" }, "keywords": [ "react", "tutorial", "comment", "example" ], "author": "justin808", "license": "MIT", "bugs": { "url": "https://github.com/shakacode/react-webpack-rails-tutorial/issues" }, "homepage": "https://github.com/shakacode/react-webpack-rails-tutorial", "scripts": { "start": "node server.js", "build:client": "NODE_ENV=production webpack --config webpack.client.rails.config.js", <%- if options.server_rendering? -%> "build:server": "NODE_ENV=production webpack --config webpack.server.rails.config.js", <%- end -%> "build:dev:client": "webpack -w --config webpack.client.rails.config.js", <%- if options.server_rendering? -%> "build:dev:server": "webpack -w --config webpack.server.rails.config.js", <%- end -%> "build:production:client": "NODE_ENV=production webpack --config webpack.client.rails.build.config.js", <%- if options.server_rendering? -%> "build:production:server": "NODE_ENV=production webpack --config webpack.server.rails.build.config.js", <%- end -%> <%- unless options.skip_js_linters? -%> "lint": "npm run eslint && npm run jscs", "eslint": "eslint --ext .js,.jsx .", "jscs": "jscs --verbose .", <%- end -%> "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { "autoprefixer": "^6.3.5", "axios": "^0.9.1", "babel": "^6.5.2", "babel-cli": "^6.6.5", "babel-core": "^6.7.4", "babel-loader": "^6.2.4", "babel-runtime": "^6.6.1", "babel-polyfill": "^6.7.4", "babel-preset-es2015": "^6.6.0", "babel-preset-react": "^6.5.0", "babel-preset-stage-0": "^6.5.0", "css-loader": "^0.23.1", "es5-shim": "^4.5.7", "expose-loader": "^0.7.1", <%- if options.redux? -%> "immutable": "^3.7.6", <%- end -%> "imports-loader": "^0.6.5", "jquery": "^2.2.2", "jquery-ujs": "^1.2.1", "loader-utils": "^0.2.13", "lodash": "^4.7.0", <%- if options.redux? -%> "mirror-creator": "1.1.0", <%- end -%> "react": "^0.14.8", <%- unless options.skip_bootstrap? -%> "react-bootstrap": "^0.28.5", <%- end -%> "react-dom": "^0.14.8", "react-on-rails": "<%= VersionSyntaxConverter.new.rubygem_to_npm %>", <%- if options.redux? -%> "react-redux": "^4.4.1", "redux": "^3.3.1", "redux-promise": "^0.5.3", "redux-thunk": "^2.0.1", <%- end -%> "webpack": "^1.12.14" }, "devDependencies": { "babel-plugin-react-transform": "^2.0.2", <%- unless options.skip_bootstrap? -%> "bootstrap-sass": "^3.3.6", "bootstrap-sass-loader": "^1.0.10", <%- end -%> "css-loader": "^0.23.1", <%- unless options.skip_js_linters? -%> "eslint": "^2.6.0", "eslint-config-shakacode": "^4.0.0", "eslint-plugin-react": "^4.2.3", <%- end -%> "express": "^4.13.4", "file-loader": "^0.8.5", "jade": "^1.11.0", <%- unless options.skip_js_linters? -%> "jscs": "^2.11.0", <%- end -%> "node-sass": "^3.4.2", "react-transform-hmr": "^1.0.4", "sass-loader": "^3.2.0", "style-loader": "^0.13.1", "url-loader": "^0.5.7", "webpack-dev-server": "^1.14.1" } }