WIP plugins: install/uninstall
[oweals/peertube.git] / package.json
1 {
2   "name": "peertube",
3   "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
4   "version": "1.3.1",
5   "private": true,
6   "licence": "AGPLv3",
7   "engines": {
8     "node": ">=8.x"
9   },
10   "bin": {
11     "peertube": "dist/server/tools/peertube.js"
12   },
13   "author": {
14     "name": "Chocobozzz",
15     "email": "chocobozzz@cpy.re",
16     "url": "http://github.com/Chocobozzz"
17   },
18   "repository": {
19     "type": "git",
20     "url": "git+https://github.com/Chocobozzz/PeerTube.git"
21   },
22   "typings": "*.d.ts",
23   "scripts": {
24     "e2e": "scripty",
25     "e2e:local": "scripty",
26     "setup:cli": "scripty",
27     "build": "SCRIPTY_PARALLEL=true scripty",
28     "build:server": "scripty",
29     "build:client": "scripty",
30     "clean:client": "scripty",
31     "clean:server": "scripty",
32     "clean:server:test": "scripty",
33     "watch:client": "scripty",
34     "watch:server": "scripty",
35     "plugin:install": "node ./dist/scripts/plugin/install.js",
36     "plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js",
37     "danger:clean:dev": "scripty",
38     "danger:clean:prod": "scripty",
39     "danger:clean:modules": "scripty",
40     "i18n:generate": "scripty",
41     "i18n:xliff2json": "node ./dist/scripts/i18n/xliff2json.js",
42     "i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js",
43     "reset-password": "node ./dist/scripts/reset-password.js",
44     "play": "scripty",
45     "dev": "scripty",
46     "dev:server": "scripty",
47     "dev:client": "scripty",
48     "start": "node dist/server",
49     "start:server": "node dist/server --no-client",
50     "update-host": "node ./dist/scripts/update-host.js",
51     "create-transcoding-job": "node ./dist/scripts/create-transcoding-job.js",
52     "create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js",
53     "test": "scripty",
54     "help": "scripty",
55     "generate-cli-doc": "scripty",
56     "parse-log": "node ./dist/scripts/parse-log.js",
57     "prune-storage": "node ./dist/scripts/prune-storage.js",
58     "optimize-old-videos": "node ./dist/scripts/optimize-old-videos.js",
59     "postinstall": "test -n \"$NOCLIENT\" || (cd client && yarn install --pure-lockfile)",
60     "tsc": "tsc",
61     "commander": "commander",
62     "lint": "npm run travis -- lint",
63     "ng": "ng",
64     "nodemon": "nodemon",
65     "ts-node": "ts-node",
66     "tslint": "tslint",
67     "concurrently": "concurrently",
68     "sasslint": "sass-lint --verbose --no-exit",
69     "sasslint:fix": "sass-lint-auto-fix -c .sass-lint.yml --verbose",
70     "mocha": "mocha",
71     "travis": "scripty",
72     "release": "scripty",
73     "client-report": "scripty"
74   },
75   "husky": {
76     "hooks": {
77       "pre-commit": "lint-staged"
78     }
79   },
80   "lint-staged": {
81     "*.scss": [
82       "sass-lint -c client/.sass-lint.yml",
83       "git add"
84     ],
85     "support/doc/api/*.yaml": [
86       "node ./node_modules/swagger-cli/bin/swagger-cli.js validate support/doc/api/openapi.yaml",
87       "git add"
88     ],
89     "server/tools/README.md": [
90       "npm run generate-cli-doc",
91       "git add"
92     ]
93   },
94   "resolutions": {
95     "@types/bluebird": "3.5.21"
96   },
97   "dependencies": {
98     "apicache": "^1.4.0",
99     "async": "^3.0.1",
100     "async-lru": "^1.1.1",
101     "bcrypt": "3.0.6",
102     "bittorrent-tracker": "^9.0.0",
103     "bluebird": "^3.5.0",
104     "body-parser": "^1.12.4",
105     "bull": "^3.4.2",
106     "bytes": "^3.0.0",
107     "commander": "^2.13.0",
108     "config": "^3.0.0",
109     "cookie-parser": "^1.4.3",
110     "cors": "^2.8.1",
111     "create-torrent": "^3.24.5",
112     "deep-object-diff": "^1.1.0",
113     "express": "^4.12.4",
114     "express-oauth-server": "^2.0.0",
115     "express-rate-limit": "^4.0.4",
116     "express-validator": "^5.0.0",
117     "flat": "^4.1.0",
118     "fluent-ffmpeg": "^2.1.0",
119     "fs-extra": "^8.0.1",
120     "helmet": "^3.12.1",
121     "http-signature": "^1.2.0",
122     "ip-anonymize": "^0.1.0",
123     "ipaddr.js": "1.9.0",
124     "is-cidr": "^3.0.0",
125     "iso-639-3": "^1.0.1",
126     "js-yaml": "^3.5.4",
127     "jsonld": "~1.1.0",
128     "jsonld-signatures": "https://github.com/Chocobozzz/jsonld-signatures#rsa2017",
129     "lodash": "^4.17.10",
130     "magnet-uri": "^5.1.4",
131     "memoizee": "^0.4.14",
132     "morgan": "^1.5.3",
133     "multer": "^1.1.0",
134     "nodemailer": "^6.0.0",
135     "parse-torrent": "^6.0.0",
136     "password-generator": "^2.0.2",
137     "pem": "^1.12.3",
138     "pfeed": "^1.1.6",
139     "pg": "^7.4.1",
140     "prompt": "^1.0.0",
141     "redis": "^2.8.0",
142     "reflect-metadata": "^0.1.12",
143     "request": "^2.81.0",
144     "scripty": "^1.5.0",
145     "sequelize": "5.8.7",
146     "sequelize-typescript": "1.0.0-beta.2",
147     "sharp": "^0.22.0",
148     "sitemap": "^2.1.0",
149     "socket.io": "^2.2.0",
150     "srt-to-vtt": "^1.1.2",
151     "useragent": "^2.3.0",
152     "uuid": "^3.1.0",
153     "validator": "^11.0.0",
154     "webfinger.js": "^2.6.6",
155     "webtorrent": "^0.103.0",
156     "winston": "3.2.1",
157     "ws": "^7.0.0",
158     "youtube-dl": "^2.0.0"
159   },
160   "devDependencies": {
161     "@types/apicache": "^1.2.0",
162     "@types/async": "^3.0.0",
163     "@types/async-lock": "^1.1.0",
164     "@types/bcrypt": "^3.0.0",
165     "@types/bluebird": "3.5.21",
166     "@types/body-parser": "^1.16.3",
167     "@types/bull": "3.4.0",
168     "@types/bytes": "^3.0.0",
169     "@types/chai": "^4.0.4",
170     "@types/chai-json-schema": "^1.4.3",
171     "@types/chai-xml": "^0.3.1",
172     "@types/config": "^0.0.34",
173     "@types/express": "^4.0.35",
174     "@types/express-rate-limit": "^3.3.0",
175     "@types/fluent-ffmpeg": "^2.1.8",
176     "@types/fs-extra": "^7.0.0",
177     "@types/libxmljs": "^0.18.0",
178     "@types/lodash": "^4.14.64",
179     "@types/magnet-uri": "^5.1.1",
180     "@types/maildev": "^0.0.1",
181     "@types/memoizee": "^0.4.2",
182     "@types/mkdirp": "^0.5.1",
183     "@types/mocha": "^5.0.0",
184     "@types/morgan": "^1.7.32",
185     "@types/multer": "^1.3.3",
186     "@types/node": "^10.0.8",
187     "@types/nodemailer": "^6.2.0",
188     "@types/oauth2-server": "^3.0.8",
189     "@types/pem": "^1.9.3",
190     "@types/redis": "^2.8.5",
191     "@types/request": "^2.0.3",
192     "@types/sharp": "^0.22.1",
193     "@types/socket.io": "^2.1.2",
194     "@types/supertest": "^2.0.3",
195     "@types/validator": "^10.9.0",
196     "@types/webtorrent": "^0.98.4",
197     "@types/ws": "^6.0.0",
198     "chai": "^4.1.1",
199     "chai-json-schema": "^1.5.0",
200     "chai-xml": "^0.3.2",
201     "concurrently": "^4.1.0",
202     "husky": "^2.4.0",
203     "libxmljs": "0.19.5",
204     "lint-staged": "^8.0.4",
205     "maildev": "^1.0.0-rc3",
206     "marked-man": "^0.6.0",
207     "mocha": "^6.0.0",
208     "mocha-parallel-tests": "^2.1.0",
209     "nodemon": "^1.18.6",
210     "sass-lint": "^1.12.1",
211     "source-map-support": "^0.5.0",
212     "supertest": "^4.0.2",
213     "swagger-cli": "^2.2.0",
214     "ts-node": "8.2.0",
215     "tslint": "^5.7.0",
216     "tslint-config-standard": "^8.0.1",
217     "typescript": "^3.4.3",
218     "xliff": "^4.0.0"
219   },
220   "scripty": {
221     "silent": true
222   },
223   "sasslintConfig": "client/.sass-lint.yml"
224 }