-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 KB
/
package.json
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
{
"name": "animetarr",
"repository": {
"type": "git",
"url": "https://github.com/kariudo/animetarr"
},
"version": "2.1.1",
"description": "Pronounced 'Animator', this service provides an interface to review and add anime to Sonarr and Radarr based on release schedule.",
"type": "module",
"exports": "./dist/app.js",
"config": {
"docker": {
"ns": "kariudo"
}
},
"nodemonConfig": {
"ignore": [
"dist/*",
"animetarr-ui/*"
]
},
"scripts": {
"build": "rimraf dist && ncc build -m --license LICENSE.md src/app.ts && copyfiles .env.example dist",
"build:ui": "npm run build --prefix .\\animetarr-ui\\",
"start": "tsc && node dist/src/app.js",
"test": "echo \"Warning: no test specified\" && exit 0",
"preversion": "npm test",
"version": "npm run build",
"postversion": "run-script-os",
"postversion:nix": "rimraf dist && docker build -t $npm_package_config_docker_ns/$npm_package_name:latest . && git push && git push --tags && docker-publish",
"postversion:windows": "rimraf dist && docker build -t %npm_package_config_docker_ns%/%npm_package_name%:latest . && git push && git push --tags && docker-publish",
"dev": "nodemon -e ts --exec \"npm run start\""
},
"author": "Hunter Horsman",
"license": "ISC",
"dependencies": {
"bottleneck": "^2.19.5",
"dotenv-safe": "^9.1.0",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"node-tvdb": "^4.1.0",
"nodemon": "^3.1.9"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.6",
"@types/express": "^5.0.0",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vanioinformatika/docker-publish": "^2.1.2",
"@vercel/ncc": "^0.38.3",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"rimraf": "^6.0.1",
"run-script-os": "^1.1.6",
"typescript": "^5.7.3"
}
}