-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "nulmd",
"version": "0.4.5",
"description": "New Lidarr Metadata Server",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "jest",
"docker:build": "docker build -t nulmd:latest .",
"docker:run": "docker run -p 5001:5001 -v $(pwd)/config:/app/config nulmd:latest"
},
"keywords": [
"lidarr",
"metadata",
"musicbrainz",
"music"
],
"author": "ofernander",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ofernander/nuLMD"
},
"homepage": "https://github.com/ofernander/nuLMD",
"dependencies": {
"express": "^4.18.2",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"winston": "^3.11.0",
"node-cache": "^5.1.2",
"joi": "^17.11.0",
"js-yaml": "^4.1.0",
"pg": "^8.11.3",
"node-cron": "^3.0.3",
"winston-daily-rotate-file": "^5.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
}
}