]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - package.json
Server: update deps
[github/Chocobozzz/PeerTube.git] / package.json
CommitLineData
8c308c2b 1{
d148f3b9 2 "name": "peertube",
93534495 3 "description": "Prototype of a decentralized video streaming platform using P2P (bittorent) directly in the web browser with WebTorrent and Angular 2.",
8c308c2b
C
4 "version": "0.0.1",
5 "private": true,
288a1331 6 "licence": "GPLv3",
8c308c2b 7 "engines": {
792b893e 8 "node": ">=4.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": {
fc76359b
C
20 "build": "npm run build:client:prod",
21 "build:client:dev": "scripty",
22 "build:client:prod": "scripty",
031bde86 23 "clean": "npm run clean:client",
fc76359b 24 "clean:client": "scripty",
93534495
C
25 "clean:server:test": "scripty",
26 "watch:client": "SCRIPTY_PARALLEL=true scripty",
82221ac9
C
27 "danger:clean:dev": "scripty",
28 "danger:clean:prod": "scripty",
93534495
C
29 "danger:clean:modules": "scripty",
30 "play": "scripty",
31 "dev": "scripty",
ccfd23df 32 "start": "node server",
792b893e 33 "check": "scripty",
9f540774 34 "upgrade": "scripty",
93d4a3b5 35 "update-host": "scripty",
93534495
C
36 "test": "scripty",
37 "help": "scripty",
98b01bac 38 "postinstall": "cd client && npm install"
8c308c2b
C
39 },
40 "dependencies": {
1a42c9e2 41 "async": "^2.0.0",
a7721e62 42 "bcrypt": "^1.0.2",
02b72dc7 43 "bittorrent-tracker": "^8.0.0",
8c308c2b 44 "body-parser": "^1.12.4",
3474b77c 45 "concurrently": "^3.1.0",
8c308c2b 46 "config": "^1.14.0",
b9ab2e25 47 "cors": "^2.8.1",
052937db 48 "create-torrent": "^3.24.5",
8c308c2b
C
49 "debug": "^2.2.0",
50 "dezalgo": "^1.0.3",
8c308c2b 51 "express": "^4.12.4",
0c1cbbfe 52 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
8c308c2b 53 "express-validator": "^2.11.0",
3a8a8b51 54 "fluent-ffmpeg": "^2.1.0",
e1c8024a 55 "js-yaml": "^3.5.4",
e7ea0979 56 "lodash": "^4.11.1",
052937db 57 "magnet-uri": "^5.1.4",
8c308c2b 58 "mkdirp": "^0.5.1",
8c308c2b 59 "morgan": "^1.5.3",
207fbab4 60 "multer": "^1.1.0",
0890478c 61 "openssl-wrapper": "^0.3.4",
052937db 62 "parse-torrent": "^5.8.0",
bb1e6d0c 63 "password-generator": "^2.0.2",
feb4bdfd
C
64 "pg": "^6.1.0",
65 "pg-hstore": "^2.3.2",
8c308c2b 66 "request": "^2.57.0",
a81e7a22 67 "request-replay": "^1.0.2",
82221ac9 68 "rimraf": "^2.5.4",
4d324488 69 "safe-buffer": "^5.0.1",
575fdcec 70 "scripty": "^1.5.0",
feb4bdfd 71 "sequelize": "^3.27.0",
207fbab4 72 "winston": "^2.1.1",
0890478c 73 "ws": "^1.1.1"
8c308c2b
C
74 },
75 "devDependencies": {
76 "chai": "^3.3.0",
8f68c31a 77 "commander": "^2.9.0",
45b81deb 78 "mocha": "^3.0.1",
94b0853d 79 "standard": "^8.0.0",
bf94b6f0 80 "supertest": "^2.0.0",
a7721e62 81 "webtorrent": "^0.98.0"
8c308c2b
C
82 },
83 "standard": {
3d446a26
C
84 "ignore": [
85 "client/"
86 ],
8c308c2b
C
87 "globals": [
88 "alert",
89 "confirm",
90 "it",
91 "after",
3bcb78b3 92 "afterEach",
8c308c2b 93 "before",
3bcb78b3 94 "beforeEach",
2dd5b570
C
95 "describe",
96 "include"
8c308c2b 97 ]
792b893e
C
98 },
99 "scripty": {
100 "silent": true
8c308c2b
C
101 }
102}