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 0
/
package.json
106 lines (106 loc) · 3.11 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
{
"name": "@pct-org/scraper",
"version": "3.7.4",
"description": "Scraper part of PCT environment",
"repository": {
"type": "git",
"url": "https://github.com/pct-org/scraper.git"
},
"license": "MIT",
"files": [
"/dist/**"
],
"main": "./dist/scraper.js",
"module": "./dist/scraper.esm.js",
"bin": {
"scraper": "./dist/scraper.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"postinstall": "yarn build",
"lint": "eslint {src,test}/** ./*.js",
"lint:fix": "yarn lint --fix",
"start": "cross-env NODE_ENV=production node ./dist/scraper.js -m pretty",
"start:debug": "yarn start:dev --inspect-brk",
"start:dev": "cross-env NODE_ENV=development cross-env DEBUG=@pct-org/* babel-node ./src/index.js -m pretty",
"pretest": "npm run build",
"test": "echo 'RUN TESTS'",
"test:watch": "echo 'RUN TESTS'"
},
"resolutions": {
"mongoose": "5.9.12"
},
"dependencies": {
"@pct-org/ettv-api": "^1.0.2",
"@pct-org/eztv-api-pt": "^1.3.6",
"@pct-org/mongo-models": "^1.8.0",
"@pct-org/pop-api": "^0.8.0",
"@pct-org/pop-api-scraper": "0.8.2",
"@pct-org/solidtorrents-api-pt": "1.0.8",
"@pct-org/zooqle": "^1.0.49",
"bytes": "^3.0.0",
"cron-parser": "^2.13.0",
"deepmerge": "^4.2.2",
"dotenv": "8.2.0",
"fanart.tv-api": "^2.0.1",
"gulp": "4.0.2",
"inquirer": "7.1.0",
"mongoose": "5.9.12",
"node-tvdb": "4.1.0",
"omdb-api-pt": "^2.0.1",
"p-map": "4.0.0",
"p-times": "3.0.0",
"parse-torrent": "7.1.2",
"serve-index": "^1.9.1",
"tmdb": "2.5.1",
"trakt.tv": "8.0.0",
"yts-api-pt": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/node": "7.8.7",
"@babel/plugin-external-helpers": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/plugin-transform-strict-mode": "7.8.3",
"@babel/preset-env": "7.9.6",
"@babel/preset-flow": "7.9.0",
"@babel/register": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"babel-plugin-istanbul": "6.0.0",
"chai": "^4.1.2",
"cross-env": "7.0.2",
"del": "5.1.0",
"dredd": "13.1.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-flow-type-plugin": "1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "6.8.0",
"eslint-config-vixo": "^2.0.2",
"express": "^4.16.2",
"flow": "^0.2.3",
"flow-bin": "0.124.0",
"flow-typed": "3.1.0",
"husky": "4.2.5",
"mkdirp": "1.0.4",
"mocha": "7.1.2",
"rollup": "2.8.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"sinon": "9.0.2",
"standard-version": "8.0.0",
"supertest": "4.0.2",
"uglify-es": "^3.3.4"
},
"engines": {
"node": ">=7.10.1"
}
}