Files
reactfire/package.json
Jeff 0916a27839 Improve local dev experience (#152)
* make sample-simple depend on local reactfire instead of published version

* add a Prettier formatter pre-commit hook

* run prettier on the whole project

* Clarify local development instructions
2019-10-11 15:34:54 -07:00

20 lines
326 B
JSON

{
"private": true,
"workspaces": [
"reactfire",
"reactfire/pub/reactfire",
"sample-simple",
"sample-complex"
],
"devDependencies": {
"husky": "^3.0.8",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}