mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +02:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
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",
|
|
"scripts": {
|
|
"client:build": "npm run build --prefix client",
|
|
"client:lint": "npm run lint --prefix client",
|
|
"client:start": "npm start --prefix client",
|
|
"lint": "npm run server:lint && npm run client:lint",
|
|
"postinstall": "npm i --prefix server && npm i --prefix client",
|
|
"server:console": "npm run console --prefix server",
|
|
"server:db:init": "npm run db:init --prefix server",
|
|
"server:db:migrate": "npm run db:migrate --prefix server",
|
|
"server:db:seed": "npm run db:seed --prefix server",
|
|
"server:lint": "npm run lint --prefix server",
|
|
"server:start": "npm start --prefix server",
|
|
"server:start:prod": "npm run start:prod --prefix server",
|
|
"start": "concurrently -n server,client \"npm run server:start\" \"npm run client:start\""
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"client/**/*.{js,jsx}": [
|
|
"npm run client:lint"
|
|
],
|
|
"server/**/*.js": [
|
|
"npm run server:lint"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^5.2.0",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.0"
|
|
}
|
|
}
|