-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 886 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 886 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
{
"name": "listenarr",
"version": "0.2.71",
"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\" \"npm run dev:web\" --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"
}
}