Files
fauxjira/package.json
2019-12-03 20:39:54 +01:00

21 lines
521 B
JSON

{
"name": "jira_clone",
"version": "1.0.0",
"author": "Ivor Reic",
"license": "MIT",
"scripts": {
"pre-commit:api": "cd api && npm run pre-commit",
"pre-commit:client": "cd client && npm run pre-commit",
"pre-commit": "npm run pre-commit:api && npm run pre-commit:client",
"install-deps": "npm install && cd api && npm install && cd ../client && npm install"
},
"devDependencies": {
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}