]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
Admin password stuff
[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 && npm install"
40 },
41 "dependencies": {
42 "async": "^2.0.0",
43 "bcrypt": "^1.0.2",
44 "bittorrent-tracker": "^8.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": "https://github.com/Chocobozzz/express-oauth-server",
54 "express-validator": "^2.11.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.57.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": "^3.27.0",
73 "winston": "^2.1.1",
74 "ws": "^1.1.1"
75 },
76 "devDependencies": {
77 "chai": "^3.3.0",
78 "commander": "^2.9.0",
79 "mocha": "^3.0.1",
80 "standard": "^8.0.0",
81 "supertest": "^2.0.0",
82 "webtorrent": "^0.98.0"
83 },
84 "standard": {
85 "ignore": [
86 "client/"
87 ],
88 "globals": [
89 "alert",
90 "confirm",
91 "it",
92 "after",
93 "afterEach",
94 "before",
95 "beforeEach",
96 "describe",
97 "include"
98 ]
99 },
100 "scripty": {
101 "silent": true
102 }
103 }