1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/package.json

29 lines
582 B
JSON

{
"name": "planka",
"version": "0.1.0",
"private": true,
"homepage": "https://plankanban.github.io/planka",
"repository": {
"type": "git",
"url": "https://github.com/plankanban/planka.git"
},
"license": "MIT",
"author": "Maksim Eltyshev",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"client/**/*.{js,jsx}": [
"npm run lint --prefix client"
],
"server/**/*.js": [
"npm run lint --prefix server"
]
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.1.7"
}
}