-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.52 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.52 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
{
"name": "@jjdenhertog/spotify-to-plex",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"version": "1.0.102",
"description": "Sync Spotify with your Plex Library.",
"keywords": [
"plex",
"spotify",
"sync",
"tidal",
"import",
"playlists",
"albums"
],
"scripts": {
"build:packages": "tsc --build packages/*",
"build:web": "npm run build --workspace=@spotify-to-plex/web",
"build:sync-worker": "npm run build --workspace=@spotify-to-plex/sync-worker",
"build": "tsc --build",
"build:clean": "pnpm -r run clean",
"build:force": "tsc --build --force",
"type-check": "pnpm -r run type-check",
"type-check:build": "tsc --build --noEmit",
"type-check:watch": "tsc --build --watch --noEmit",
"watch:packages": "tsc --build packages/* --watch",
"test:packages": "npm run test --workspaces --if-present",
"dev:web": "npm run dev --workspace=@spotify-to-plex/web",
"docker:dev": "pnpm install && npm run docker:build && docker compose down && docker compose up -d --build",
"docker:build": "docker build -t jjdenhertog/spotify-to-plex .",
"docker:push": "PACKAGE_VERSION=$(node -p \"require('./package.json').version\") && docker buildx build --platform=linux/amd64,linux/arm64 -t jjdenhertog/spotify-to-plex:latest -t jjdenhertog/spotify-to-plex:$PACKAGE_VERSION --push .",
"docker:push:beta": "PACKAGE_VERSION=$(node -p \"require('./package.json').version\") && docker buildx build --platform=linux/amd64,linux/arm64 -t jjdenhertog/spotify-to-plex:beta -t jjdenhertog/spotify-to-plex:$PACKAGE_VERSION-beta --push .",
"deploy": "npm version patch && npm run docker:push && npm run release",
"release": "PACKAGE_VERSION=$(grep '\"version\"' package.json | cut -d '\"' -f 4 | head -n 1) && git push && git push --tags && gh release create v$PACKAGE_VERSION --generate-notes --title \"v$PACKAGE_VERSION\"",
"deploy:beta": "npm version prerelease --preid=beta --no-git-tag-version && npm run docker:push:beta",
"dev:sync:playlists": "npm run dev:sync:playlists --workspace=@spotify-to-plex/sync-worker",
"dev:sync:albums": "npm run dev:sync:albums --workspace=@spotify-to-plex/sync-worker",
"dev:sync:users": "npm run dev:sync:users --workspace=@spotify-to-plex/sync-worker",
"dev:sync:lidarr": "npm run dev:sync:lidarr --workspace=@spotify-to-plex/sync-worker",
"dev:sync:slskd": "npm run dev:sync:slskd --workspace=@spotify-to-plex/sync-worker",
"dev:mqtt": "npm run dev:mqtt --workspace=@spotify-to-plex/sync-worker",
"start": "npm run start --workspace=@spotify-to-plex/web",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0",
"npm": "please-use-pnpm"
},
"packageManager": "pnpm@10.15.0",
"dependencies": {
"axios": "^1.11.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/node": "^20.19.11",
"@types/qs": "^6.14.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unicorn": "^56.0.0"
}
}