-
-
Notifications
You must be signed in to change notification settings - Fork 749
/
package.json
71 lines (71 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "planka",
"version": "1.23.5",
"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 .",
"gv": "npm i --package-lock-only --ignore-scripts && genversion --source ./ --template client/version-template.ejs client/src/version.js",
"postinstall": "(cd server && npm i && cd ../client && npm i)",
"lint": "npm run server:lint && npm run client:lint",
"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",
"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/src/**/*.{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": "^8.2.2",
"genversion": "^3.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}