-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 903 Bytes
/
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
{
"name": "jenda",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "Cloud-based task management app",
"author": "Alex Peshkov",
"license": "MIT",
"keywords": [
"jenda",
"tasks",
"kanban",
"agile",
"collaboration"
],
"scripts": {
"dev:picker": "tsx scripts/picker.ts dev --open",
"build:all": "pnpm -r build",
"lint": "pnpm -r lint",
"lint:inspect": "npx @eslint/config-inspector",
"test:unit": "pnpm -r test:unit",
"type-check": "pnpm -r typecheck",
"pre-commit": "pnpm -r lint && pnpm -r typecheck",
"prepare": "husky"
},
"devDependencies": {
"@jenda/eslint-config": "workspace:*",
"eslint": "9.14.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*.{js,ts,vue,tsx}": [
"pnpm lint",
"pnpm type-check"
]
}
}