22 lines
543 B
JSON
22 lines
543 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"
|
|
}
|
|
},
|
|
"dependencies": {}
|
|
}
|