-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.88 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.88 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"$schema": "https://json.schemastore.org/package.json",
"name": "listseerr",
"private": true,
"type": "module",
"version": "0.3.0",
"description": "Request movies & shows in Seerr from your favorite lists",
"author": "Guillermo Alfonso Varela Chouciño <guillevch@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/guillevc/listseerr",
"repository": {
"type": "git",
"url": "https://github.com/guillevc/listseerr.git"
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@types/bun": "^1.3.4",
"@trpc/server": "^11.7.2",
"croner": "^9.1.0",
"typescript": "~5.9.3",
"zod": "^4.1.13"
}
},
"scripts": {
"dev": "bun run dev:server & bun run dev:client",
"dev:client": "bun run --filter client dev",
"dev:server": "bun run --watch --env-file .env packages/server/src/index.ts",
"build": "bun run build:client && bun run build:server && bun run build:scripts",
"build:client": "bun run --filter client build",
"build:client:analyze": "bun run --filter client build:analyze",
"build:server": "bun build packages/server/src/index.ts --outdir dist --target bun --production --minify --splitting",
"build:scripts": "bun build packages/server/scripts/reset-password.ts --outfile dist/reset-password.js --target bun",
"typecheck": "bun run --filter '*' typecheck",
"lint": "eslint .",
"lint:client": "eslint packages/client",
"lint:server": "eslint packages/server",
"lint:shared": "eslint packages/shared",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci": "bun run lint && bun run format:check && bun run typecheck && bun test && bun run build",
"start": "bun run --env-file .env dist/index.js",
"db:generate": "bun run --env-file .env -- bunx --bun --no-install drizzle-kit generate --config packages/server/drizzle.config.ts",
"db:migrate": "bun run --env-file .env packages/server/scripts/migrate.ts",
"db:reset": "bun run --env-file .env packages/server/scripts/reset.ts",
"password:reset": "bun run --env-file .env packages/server/scripts/reset-password.ts",
"dead-code": "bun run --env-file .env knip"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"knip": "^5.86.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"prettier": {
"$schema": "https://json.schemastore.org/prettierrc.json",
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100,
"arrowParens": "always",
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindStylesheet": "./packages/client/src/index.css",
"tailwindFunctions": [
"cn"
]
},
"knip": {
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignoreExportsUsedInFile": {
"interface": true,
"type": true
},
"workspaces": {
"packages/client": {
"entry": [
"src/main.tsx",
"src/routes/**/*.tsx"
],
"project": [
"src/**/*.{ts,tsx}"
],
"ignore": [
"src/routeTree.gen.ts"
]
},
"packages/server": {
"entry": [
"scripts/*.ts"
],
"project": [
"src/**/*.ts",
"scripts/**/*.ts"
],
"ignore": [
"src/**/*.test.ts"
],
"ignoreDependencies": [
"pino-pretty"
]
},
"packages/shared": {
"entry": [
"src/**/index.ts"
],
"project": [
"src/**/*.ts"
]
}
},
"ignore": [
"**/migrations/**"
]
}
}