]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - package.json
Update webpack stack
[github/Chocobozzz/PeerTube.git] / package.json
... / ...
CommitLineData
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": "SCRIPTY_PARALLEL=true scripty",
21 "build:server": "scripty",
22 "build:client": "scripty",
23 "clean": "npm run clean:client",
24 "clean:client": "scripty",
25 "clean:server:test": "scripty",
26 "watch:client": "scripty",
27 "watch:server": "scripty",
28 "danger:clean:dev": "scripty",
29 "danger:clean:prod": "scripty",
30 "danger:clean:modules": "scripty",
31 "reset-password": "scripty",
32 "play": "scripty",
33 "dev:server": "scripty",
34 "dev:client": "scripty",
35 "start": "node dist/server",
36 "check": "scripty",
37 "upgrade": "scripty",
38 "update-host": "scripty",
39 "test": "scripty",
40 "help": "scripty",
41 "postinstall": "cd client && yarn install",
42 "tsc": "tsc",
43 "nodemon": "nodemon",
44 "ts-node": "ts-node"
45 },
46 "dependencies": {
47 "async": "^2.0.0",
48 "bcrypt": "^1.0.2",
49 "bittorrent-tracker": "^9.0.0",
50 "body-parser": "^1.12.4",
51 "concurrently": "^3.1.0",
52 "config": "^1.14.0",
53 "cors": "^2.8.1",
54 "create-torrent": "^3.24.5",
55 "debug": "^2.2.0",
56 "dezalgo": "^1.0.3",
57 "express": "^4.12.4",
58 "express-oauth-server": "2.0.0-b1",
59 "express-validator": "^3.1.0",
60 "fluent-ffmpeg": "^2.1.0",
61 "js-yaml": "^3.5.4",
62 "lodash": "^4.11.1",
63 "magnet-uri": "^5.1.4",
64 "mkdirp": "^0.5.1",
65 "morgan": "^1.5.3",
66 "multer": "^1.1.0",
67 "openssl-wrapper": "^0.3.4",
68 "parse-torrent": "^5.8.0",
69 "password-generator": "^2.0.2",
70 "pg": "^6.1.0",
71 "pg-hstore": "^2.3.2",
72 "request": "^2.81.0",
73 "request-replay": "^1.0.2",
74 "rimraf": "^2.5.4",
75 "safe-buffer": "^5.0.1",
76 "scripty": "^1.5.0",
77 "sequelize": "4.0.0-2",
78 "ts-node": "^3.0.6",
79 "typescript": "~2.2.0",
80 "validator": "^7.0.0",
81 "winston": "^2.1.1",
82 "ws": "^2.0.0"
83 },
84 "devDependencies": {
85 "@types/async": "^2.0.40",
86 "@types/bcrypt": "^1.0.0",
87 "@types/body-parser": "^1.16.3",
88 "@types/config": "^0.0.32",
89 "@types/express": "^4.0.35",
90 "@types/lodash": "^4.14.64",
91 "@types/magnet-uri": "^5.1.1",
92 "@types/mkdirp": "^0.3.29",
93 "@types/morgan": "^1.7.32",
94 "@types/multer": "^0.0.34",
95 "@types/node": "^7.0.18",
96 "@types/request": "^0.0.43",
97 "@types/sequelize": "^4.0.55",
98 "@types/validator": "^6.2.0",
99 "@types/winston": "^2.3.2",
100 "@types/ws": "^0.0.41",
101 "chai": "^3.3.0",
102 "commander": "^2.9.0",
103 "mocha": "^3.0.1",
104 "nodemon": "^1.11.0",
105 "source-map-support": "^0.4.15",
106 "standard": "^10.0.0",
107 "supertest": "^3.0.0",
108 "tslint": "^5.2.0",
109 "tslint-config-standard": "^5.0.2",
110 "webtorrent": "^0.98.0"
111 },
112 "standard": {
113 "ignore": [
114 "client/"
115 ],
116 "globals": [
117 "alert",
118 "confirm",
119 "it",
120 "after",
121 "afterEach",
122 "before",
123 "beforeEach",
124 "describe",
125 "include"
126 ]
127 },
128 "scripty": {
129 "silent": true
130 }
131}