Removed lodash (#135)

This commit is contained in:
Timur Khazamov 2020-01-05 01:53:45 +05:00 committed by Christopher Chedeau
parent 3172109050
commit 79959cab34
2 changed files with 13 additions and 33 deletions

View file

@ -6,7 +6,6 @@
"keywords": [],
"main": "src/index.js",
"dependencies": {
"lodash": "4.17.15",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.3.0",
@ -27,7 +26,12 @@
"test": "react-scripts test --env=jsdom --passWithNoTests",
"eject": "react-scripts eject"
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
@ -37,7 +41,12 @@
}
},
"lint-staged": {
"*.{js,css,json,md,ts,tsx}": ["prettier --write", "git add"],
"*.{js,ts,tsx}": ["eslint"]
"*.{js,css,json,md,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"eslint"
]
}
}