-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.84 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
{
"name": "listenarr",
"version": "1.2.2",
"private": true,
"description": "Listenarr - Automated audiobook downloading and management",
"engines": {
"node": "^24.15.0"
},
"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/ready -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",
"lint": "npm run lint:frontend",
"lint:frontend": "cd fe && npm run lint:check",
"lint:staged": "node scripts/lint-staged.mjs",
"lint:fix": "cd fe && npm run lint:fix",
"format": "npm run format:backend && npm run format:frontend",
"format:backend": "dotnet format listenarr.slnx --no-restore --verbosity minimal",
"format:backend:check": "dotnet format listenarr.slnx --no-restore --verify-no-changes --verbosity minimal",
"format:frontend": "cd fe && npm run format",
"format:frontend:check": "cd fe && npm run format:check",
"format:check": "npm run format:backend:check && npm run format:frontend:check",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "dotnet test",
"test:frontend": "cd fe && npm run test:unit",
"prepare": "husky"
},
"dependencies": {
"concurrently": "^10.0.3",
"wait-on": "^9.0.10"
},
"devDependencies": {
"husky": "^9.1.7"
}
}