]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - package.json
Add a loader animation when loading the videos list
[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": {
86435b9b 8 "node": ">=4.2.0"
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": {
93534495
C
20 "build": "npm run build:client",
21 "build:client": "SCRIPTY_PARALLEL=true scripty",
22 "build:client:sass": "scripty",
23 "build:client:tsc": "scripty",
031bde86 24 "clean": "npm run clean:client",
93534495
C
25 "clean:client": "SCRIPTY_PARALLEL=true scripty",
26 "clean:client:sass": "scripty",
27 "clean:client:tsc": "scripty",
28 "clean:server:test": "scripty",
29 "watch:client": "SCRIPTY_PARALLEL=true scripty",
cd0e4b1a 30 "watch:client:livereload": "scripty",
93534495
C
31 "watch:client:sass": "scripty",
32 "watch:client:tsc": "scripty",
33 "danger:clean:server": "scripty",
34 "danger:clean:modules": "scripty",
35 "play": "scripty",
36 "dev": "scripty",
ccfd23df
C
37 "livereload": "livereload ./client",
38 "start": "node server",
93534495
C
39 "test": "scripty",
40 "help": "scripty",
98b01bac 41 "postinstall": "cd client && npm install"
8c308c2b
C
42 },
43 "dependencies": {
44 "async": "^1.2.1",
02b72dc7 45 "bittorrent-tracker": "^8.0.0",
8c308c2b 46 "body-parser": "^1.12.4",
2c4a0b5d 47 "concurrently": "^2.0.0",
8c308c2b 48 "config": "^1.14.0",
8c308c2b
C
49 "debug": "^2.2.0",
50 "dezalgo": "^1.0.3",
51 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
52 "express": "^4.12.4",
0c1cbbfe 53 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
8c308c2b 54 "express-validator": "^2.11.0",
3a8a8b51 55 "fluent-ffmpeg": "^2.1.0",
e1c8024a 56 "js-yaml": "^3.5.4",
e7ea0979 57 "lodash": "^4.11.1",
8c308c2b
C
58 "mkdirp": "^0.5.1",
59 "mongoose": "^4.0.5",
60 "morgan": "^1.5.3",
207fbab4 61 "multer": "^1.1.0",
02b72dc7 62 "node-ipc": "^7.0.0",
dd00473a 63 "openssl-wrapper": "^0.2.3",
bb1e6d0c 64 "password-generator": "^2.0.2",
8c308c2b 65 "request": "^2.57.0",
a81e7a22 66 "request-replay": "^1.0.2",
207fbab4 67 "segfault-handler": "^1.0.0",
4429bba6 68 "ursa": "^0.9.1",
ce9526fb 69 "validator": "^5.0.0",
788a7e02 70 "webtorrent": "^0.93.2",
207fbab4 71 "winston": "^2.1.1",
b33d09c1 72 "ws": "^1.0.1"
8c308c2b
C
73 },
74 "devDependencies": {
75 "chai": "^3.3.0",
cd0e4b1a 76 "livereload": "^0.4.1",
8c308c2b 77 "mocha": "^2.3.3",
ccfd23df 78 "node-sass": "^3.4.2",
93534495 79 "scripty": "^1.5.0",
bc503c2a 80 "standard": "^7.0.1",
8c308c2b
C
81 "supertest": "^1.1.0"
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
C
97 ]
98 }
99}