-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.38 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
72
{
"name": "tracker-wiki",
"private": true,
"description": "A wiki documenting tracking endpoints and how to extract data from requests to them.",
"bugs": "https://github.com/tweaselORG/tracker-wiki/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/tracker-wiki.git"
},
"license": "CC0-1.0",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "[email protected]",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "[email protected]",
"url": "https://lorenz-sieben.com"
}
],
"scripts": {
"prebuild": "tsx scripts/copyResearchDocs.ts && tsx scripts/adaptersToJson.ts && tsx scripts/translations.ts",
"build": "yarn prebuild && hugo --baseURL 'https://trackers.tweasel.org' --minify",
"fix": "yarn eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix",
"lint": "tsc && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check",
"test": "echo 'TODO: No tests specified yet.'",
"watch": "yarn prebuild && hugo server"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"buffer": "^6.0.3",
"cross-dirname": "^0.1.0",
"preact": "^10.19.6",
"trackhar": "^0.5.1"
},
"devDependencies": {
"@baltpeter/eslint-config": "2.1.2",
"@baltpeter/prettier-config": "^2.0.0",
"@baltpeter/tsconfig": "3.0.0",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/har-format": "^1.2.15",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "5.57.1",
"eslint": "8.37.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"execa": "^8.0.1",
"husky": "4.3.7",
"lint-staged": "13.2.0",
"parcel": "2.8.3",
"prettier": "2.8.7",
"tsx": "^3.12.6",
"type-fest": "^3.8.0",
"typescript": "5.0.3"
}
}