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