Created
August 27, 2019 22:20
-
-
Save JustenRickert/fe9cedf60d1e6499123e5275901a0266 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"test": "jest" | |
}, | |
"lint-staged": { | |
"*.js": [ | |
"prettier --write", | |
"git add" | |
] | |
}, | |
"husky": { | |
"hooks": { | |
"pre-commit": "lint-staged", | |
"pre-push": "npm run test" | |
} | |
}, | |
"devDependencies": { | |
"husky": "^3.0.4", | |
"jest": "^24.9.0", | |
"lint-staged": "^9.2.5", | |
"prettier": "^1.18.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment