removed webpack from dependencies and removed the stray '2' from the code

This commit is contained in:
Rick van Lieshout 2018-02-04 14:51:23 +01:00
parent 8734798a3d
commit 8c6bc38422
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ class App extends Component {
render() {
Cookies.set("test", "nice2")
Cookies.set("test", "nice")
return (
<div className="App">

View File

@ -9,8 +9,7 @@
"main": "build/index.js",
"dependencies": {
"js-cookie": "^2.2.0",
"react": "^15.5.4",
"webpack": "^2.6.1"
"react": "^15.5.4"
},
"scripts": {
"build": "webpack"
@ -38,6 +37,7 @@
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1"
"babel-preset-stage-1": "^6.24.1",
"webpack": "^2.6.1"
}
}