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

70 lines
2.1 KiB
JSON
Raw Normal View History

2019-08-31 04:07:25 +05:00
{
"name": "planka",
2024-06-14 17:18:42 +02:00
"version": "1.19.0",
2019-08-31 04:07:25 +05:00
"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
},
2023-01-16 23:22:00 +01:00
"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",
2020-08-20 15:35:46 +05:00
"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 .",
2023-01-09 12:35:08 +01:00
"postinstall": "(cd server && npm i && cd ../client && npm i)",
"lint": "npm run server:lint && npm run client:lint",
2024-06-02 01:34:03 +02:00
"prepare": "husky",
"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"
},
"lint-staged": {
"client/**/*.{js,jsx}": [
"npm run client:lint"
],
"server/**/*.js": [
"npm run server:lint"
]
},
2022-11-21 00:54:05 +01:00
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended"
],
"rules": {
"no-undef": "off",
"prettier/prettier": "error"
}
},
"dependencies": {
2023-11-17 14:34:10 +01:00
"concurrently": "^8.2.2",
2024-06-02 01:34:03 +02:00
"husky": "^9.0.1",
"lint-staged": "^15.2.5"
},
"devDependencies": {
2024-04-23 15:45:47 +02:00
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
2024-06-02 01:34:03 +02:00
"prettier": "^3.3.0"
}
2019-08-31 04:07:25 +05:00
}