2016-03-07 14:48:46 +01:00
|
|
|
{
|
|
|
|
"name": "peertube-client",
|
2024-01-18 09:38:18 +01:00
|
|
|
"version": "6.0.3",
|
2016-03-07 14:48:46 +01:00
|
|
|
"private": true,
|
2019-12-17 15:19:42 +01:00
|
|
|
"license": "AGPL-3.0",
|
2016-03-07 14:48:46 +01:00
|
|
|
"author": {
|
2018-10-03 16:43:57 +02:00
|
|
|
"name": "Chocobozzz",
|
2020-11-12 11:12:41 +01:00
|
|
|
"email": "chocobozzz@framasoft.org",
|
2016-03-07 14:48:46 +01:00
|
|
|
"url": "http://github.com/Chocobozzz"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-08-16 10:57:57 +02:00
|
|
|
"url": "git+https://github.com/Chocobozzz/PeerTube.git"
|
2016-03-07 14:48:46 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-01-21 14:28:28 +01:00
|
|
|
"lint": "npm run lint-ts && npm run lint-scss",
|
2023-07-31 14:34:36 +02:00
|
|
|
"lint-ts": "eslint --cache --ext .ts src/standalone/**/*.ts && npm run ng lint",
|
2021-04-28 16:41:07 +02:00
|
|
|
"lint-scss": "stylelint 'src/**/*.scss'",
|
2017-06-11 15:19:43 +02:00
|
|
|
"webpack": "webpack",
|
2021-08-17 14:42:53 +02:00
|
|
|
"eslint": "eslint",
|
2017-12-12 11:38:02 +01:00
|
|
|
"ng": "ng",
|
2018-05-17 10:55:01 +02:00
|
|
|
"webpack-bundle-analyzer": "webpack-bundle-analyzer",
|
2018-05-31 18:12:15 +02:00
|
|
|
"webdriver-manager": "webdriver-manager",
|
2020-01-21 14:28:28 +01:00
|
|
|
"ngx-extractor": "ngx-extractor",
|
2021-04-28 16:41:07 +02:00
|
|
|
"stylelint": "stylelint"
|
2016-03-07 14:48:46 +01:00
|
|
|
},
|
2023-07-31 14:34:36 +02:00
|
|
|
"workspaces": [
|
|
|
|
"../packages/*"
|
|
|
|
],
|
2018-08-02 15:34:09 +02:00
|
|
|
"typings": "*.d.ts",
|
2017-10-09 14:40:05 +02:00
|
|
|
"devDependencies": {
|
2024-01-05 10:12:28 +01:00
|
|
|
"@angular-devkit/build-angular": "^17.0.9",
|
|
|
|
"@angular-eslint/builder": "^17.1.1",
|
|
|
|
"@angular-eslint/eslint-plugin": "^17.1.1",
|
|
|
|
"@angular-eslint/eslint-plugin-template": "^17.1.1",
|
|
|
|
"@angular-eslint/schematics": "^17.1.1",
|
|
|
|
"@angular-eslint/template-parser": "^17.1.1",
|
|
|
|
"@angular/animations": "^17.0.8",
|
|
|
|
"@angular/cdk": "^17.0.4",
|
|
|
|
"@angular/cli": "^17.0.9",
|
|
|
|
"@angular/common": "^17.0.8",
|
|
|
|
"@angular/compiler": "^17.0.8",
|
|
|
|
"@angular/compiler-cli": "^17.0.8",
|
|
|
|
"@angular/core": "^17.0.8",
|
|
|
|
"@angular/forms": "^17.0.8",
|
|
|
|
"@angular/localize": "^17.0.8",
|
|
|
|
"@angular/platform-browser": "^17.0.8",
|
|
|
|
"@angular/platform-browser-dynamic": "^17.0.8",
|
|
|
|
"@angular/router": "^17.0.8",
|
|
|
|
"@angular/service-worker": "^17.0.8",
|
2022-06-13 14:05:46 +02:00
|
|
|
"@babel/core": "^7.18.5",
|
|
|
|
"@babel/preset-env": "^7.18.2",
|
2023-06-06 14:32:47 +02:00
|
|
|
"@formatjs/intl-locale": "^3.3.1",
|
|
|
|
"@formatjs/intl-pluralrules": "^5.2.2",
|
2024-01-05 10:12:28 +01:00
|
|
|
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
|
|
|
|
"@ng-select/ng-select": "^12.0.4",
|
2021-12-24 15:05:48 +01:00
|
|
|
"@ngx-loading-bar/core": "^6.0.0",
|
|
|
|
"@ngx-loading-bar/http-client": "^6.0.0",
|
|
|
|
"@ngx-loading-bar/router": "^6.0.0",
|
2023-01-19 09:30:05 +01:00
|
|
|
"@peertube/maildev": "^1.2.0",
|
2023-11-06 11:20:23 +01:00
|
|
|
"@peertube/p2p-media-loader-core": "^1.0.15",
|
|
|
|
"@peertube/p2p-media-loader-hlsjs": "^1.0.15",
|
2023-07-31 14:34:36 +02:00
|
|
|
"@peertube/peertube-core-utils": "*",
|
|
|
|
"@peertube/peertube-models": "*",
|
2021-10-26 10:52:14 +02:00
|
|
|
"@peertube/videojs-contextmenu": "^5.5.0",
|
2021-11-29 09:29:36 +01:00
|
|
|
"@peertube/xliffmerge": "^2.0.3",
|
2022-06-08 16:14:24 +02:00
|
|
|
"@popperjs/core": "^2.11.5",
|
2022-06-13 14:05:46 +02:00
|
|
|
"@types/chart.js": "^2.9.37",
|
2019-07-25 10:44:21 +02:00
|
|
|
"@types/core-js": "^2.5.2",
|
2020-01-06 13:06:13 +01:00
|
|
|
"@types/debug": "^4.1.5",
|
2018-07-10 17:47:56 +02:00
|
|
|
"@types/jschannel": "^1.0.0",
|
2019-07-25 10:44:21 +02:00
|
|
|
"@types/linkifyjs": "^2.1.2",
|
2017-12-20 09:04:52 +01:00
|
|
|
"@types/lodash-es": "^4.17.0",
|
2023-10-11 11:11:43 +02:00
|
|
|
"@types/markdown-it": "^13.0.2",
|
2023-02-16 15:17:40 +01:00
|
|
|
"@types/node": "^18.13.0",
|
2024-01-05 10:12:28 +01:00
|
|
|
"@types/qrcode": "^1.5.5",
|
2023-10-11 11:11:43 +02:00
|
|
|
"@types/sanitize-html": "2.9.2",
|
2020-11-10 10:36:50 +01:00
|
|
|
"@types/sha.js": "^2.4.0",
|
2022-06-13 14:05:46 +02:00
|
|
|
"@types/video.js": "^7.3.40",
|
2023-10-11 11:11:43 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
|
|
|
"@typescript-eslint/parser": "^6.7.5",
|
2023-05-25 08:46:13 +02:00
|
|
|
"@wdio/browserstack-service": "^8.10.5",
|
|
|
|
"@wdio/cli": "^8.10.5",
|
|
|
|
"@wdio/local-runner": "^8.10.5",
|
|
|
|
"@wdio/mocha-framework": "^8.10.4",
|
|
|
|
"@wdio/shared-store-service": "^8.10.5",
|
|
|
|
"@wdio/spec-reporter": "^8.10.5",
|
2024-01-05 10:12:28 +01:00
|
|
|
"angularx-qrcode": "17.0.0",
|
2022-11-15 14:17:14 +01:00
|
|
|
"babel-loader": "^9.1.0",
|
2022-06-08 16:14:24 +02:00
|
|
|
"bootstrap": "^5.1.3",
|
2021-05-14 16:56:44 +02:00
|
|
|
"buffer": "^6.0.3",
|
2023-05-25 10:04:32 +02:00
|
|
|
"chart.js": "^4.3.0",
|
|
|
|
"chartjs-plugin-zoom": "~2.0.1",
|
2022-06-13 14:05:46 +02:00
|
|
|
"core-js": "^3.22.8",
|
2021-08-06 16:41:08 +02:00
|
|
|
"css-loader": "^6.2.0",
|
2020-11-19 11:12:01 +01:00
|
|
|
"debug": "^4.3.1",
|
2023-02-16 14:17:00 +01:00
|
|
|
"eslint": "^8.28.0",
|
2023-10-11 11:11:43 +02:00
|
|
|
"eslint-plugin-import": "2.28.1",
|
|
|
|
"eslint-plugin-jsdoc": "^46.8.2",
|
2021-08-17 14:42:53 +02:00
|
|
|
"eslint-plugin-prefer-arrow": "latest",
|
2023-05-25 08:46:13 +02:00
|
|
|
"expect-webdriverio": "^4.2.3",
|
2019-07-25 10:44:21 +02:00
|
|
|
"focus-visible": "^5.0.2",
|
2023-05-25 09:58:27 +02:00
|
|
|
"hls.js": "~1.3",
|
2022-07-27 15:03:09 +02:00
|
|
|
"html-loader": "^4.1.0",
|
2021-05-14 16:56:44 +02:00
|
|
|
"html-webpack-plugin": "^5.3.1",
|
2022-06-13 14:05:46 +02:00
|
|
|
"intl-messageformat": "^10.1.0",
|
2018-07-10 17:47:56 +02:00
|
|
|
"jschannel": "^1.0.2",
|
2022-11-15 14:17:14 +01:00
|
|
|
"linkify-html": "^4.0.2",
|
|
|
|
"linkifyjs": "^4.0.2",
|
2017-12-20 09:04:52 +01:00
|
|
|
"lodash-es": "^4.17.4",
|
2023-10-11 11:11:43 +02:00
|
|
|
"markdown-it": "13.0.2",
|
2021-08-06 16:41:08 +02:00
|
|
|
"mini-css-extract-plugin": "^2.2.0",
|
2023-05-23 11:15:00 +02:00
|
|
|
"ngx-uploadx": "^6.1.0",
|
2018-06-28 15:53:04 +02:00
|
|
|
"path-browserify": "^1.0.0",
|
2022-06-13 14:05:46 +02:00
|
|
|
"postcss": "^8.4.14",
|
2024-01-05 10:12:28 +01:00
|
|
|
"primeng": "^17.3.1",
|
2021-08-17 14:31:30 +02:00
|
|
|
"raw-loader": "^4.0.2",
|
2021-08-06 16:41:08 +02:00
|
|
|
"rxjs": "^7.3.0",
|
2020-11-19 11:12:01 +01:00
|
|
|
"sanitize-html": "^2.1.2",
|
2023-02-16 15:17:40 +01:00
|
|
|
"sass": "^1.58.1",
|
|
|
|
"sass-loader": "^13.2.0",
|
2020-11-10 10:36:50 +01:00
|
|
|
"sha.js": "^2.4.11",
|
2022-11-28 09:16:34 +01:00
|
|
|
"socket.io-client": "^4.5.4",
|
2023-02-16 15:17:40 +01:00
|
|
|
"stylelint": "^15.1.0",
|
2023-05-25 08:46:13 +02:00
|
|
|
"stylelint-config-sass-guidelines": "^10.0.0",
|
2023-10-09 15:33:19 +02:00
|
|
|
"tinykeys": "^2.1.0",
|
2022-06-13 14:05:46 +02:00
|
|
|
"ts-loader": "^9.3.0",
|
2023-07-31 14:34:36 +02:00
|
|
|
"ts-node": "^10.9.1",
|
2022-06-13 14:05:46 +02:00
|
|
|
"tslib": "^2.4.0",
|
2024-01-05 10:12:28 +01:00
|
|
|
"typescript": "~5.2",
|
2022-06-13 14:05:46 +02:00
|
|
|
"video.js": "^7.19.2",
|
|
|
|
"webpack": "^5.73.0",
|
2021-05-27 09:50:58 +02:00
|
|
|
"webpack-bundle-analyzer": "^4.4.2",
|
2023-02-16 15:17:40 +01:00
|
|
|
"webpack-cli": "^5.0.1",
|
2024-01-05 09:43:19 +01:00
|
|
|
"zone.js": "~0.14.2"
|
2021-08-27 11:30:08 +02:00
|
|
|
},
|
2022-01-03 15:18:57 +01:00
|
|
|
"dependencies": {}
|
2021-05-14 16:56:44 +02:00
|
|
|
}
|