-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "root",
"type": "module",
"workspaces": [
"packages/github",
"packages/me",
"packages/nowplaying",
"packages/simpleclock",
"packages/worldclock"
],
"author": {
"name": "Stefan Stölzle",
"email": "[email protected]",
"url": "https://github.com/stoe"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stoe/uebersicht.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"format": "npx prettier --config-precedence prefer-file --write . && eslint . --fix",
"prepare": "husky",
"pretest": "npx eslint-config-prettier eslint.config.js",
"test": "npm run test --workspaces --if-present",
"update": "./.github/scripts/update.sh"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": ".husky/pre-commit",
"pre-push": ".husky/pre-push"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run test"
],
"*.{json,md}": [
"prettier --write"
]
},
"prettier": "@github/prettier-config"
}