Type functions
[oweals/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     "validator": "^7.0.0",
75     "winston": "^2.1.1",
76     "ws": "^2.0.0"
77   },
78   "devDependencies": {
79     "@types/async": "^2.0.40",
80     "@types/bcrypt": "^1.0.0",
81     "@types/body-parser": "^1.16.3",
82     "@types/config": "^0.0.32",
83     "@types/express": "^4.0.35",
84     "@types/lodash": "^4.14.64",
85     "@types/magnet-uri": "^5.1.1",
86     "@types/mkdirp": "^0.3.29",
87     "@types/morgan": "^1.7.32",
88     "@types/multer": "^0.0.34",
89     "@types/node": "^7.0.18",
90     "@types/request": "^0.0.43",
91     "@types/sequelize": "^4.0.55",
92     "@types/validator": "^6.2.0",
93     "@types/winston": "^2.3.2",
94     "@types/ws": "^0.0.41",
95     "chai": "^3.3.0",
96     "commander": "^2.9.0",
97     "mocha": "^3.0.1",
98     "source-map-support": "^0.4.15",
99     "standard": "^10.0.0",
100     "supertest": "^3.0.0",
101     "tslint": "^5.2.0",
102     "tslint-config-standard": "^5.0.2",
103     "webtorrent": "^0.98.0"
104   },
105   "standard": {
106     "ignore": [
107       "client/"
108     ],
109     "globals": [
110       "alert",
111       "confirm",
112       "it",
113       "after",
114       "afterEach",
115       "before",
116       "beforeEach",
117       "describe",
118       "include"
119     ]
120   },
121   "scripty": {
122     "silent": true
123   }
124 }