]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - package.json
Bumped to version v0.0.20-alpha
[github/Chocobozzz/PeerTube.git] / package.json
CommitLineData
8c308c2b 1{
d148f3b9 2 "name": "peertube",
6b2ef589 3 "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
fa236ef0 4 "version": "0.0.20-alpha",
8c308c2b 5 "private": true,
288a1331 6 "licence": "GPLv3",
8c308c2b 7 "engines": {
ce33ee01 8 "node": ">=8.x"
288a1331
C
9 },
10 "author": {
11 "name": "Florian Bigard",
12 "email": "florian.bigard@gmail.com",
13 "url": "http://github.com/Chocobozzz"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/Chocobozzz/PeerTube.git"
8c308c2b
C
18 },
19 "scripts": {
66dd264f
C
20 "build": "SCRIPTY_PARALLEL=true scripty",
21 "build:server": "scripty",
22 "build:client": "scripty",
fc76359b 23 "clean:client": "scripty",
80624154 24 "clean:server": "scripty",
93534495 25 "clean:server:test": "scripty",
66dd264f
C
26 "watch:client": "scripty",
27 "watch:server": "scripty",
82221ac9
C
28 "danger:clean:dev": "scripty",
29 "danger:clean:prod": "scripty",
93534495 30 "danger:clean:modules": "scripty",
f96d1df3 31 "reset-password": "node ./dist/scripts/reset-password.js",
93534495 32 "play": "scripty",
93e1258c 33 "dev": "scripty",
66dd264f
C
34 "dev:server": "scripty",
35 "dev:client": "scripty",
75fb0c0b 36 "start": "node dist/server",
f96d1df3 37 "update-host": "node ./dist/scripts/update-host.js",
93534495
C
38 "test": "scripty",
39 "help": "scripty",
5e1c08eb 40 "generate-api-doc": "scripty",
f96d1df3 41 "parse-log": "node ./dist/scripts/parse-log.js",
62be8e11 42 "postinstall": "cd client && yarn install --pure-lockfile",
75fb0c0b 43 "tsc": "tsc",
5e1c08eb 44 "spectacle-docs": "node_modules/spectacle-docs/bin/spectacle.js",
d0e848b7 45 "commander": "commander",
cbca00df 46 "ng": "ng",
1840c2f7 47 "nodemon": "nodemon",
df98563e 48 "ts-node": "ts-node",
18530063 49 "tslint": "tslint",
08535e56 50 "travis": "scripty",
24a8e782
C
51 "release": "scripty",
52 "client-report": "scripty"
8c308c2b
C
53 },
54 "dependencies": {
1a42c9e2 55 "async": "^2.0.0",
f981dae8 56 "async-lru": "^1.1.1",
a7721e62 57 "bcrypt": "^1.0.2",
72329aaa 58 "bittorrent-tracker": "^9.0.0",
6fcd19ba 59 "bluebird": "^3.5.0",
8c308c2b 60 "body-parser": "^1.12.4",
d0e848b7 61 "commander": "^2.13.0",
3474b77c 62 "concurrently": "^3.1.0",
8c308c2b 63 "config": "^1.14.0",
b9ab2e25 64 "cors": "^2.8.1",
052937db 65 "create-torrent": "^3.24.5",
8c308c2b 66 "express": "^4.12.4",
c6720f0b 67 "express-oauth-server": "^2.0.0",
b60e5f38 68 "express-validator": "^4.1.1",
3a8a8b51 69 "fluent-ffmpeg": "^2.1.0",
e1c8024a 70 "js-yaml": "^3.5.4",
ce33ee01
C
71 "jsonld": "^0.5.12",
72 "jsonld-signatures": "https://github.com/Chocobozzz/jsonld-signatures#rsa2017",
94a5ff8a 73 "kue": "^0.11.6",
e7ea0979 74 "lodash": "^4.11.1",
052937db 75 "magnet-uri": "^5.1.4",
8c308c2b 76 "mkdirp": "^0.5.1",
8c308c2b 77 "morgan": "^1.5.3",
207fbab4 78 "multer": "^1.1.0",
ecb4e35f 79 "nodemailer": "^4.4.2",
052937db 80 "parse-torrent": "^5.8.0",
bb1e6d0c 81 "password-generator": "^2.0.2",
e4f97bab 82 "pem": "^1.12.3",
c6720f0b 83 "pg": "^6.4.2",
feb4bdfd 84 "pg-hstore": "^2.3.2",
ecb4e35f 85 "redis": "^2.8.0",
3fd3ab2d 86 "reflect-metadata": "^0.1.10",
0dd079da 87 "request": "^2.81.0",
82221ac9 88 "rimraf": "^2.5.4",
4d324488 89 "safe-buffer": "^5.0.1",
575fdcec 90 "scripty": "^1.5.0",
1f7ab4f3 91 "sequelize": "4.32.1",
3fd3ab2d 92 "sequelize-typescript": "^0.6.1",
1f7ab4f3
C
93 "sharp": "^0.19.0",
94 "ts-node": "3.3.0",
8221fef0 95 "typescript": "^2.5.2",
faab3a84 96 "uuid": "^3.1.0",
bcd1c9e1 97 "validator": "^9.0.0",
e4f97bab 98 "webfinger.js": "^2.6.6",
23e27dd5 99 "winston": "3.0.0-rc1",
1f7ab4f3 100 "ws": "^4.0.0"
8c308c2b
C
101 },
102 "devDependencies": {
65fcc311
C
103 "@types/async": "^2.0.40",
104 "@types/bcrypt": "^1.0.0",
105 "@types/body-parser": "^1.16.3",
0e1dc3e7 106 "@types/chai": "^4.0.4",
bcd1c9e1 107 "@types/config": "^0.0.33",
65fcc311 108 "@types/express": "^4.0.35",
94a5ff8a 109 "@types/kue": "^0.11.8",
65fcc311 110 "@types/lodash": "^4.14.64",
69818c93 111 "@types/magnet-uri": "^5.1.1",
f076daa7 112 "@types/maildev": "^0.0.1",
556ddc31 113 "@types/mkdirp": "^0.5.1",
0e1dc3e7 114 "@types/mocha": "^2.2.42",
65fcc311 115 "@types/morgan": "^1.7.32",
556ddc31 116 "@types/multer": "^1.3.3",
1f7ab4f3 117 "@types/node": "^9.3.0",
ecb4e35f 118 "@types/nodemailer": "^4.3.1",
e4f97bab 119 "@types/pem": "^1.9.3",
ecb4e35f 120 "@types/redis": "^2.8.5",
556ddc31 121 "@types/request": "^2.0.3",
e02643f3 122 "@types/sequelize": "^4.0.55",
e8e12200 123 "@types/sharp": "^0.17.6",
0e1dc3e7 124 "@types/supertest": "^2.0.3",
4d4e5cd4 125 "@types/validator": "^6.2.0",
0e1dc3e7 126 "@types/webtorrent": "^0.98.4",
1f7ab4f3 127 "@types/ws": "^4.0.0",
556ddc31 128 "chai": "^4.1.1",
f076daa7 129 "maildev": "^1.0.0-rc3",
1f7ab4f3 130 "mocha": "^5.0.0",
66dd264f 131 "nodemon": "^1.11.0",
bcd1c9e1 132 "source-map-support": "^0.5.0",
5e1c08eb 133 "spectacle-docs": "^0.9.13",
0dd079da 134 "standard": "^10.0.0",
c70e0710 135 "supertest": "^3.0.0",
b0f9f39e 136 "tslint": "^5.7.0",
53abc4c2 137 "tslint-config-standard": "^7.0.0",
a7721e62 138 "webtorrent": "^0.98.0"
8c308c2b 139 },
792b893e
C
140 "scripty": {
141 "silent": true
8c308c2b
C
142 }
143}