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

49 lines
1.5 KiB
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",
"scripts": {
"client:build": "npm run build --prefix client",
"client:lint": "npm run lint --prefix client",
"client:start": "npm start --prefix client",
2020-08-20 15:35:46 +05:00
"client:test": "npm test --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",
2020-08-20 15:35:46 +05:00
"server:test": "npm test --prefix server",
"start": "concurrently -n server,client \"npm run server:start\" \"npm run client:start\"",
"test": "npm run server:test && npm run client:test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"client/**/*.{js,jsx}": [
"npm run client:lint"
],
"server/**/*.js": [
"npm run server:lint"
]
},
"dependencies": {
2022-02-09 00:56:01 +05:00
"concurrently": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3"
}
2019-08-31 04:07:25 +05:00
}