-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.85 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
{
"name": "scroblarr",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Media scrobbling service for Plex, Jellyfin, and Emby",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"dev": "pnpm --filter './packages/*' dev",
"start": "NODE_ENV=production PUBLIC_DIR=../frontend/dist pnpm --filter '@scroblarr/backend' start",
"dev:backend": "pnpm --filter '@scroblarr/backend' dev",
"dev:frontend": "pnpm --filter '@scroblarr/frontend' dev",
"dev:docs": "pnpm --filter '@scroblarr/website' start",
"build": "pnpm --filter './packages/*' build",
"build:docs": "pnpm --filter '@scroblarr/website' build",
"lint": "pnpm --filter './packages/*' lint",
"lint:fix": "pnpm --filter './packages/*' lint:fix",
"lint:all": "pnpm --filter '@scroblarr/backend' lint:eslint && pnpm --filter '@scroblarr/frontend' lint:eslint && pnpm --filter '@scroblarr/shared' lint:eslint",
"type-check": "pnpm --filter './packages/*' type-check",
"format": "prettier --log-level warn --write --cache \"**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"",
"format:check": "prettier --log-level warn --check --cache \"**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"",
"check": "pnpm lint && pnpm format:check && pnpm type-check",
"test": "pnpm --filter '@scroblarr/backend' test && pnpm --filter '@scroblarr/frontend' test",
"test:coverage": "pnpm --filter '@scroblarr/backend' test:coverage && pnpm --filter '@scroblarr/frontend' test:coverage",
"i18n:extract": "pnpm --filter '@scroblarr/frontend' i18n:extract"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/cookie-parser": "^1.4.10",
"@types/express-rate-limit": "^6.0.2",
"@types/helmet": "^4.0.0",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"eslint": "9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-morph": "^28.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.57.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix --no-warn-ignored"
],
"**/*.{json,css,md,mdx}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.34.3+sha512.f2c531b08829d7be7f03c90addc266615f9c5477463e4bf1d275cb263ce9ea57cf0d5599110d94649a9bb3fed9f0b5efcea74a7016b61532a24cb9ad87860c1d",
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3"
]
},
"dependencies": {
"cookie-parser": "^1.4.7",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0"
}
}