]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
Type models
[github/Chocobozzz/PeerTube.git] / package.json
1 {
2 "name": "peertube",
3 "description": "Prototype of a decentralized video streaming platform using P2P (bittorent) directly in the web browser with WebTorrent and Angular 2.",
4 "version": "0.0.1",
5 "private": true,
6 "licence": "GPLv3",
7 "engines": {
8 "node": ">=4.x"
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"
18 },
19 "scripts": {
20 "build": "npm run build:client:prod",
21 "build:client:dev": "scripty",
22 "build:client:prod": "scripty",
23 "clean": "npm run clean:client",
24 "clean:client": "scripty",
25 "clean:server:test": "scripty",
26 "watch:client": "SCRIPTY_PARALLEL=true scripty",
27 "danger:clean:dev": "scripty",
28 "danger:clean:prod": "scripty",
29 "danger:clean:modules": "scripty",
30 "reset-password": "scripty",
31 "play": "scripty",
32 "dev": "scripty",
33 "start": "node server",
34 "check": "scripty",
35 "upgrade": "scripty",
36 "update-host": "scripty",
37 "test": "scripty",
38 "help": "scripty",
39 "postinstall": "cd client && yarn install"
40 },
41 "dependencies": {
42 "async": "^2.0.0",
43 "bcrypt": "^1.0.2",
44 "bittorrent-tracker": "^9.0.0",
45 "body-parser": "^1.12.4",
46 "concurrently": "^3.1.0",
47 "config": "^1.14.0",
48 "cors": "^2.8.1",
49 "create-torrent": "^3.24.5",
50 "debug": "^2.2.0",
51 "dezalgo": "^1.0.3",
52 "express": "^4.12.4",
53 "express-oauth-server": "2.0.0-b1",
54 "express-validator": "^3.1.0",
55 "fluent-ffmpeg": "^2.1.0",
56 "js-yaml": "^3.5.4",
57 "lodash": "^4.11.1",
58 "magnet-uri": "^5.1.4",
59 "mkdirp": "^0.5.1",
60 "morgan": "^1.5.3",
61 "multer": "^1.1.0",
62 "openssl-wrapper": "^0.3.4",
63 "parse-torrent": "^5.8.0",
64 "password-generator": "^2.0.2",
65 "pg": "^6.1.0",
66 "pg-hstore": "^2.3.2",
67 "request": "^2.81.0",
68 "request-replay": "^1.0.2",
69 "rimraf": "^2.5.4",
70 "safe-buffer": "^5.0.1",
71 "scripty": "^1.5.0",
72 "sequelize": "4.0.0-2",
73 "typescript": "~2.2.0",
74 "winston": "^2.1.1",
75 "ws": "^2.0.0"
76 },
77 "devDependencies": {
78 "@types/async": "^2.0.40",
79 "@types/bcrypt": "^1.0.0",
80 "@types/body-parser": "^1.16.3",
81 "@types/config": "^0.0.32",
82 "@types/express": "^4.0.35",
83 "@types/lodash": "^4.14.64",
84 "@types/mkdirp": "^0.3.29",
85 "@types/morgan": "^1.7.32",
86 "@types/node": "^7.0.18",
87 "@types/request": "^0.0.43",
88 "@types/sequelize": "^4.0.55",
89 "@types/winston": "^2.3.2",
90 "@types/ws": "^0.0.41",
91 "chai": "^3.3.0",
92 "commander": "^2.9.0",
93 "mocha": "^3.0.1",
94 "source-map-support": "^0.4.15",
95 "standard": "^10.0.0",
96 "supertest": "^3.0.0",
97 "tslint": "^5.2.0",
98 "tslint-config-standard": "^5.0.2",
99 "webtorrent": "^0.98.0"
100 },
101 "standard": {
102 "ignore": [
103 "client/"
104 ],
105 "globals": [
106 "alert",
107 "confirm",
108 "it",
109 "after",
110 "afterEach",
111 "before",
112 "beforeEach",
113 "describe",
114 "include"
115 ]
116 },
117 "scripty": {
118 "silent": true
119 }
120 }