-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.89 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
{
"name": "poutine",
"private": true,
"version": "0.5.6",
"description": "Federated music player - merges personal music collections into a unified library",
"scripts": {
"dev": "pnpm --filter hub dev",
"build": "pnpm --filter hub build && pnpm --filter frontend build",
"test": "pnpm --filter hub test && pnpm --filter frontend test",
"lint": "pnpm --filter hub lint && pnpm --filter frontend lint",
"lint:boundary": "pnpm --filter hub lint:boundary && pnpm --filter frontend lint:boundary",
"typecheck": "pnpm --filter hub typecheck && pnpm --filter frontend typecheck",
"verify": "pnpm typecheck && pnpm lint:boundary && pnpm test",
"verify:full": "pnpm verify && pnpm test:federation",
"test:integration": "pnpm --filter hub test:integration",
"hub:up": "docker compose up -d --build",
"hub:up:fresh": "docker compose up -d --build --force-recreate",
"hub:logs": "bash scripts/hub-native-macos.sh logs",
"test:federation": "bash test/federation/run.sh",
"sync-version": "node scripts/sync-version.mjs",
"hub:start": "bash scripts/hub-native-macos.sh start",
"hub:stop": "bash scripts/hub-native-macos.sh stop",
"hub:restart": "bash scripts/hub-native-macos.sh restart",
"hub:status": "bash scripts/hub-native-macos.sh status",
"preversion": "branch=$(git rev-parse --abbrev-ref HEAD); if [ \"$branch\" != \"main\" ]; then echo \"pnpm version must run on main (current: $branch)\" >&2; exit 1; fi",
"version": "node scripts/sync-version.mjs && git add hub/package.json frontend/package.json hub/src/version.ts"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"pnpm": {
"onlyBuiltDependencies": [
"@newrelic/fn-inspect",
"@newrelic/native-metrics",
"argon2",
"better-sqlite3"
]
}
}