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