-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "tunarr",
"version": "0.18.11",
"description": "Create LiveTV channels from your Plex media",
"type": "module",
"author": "chrisbenincasa",
"license": "Zlib",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"fmt": "prettier --write .",
"lint-staged": "lint-staged",
"lint-changed": "eslint --fix $(git diff --name-only HEAD -- './**/*.ts*' | xargs)",
"test": "turbo run test",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"esbuild": "^0.21.5",
"eslint": "9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.5.1",
"turbo": "^2.3.3",
"typescript": "5.7.3",
"vitest": "^1.6.0"
},
"engines": {
"node": "22"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"eslint": "9.17.0",
"@types/node": "22.10.7"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --no-warn-ignored"
]
}
}