-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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": "plex-betaseries-webhook",
"version": "1.0.0",
"description": "Plex webhook to mark series and movies as watched on BetaSeries.",
"main": "src/app.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest --runInBand --collect-coverage",
"start": "node --unhandled-rejections=strict dist/app.js",
"health-check": "node --unhandled-rejections=strict dist/health-check.js"
},
"dependencies": {
"axios": "^1.6.7",
"config": "^3.3.11",
"domurl": "^2.3.4",
"express": "^4.18.3",
"inversify": "^6.0.2",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.4.6",
"js-yaml": "^4.1.0",
"md5": "^2.3.0",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.2.1",
"serve-favicon": "^2.5.0",
"winston": "^3.12.0"
},
"overrides": {
"dicer": ">=0.3.1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/config": "^3.3.3",
"@types/domurl": "^0.0.9",
"@types/jest": "^29.5.12",
"@types/md5": "^2.3.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.25",
"@types/serve-favicon": "^2.5.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"moq.ts": "^10.0.8",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"jestSonar": {
"reportPath": "coverage"
}
}