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

30 lines
582 B
JSON
Raw Normal View History

2019-08-31 04:07:25 +05:00
{
"name": "planka",
"version": "0.1.0",
"private": true,
"homepage": "https://plankanban.github.io/planka",
2019-08-31 04:07:25 +05:00
"repository": {
"type": "git",
"url": "https://github.com/plankanban/planka.git"
2019-08-31 04:07:25 +05:00
},
"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"
}
2019-08-31 04:07:25 +05:00
}