-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
118 lines (118 loc) · 3.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "popcorn-env",
"version": "1.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pct-org/popcorn-env.git"
},
"license": "MIT",
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:e2e": "nx affected:e2e",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"build": "yarn build:api && yarn build:scraper",
"build:api": "nx build --with-deps",
"build:rest-api": "nx build rest-api --with-deps",
"build:scraper": "nx build scraper --with-deps",
"delete:prod": "pm2 delete ecosystem.config.js",
"dep-graph": "nx dep-graph",
"e2e": "nx e2e",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"lint": "nx workspace-lint && nx lint",
"logs": "yarn pm2 logs",
"nx": "nx",
"nx:update": "nx migrate latest",
"reload:prod": "yarn stop:prod && yarn start:prod",
"setup": "pm2 install pm2-logrotate && yarn build",
"start": "nx serve",
"start:api": "nx serve api",
"start:prod": "pm2 start ecosystem.config.js",
"start:rest-api": "nx serve rest-api",
"start:scraper": "nx serve scraper",
"stop:prod": "pm2 stop ecosystem.config.js",
"test": "nx test",
"workspace-schematic": "nx workspace-schematic"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@nestjs/apollo": "^10.0.2",
"@nestjs/axios": "^0.0.5",
"@nestjs/cli": "8.2.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^10.0.2",
"@nestjs/mongoose": "9.0.2",
"@nestjs/platform-fastify": "^8.0.0",
"@nestjs/schedule": "^1.0.2",
"@nestjs/serve-static": "2.2.2",
"apollo-server-fastify": "3.6.3",
"bytes": "^3.1.2",
"cheerio": "^1.0.0-rc.10",
"class-transformer": "^0.5.1",
"class-validator": "0.13.2",
"cron-parser": "^4.2.1",
"debug": "^4.3.3",
"diskusage": "^1.1.3",
"dotenv": "16.0.0",
"fanart.tv-api": "^2.0.1",
"fast-folder-size": "^1.6.1",
"fastify-static": "4.5.0",
"got": "^12.0.1",
"graphql": "16.3.0",
"graphql-subscriptions": "^2.0.0",
"ical-generator": "^3.2.1",
"mongoose": "6.2.1",
"node-tvdb": "^4.1.0",
"omdb-api-pt": "^2.0.1",
"opensubtitles-api": "^5.1.2",
"p-limit": "^3.1.0",
"p-map": "^4.0.0",
"p-times": "^3.0.0",
"pm2": "^5.1.2",
"reflect-metadata": "^0.1.12",
"rimraf": "3.0.2",
"rxjs": "7.5.4",
"srt-to-vtt": "^1.1.3",
"subsrt": "^1.1.1",
"tmdb": "^2.6.0",
"trakt.tv": "^8.1.1",
"url": "^0.11.0",
"webtorrent-hybrid": "^4.1.3",
"xtorrent": "^1.0.0",
"yts-api-pt": "^2.0.0"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nrwl/eslint-plugin-nx": "13.8.1",
"@nrwl/jest": "13.8.1",
"@nrwl/nest": "13.8.1",
"@nrwl/node": "13.8.1",
"@nrwl/workspace": "13.8.1",
"@types/cheerio": "^0.22.31",
"@types/jest": "27.4.0",
"@types/mongoose": "^5.11.97",
"@types/node": "17.0.17",
"@types/webtorrent": "^0.109.3",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "27.5.1",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"ts-node": "~10.5.0",
"tslint": "~6.1.3",
"typescript": "^4.5.5"
}
}