-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.16 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
72
73
{
"name": "aurral",
"version": "1.59.1",
"description": "Aurral artist request manager",
"main": "server.js",
"type": "module",
"scripts": {
"build": "cd frontend && npm run build",
"start": "node server.js",
"test": "node --test --test-concurrency=1 $(find .tests -name '*.test.js' -print)",
"dev": "concurrently --kill-others-on-fail \"npm run dev:backend\" \"npm run wait-and-dev:frontend\"",
"wait-and-dev:frontend": "wait-on -t 15000 http://localhost:3001/api/health && cd frontend && npm run dev",
"dev:backend": "nodemon server.js",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"install:frontend": "cd frontend && npm install",
"auth:reset-admin-password": "node backend/scripts/resetAdminPassword.js",
"docker:build": "docker build -t aurral .",
"docker:run": "docker run -p 3001:3001 -v $(pwd)/backend/data:/app/backend/data aurral",
"prepare": "husky"
},
"keywords": [
"lidarr",
"musicbrainz",
"music",
"request"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.15.0",
"better-sqlite3": "^12.6.2",
"bottleneck": "^2.19.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"sharp": "^0.34.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"commitlint": "^20.5.2",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"nodemon": "^3.1.14",
"semantic-release": "^25.0.3",
"wait-on": "^9.0.5"
},
"nodemonConfig": {
"watch": [
"backend",
"server.js"
],
"ext": "js,json",
"ignore": [
"node_modules",
"frontend",
"backend/data",
"*.log",
"frontend/dist"
],
"delay": 2000,
"restartable": "rs"
}
}