-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "prunerr",
"version": "1.1.2",
"description": "Media library cleanup tool for Plex/Sonarr/Radarr",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspace=server && npm run build --workspace=client",
"build:server": "npm run build --workspace=server",
"build:client": "npm run build --workspace=client",
"start": "npm run start --workspace=server",
"lint": "npm run lint --workspace=server && npm run lint --workspace=client",
"clean": "rm -rf node_modules server/node_modules client/node_modules server/dist client/dist"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"@tanstack/react-virtual": "^3.13.23",
"framer-motion": "^12.38.0"
}
}