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