mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "planka",
|
|
"version": "1.13.1",
|
|
"private": true,
|
|
"homepage": "https://plankanban.github.io/planka",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/plankanban/planka.git"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"author": "Maksim Eltyshev",
|
|
"scripts": {
|
|
"client:build": "npm run build --prefix client",
|
|
"client:lint": "npm run lint --prefix client",
|
|
"client:start": "npm start --prefix client",
|
|
"client:test": "npm test --prefix client",
|
|
"docker:build": "docker build -t ghcr.io/plankanban/planka:local -f Dockerfile .",
|
|
"docker:build:base": "docker build -t ghcr.io/plankanban/planka:base-local -f Dockerfile.base .",
|
|
"postinstall": "(cd server && npm i && cd ../client && npm i)",
|
|
"lint": "npm run server:lint && npm run client:lint",
|
|
"prepare": "husky install",
|
|
"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",
|
|
"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"
|
|
},
|
|
"lint-staged": {
|
|
"client/**/*.{js,jsx}": [
|
|
"npm run client:lint"
|
|
],
|
|
"server/**/*.js": [
|
|
"npm run server:lint"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
},
|
|
"eslintConfig": {
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"no-undef": "off",
|
|
"prettier/prettier": "error"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"concurrently": "^7.6.0",
|
|
"husky": "^8.0.2",
|
|
"lint-staged": "^13.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.7.1"
|
|
}
|
|
}
|