-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "keeparr",
"version": "0.3.7",
"private": true,
"description": "Plex-login web app to decide what media to keep and report what's reclaimable. Tags and reports only — never deletes.",
"license": "MIT",
"author": "drohack",
"repository": {
"type": "git",
"url": "https://github.com/drohack/Keeparr.git"
},
"homepage": "https://github.com/drohack/Keeparr#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"verify": "vitest run && next build",
"seed": "tsx scripts/seed.mts"
},
"dependencies": {
"@scalar/api-reference-react": "^0.9.53",
"better-sqlite3": "^11.8.1",
"next": "^15.5.19",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.15",
"sharp": "^0.35.3",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.1.8"
},
"overrides": {
"postcss": "$postcss"
}
}