-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "tunarr",
"version": "0.15.7",
"description": "Create LiveTV channels from your Plex media",
"type": "module",
"author": "chrisbenincasa",
"license": "Zlib",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint-staged": "lint-staged",
"lint-changed": "eslint --fix $(git diff --name-only HEAD -- './**/*.ts*' | xargs)",
"preinstall": "npx only-allow pnpm",
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky install"
},
"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": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"esbuild": "^0.21.5",
"eslint": "8.56.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unused-imports": "^3.1.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"turbo": "^2.1.3",
"typescript": "5.4.3",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2",
"pnpm": {
"patchedDependencies": {
"ts-essentials@9.4.1": "patches/ts-essentials@9.4.1.patch"
},
"overrides": {
"eslint": "8.56.0",
"better-sqlite3": "9.4.5",
"@types/node": "20.11.1"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --no-warn-ignored"
]
}
}