Remove underscore and change to lodash solves #21
This diff is collapsed.
... | ... | @@ -4,9 +4,11 @@ |
"description": "[](https://gitlab.utc.fr/chehabfl/outgoing_rex/pipelines) [](https://chehabfl.gitlab.utc.fr/outgoing_rex/) [](https://opensource.org/licenses/BSD-2-Clause)", | ||
"main": "manage.py", | ||
"scripts": { | ||
"dev": "make generate_frontend && webpack --mode development ./frontend/src/index.js --output ./frontend/static/frontend/main.js", | ||
"build": "make generate_frontend && webpack --mode production ./frontend/src/index.js --output ./frontend/static/frontend/main.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"dev": "make generate_frontend && webpack --mode development", | ||
"build": "make generate_frontend && webpack --mode production", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"stats": "webpack --profile --json > stats.json", | ||
"view-stats": "webpack-bundle-analyzer stats.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
... | ... | @@ -38,8 +40,7 @@ |
"redux-logger": "^3.0.6", | ||
"redux-thunk": "^2.3.0", | ||
"style-loader": "^0.23.0", | ||
"typeface-roboto": "0.0.54", | ||
"underscore": "^1.9.1" | ||
"typeface-roboto": "0.0.54" | ||
}, | ||
"devDependencies": { | ||
"@material-ui/icons": "^2.0.3", | ||
... | ... | @@ -70,6 +71,7 @@ |
"sass-loader": "^7.1.0", | ||
"weak-key": "^1.0.1", | ||
"webpack": "^4.17.0", | ||
"webpack-bundle-analyzer": "^3.0.2", | ||
"webpack-cli": "^3.1.0" | ||
} | ||
} |
Please register or sign in to comment