-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"name": "universalmediaserver-api",
"version": "0.0.0",
"private": true,
"engines": {
"node": "24",
"yarn": ">=1.22.10"
},
"scripts": {
"dev": "DEBUG=\"*universalmediaserver-api:server\" nodemon",
"start": "ts-node --files src/app.ts",
"start:prod": "pm2 start ecosystem.config.js --update-env",
"start:prod:verbose": "pm2 start ecosystem.config.js --env verbose",
"reload:prod": "pm2 reload ecosystem.config.js",
"reload:prod:verbose": "pm2 reload ecosystem.config.js --env verbose",
"test": "NODE_ENV=test jest test/**/*.spec.ts --forceExit --detectOpenHandles",
"test:e2e": "NODE_ENV=test jest test/e2e/*.spec.ts --forceExit --detectOpenHandles",
"test:unit": "NODE_ENV=test jest test/unit/*.spec.ts --forceExit --detectOpenHandles",
"test:models": "NODE_ENV=test jest test/models/*.spec.ts --forceExit --detectOpenHandles",
"tsc:ci": "tsc && rm -rf dist",
"watch": "tsc --watch"
},
"dependencies": {
"@skyra/jaro-winkler": "^1.1.1",
"debug": "4.4.3",
"episode-parser": "2.0.2",
"helmet": "^8.0.0",
"koa": "^3.1.1",
"koa-bodyparser": "4.4.1",
"koa-helmet": "^9.0.0",
"koa-qs": "3.0.0",
"koa-router": "14.0.0",
"lodash": "4.17.23",
"mongoose": "^9.0.2",
"moviedb-promise": "4.0.8",
"object-mapper": "6.2.0",
"pm2": "^6.0.13",
"ts-node": "^10.9.2",
"typescript": "5.9"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/koa-bodyparser": "4.3.13",
"@types/lodash": "4.17.24",
"@types/node": "24.12.0",
"@types/object-mapper": "6.2.2",
"axios": "1.13.6",
"eslint": "^10.0.3",
"jest": "30.2.0",
"mongodb-memory-server": "^11.0.1",
"nodemon": "3.1.14",
"stoppable": "1.1.0",
"ts-jest": "29.4.6",
"typescript-eslint": "^8.6.0"
},
"packageManager": "yarn@4.12.0"
}