This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "@pct-org/graphql-api",
"version": "0.18.1",
"description": "GraphQL API for the PCT environment",
"repository": {
"type": "git",
"url": "https://github.com/pct-org/graphql-api.git"
},
"license": "MIT",
"files": [
"dist/",
"src/"
],
"main": "./dist/src/main.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"postinstall": "yarn build",
"lint": "tslint -p tsconfig.json -c tslint.json",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/src/main"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@nestjs/cli": "7.1.5",
"@nestjs/common": "7.0.9",
"@nestjs/core": "7.0.9",
"@nestjs/graphql": "7.2.1",
"@nestjs/mongoose": "7.0.0",
"@nestjs/platform-express": "7.0.9",
"@nestjs/platform-fastify": "7.0.9",
"@nestjs/serve-static": "2.1.0",
"@pct-org/mongo-models": "^1.8.0",
"apollo-server-fastify": "2.12.0",
"bytes": "^3.1.0",
"class-validator": "0.12.2",
"dotenv": "8.2.0",
"fastify-static": "2.7.0",
"fluent-ffmpeg": "^2.1.2",
"graphql": "14.5.8",
"graphql-subscriptions": "^1.1.0",
"ical-generator": "^1.10.0",
"mongoose": "5.9.12",
"opensubtitles-api": "^5.1.2",
"p-map": "4.0.0",
"reflect-metadata": "^0.1.12",
"rimraf": "3.0.2",
"rxjs": "6.5.5",
"srt-to-vtt": "^1.1.3",
"trakt.tv": "^8.0.0",
"webtorrent-hybrid": "^4.0.1",
"xtorrent": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@nestjs/testing": "7.0.9",
"@types/dotenv": "8.2.0",
"@types/hapi__joi": "17.1.0",
"@types/jest": "25.2.1",
"@types/node": "13.13.5",
"@types/supertest": "2.0.9",
"@types/webtorrent": "0.107.2",
"husky": "4.2.5",
"prettier": "2.0.5",
"supertest": "4.0.2",
"ts-jest": "25.5.0",
"ts-loader": "6.2.2",
"ts-node": "8.10.1",
"tsc-watch": "4.2.3",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.2",
"typescript": "3.8.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-node-externals": "^1.7.2"
}
}