-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1011 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1011 Bytes
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
{
"name": "listenarr",
"version": "0.2.72",
"private": true,
"description": "Listenarr - Automated audiobook downloading and management",
"scripts": {
"version:sync": "node scripts/sync-fe-version-from-csproj.mjs",
"predev": "npm run version:sync",
"prebuild": "npm run version:sync",
"pretest": "npm run version:sync",
"dev": "concurrently \"npm run dev:api\" \"wait-on http-get://localhost:4545/api/v1/system/health -t 120000 -i 1000 --httpTimeout 3000 && cd fe && npm run dev\" --names \"API,WEB\" --prefix-colors \"blue,green\"",
"dev:api": "cd listenarr.api && dotnet run",
"dev:web": "cd fe && npm run dev",
"build": "npm run build:api && npm run build:web",
"build:api": "cd listenarr.api && dotnet build -c Release",
"build:web": "cd fe && npm run build",
"start": "npm run dev",
"install:all": "cd fe && npm install",
"test": "cd fe && npm run test:unit"
},
"dependencies": {
"concurrently": "^9.2.1",
"wait-on": "^8.0.3"
}
}