Current section
Files
Jump to
Current section
Files
assets/package.json
{
"name": "app_name",
"description": "Basic setup of Webpack on Phoenix framework",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"lint:js": "standard --verbose | snazzy",
"lint": "npm-run-all --parallel lint:*",
"dev": "webpack --debug --watch",
"build": "NODE_ENV=production webpack"
},
"standard": {
"globals": [
"VERSION",
"ENV"
]
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"copy-to-clipboard": "^3.0.6",
"lodash": "^4.17.4",
"material-ui": "0.18.1",
"phoenix": "^1.2.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "3.0",
"react-router-redux": "^4.0.8",
"react-split-layout": "^1.3.0",
"react-tap-event-plugin": "^2.0.1",
"react-virtualized": "^9.7.5",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-saga": "^0.15.3",
"tether": "^1.4.0"
},
"devDependencies": {
"autoprefixer": "^6.7.3",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.1.8",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.1",
"sass-loader": "^6.0.1",
"snazzy": "^7.0.0",
"standard": "^10.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1"
}
}