1
0
Fork 0
peertube/client/package.json

138 lines
4.4 KiB
JSON
Raw Normal View History

2016-03-07 13:48:46 +00:00
{
"name": "peertube-client",
2020-09-08 09:12:05 +00:00
"version": "2.4.0",
2016-03-07 13:48:46 +00:00
"private": true,
2019-12-17 14:19:42 +00:00
"license": "AGPL-3.0",
2016-03-07 13:48:46 +00:00
"author": {
2018-10-03 14:43:57 +00:00
"name": "Chocobozzz",
2020-11-12 10:12:41 +00:00
"email": "chocobozzz@framasoft.org",
2016-03-07 13:48:46 +00:00
"url": "http://github.com/Chocobozzz"
},
"repository": {
"type": "git",
2018-08-16 08:57:57 +00:00
"url": "git+https://github.com/Chocobozzz/PeerTube.git"
2016-03-07 13:48:46 +00:00
},
"scripts": {
2020-01-21 13:28:28 +00:00
"lint": "npm run lint-ts && npm run lint-scss",
2020-06-26 06:37:26 +00:00
"lint-ts": "tslint --project ./tsconfig.app.json -c ./tslint.json 'src/app/**/*.ts' 'src/standalone/**/*.ts'",
2020-01-21 13:28:28 +00:00
"lint-scss": "sass-lint -c .sass-lint.yml",
2017-06-11 13:19:43 +00:00
"webpack": "webpack",
"tslint": "tslint",
"ng": "ng",
"postinstall": "npm rebuild node-sass",
2018-05-17 08:55:01 +00:00
"webpack-bundle-analyzer": "webpack-bundle-analyzer",
2018-05-31 16:12:15 +00:00
"webdriver-manager": "webdriver-manager",
2020-01-21 13:28:28 +00:00
"ngx-extractor": "ngx-extractor",
"sass-lint": "sass-lint"
2016-03-07 13:48:46 +00:00
},
"typings": "*.d.ts",
2017-10-09 12:40:05 +00:00
"devDependencies": {
2020-08-25 12:01:29 +00:00
"@angular-devkit/build-angular": "^0.1001.0-next.6",
"@angular/animations": "^10.1.0-next.8",
2020-06-26 06:37:26 +00:00
"@angular/cdk": "^10.0.0",
"@angular/cli": "^10.1.0-next.6",
"@angular/common": "^10.1.0-next.8",
"@angular/compiler": "^10.1.0-next.8",
"@angular/compiler-cli": "^10.1.0-next.8",
"@angular/core": "^10.1.0-next.8",
"@angular/forms": "^10.1.0-next.8",
"@angular/localize": "^10.1.0-next.8",
"@angular/platform-browser": "^10.1.0-next.8",
"@angular/platform-browser-dynamic": "^10.1.0-next.8",
"@angular/router": "^10.1.0-next.8",
"@angular/service-worker": "^10.1.0-next.8",
2017-12-12 13:45:42 +00:00
"@angularclass/hmr": "^2.1.3",
2018-08-09 07:22:10 +00:00
"@neos21/bootstrap3-glyphicons": "^1.0.1",
2020-06-26 06:37:26 +00:00
"@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@ng-select/ng-select": "^5.0.0",
2019-11-07 08:45:14 +00:00
"@ngx-i18nsupport/ngx-i18nsupport": "^1.1.6",
2020-06-05 08:07:17 +00:00
"@ngx-i18nsupport/tooling": "^8.0.3",
2020-06-26 06:37:26 +00:00
"@ngx-loading-bar/core": "^5.0.0",
"@ngx-loading-bar/http-client": "^5.0.0",
"@ngx-loading-bar/router": "^5.0.0",
2020-05-06 12:48:49 +00:00
"@ngx-meta/core": "^9.0.0",
"@types/chart.js": "^2.9.16",
2019-07-25 08:44:21 +00:00
"@types/core-js": "^2.5.2",
2020-01-06 12:06:13 +00:00
"@types/debug": "^4.1.5",
2020-06-17 09:57:13 +00:00
"@types/hls.js": "^0.13.0",
2019-07-25 08:44:21 +00:00
"@types/jasmine": "^3.3.15",
2018-05-16 17:59:21 +00:00
"@types/jasminewd2": "^2.0.3",
"@types/jschannel": "^1.0.0",
2019-07-25 08:44:21 +00:00
"@types/linkifyjs": "^2.1.2",
"@types/lodash-es": "^4.17.0",
2020-05-06 12:48:49 +00:00
"@types/markdown-it": "^10.0.1",
2020-06-26 06:37:26 +00:00
"@types/node": "^14.0.14",
2020-08-25 12:01:29 +00:00
"@types/sanitize-html": "1.23.3",
"@types/sha.js": "^2.4.0",
2019-01-08 10:26:41 +00:00
"@types/socket.io-client": "^1.4.32",
2020-04-20 06:49:12 +00:00
"@types/video.js": "^7.3.8",
2019-10-21 14:53:46 +00:00
"@types/webtorrent": "^0.107.0",
"angular2-hotkeys": "^2.1.2",
2020-06-26 06:37:26 +00:00
"angularx-qrcode": "10.0.6",
2018-08-09 07:22:10 +00:00
"bootstrap": "^4.1.3",
"buffer": "^5.1.0",
2018-08-27 09:45:58 +00:00
"cache-chunk-store": "^3.0.0",
2020-01-10 09:11:28 +00:00
"chart.js": "^2.9.3",
2020-08-25 12:01:29 +00:00
"codelyzer": "^6.0.0",
2019-07-25 08:44:21 +00:00
"core-js": "^3.1.4",
"css-loader": "^3.1.0",
2020-01-06 12:06:13 +00:00
"debug": "^4.1.1",
2020-05-06 12:48:49 +00:00
"dexie": "^3.0.0",
2018-04-06 14:06:43 +00:00
"extract-text-webpack-plugin": "4.0.0-beta.0",
2020-03-31 13:43:17 +00:00
"file-loader": "^6.0.0",
2019-07-25 08:44:21 +00:00
"focus-visible": "^5.0.2",
"hls.js": "^0.14.16",
2020-03-31 13:43:17 +00:00
"html-loader": "^1.0.0",
"html-webpack-plugin": "^4.0.3",
"https-browserify": "^1.0.0",
2020-08-25 12:01:29 +00:00
"jasmine-core": "~3.6.0",
2020-06-26 06:37:26 +00:00
"jasmine-spec-reporter": "~5.0.0",
"jschannel": "^1.0.2",
2020-06-26 06:37:26 +00:00
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
2020-08-25 12:01:29 +00:00
"karma-jasmine": "~4.0.1",
2020-06-26 06:37:26 +00:00
"karma-jasmine-html-reporter": "^1.5.0",
2018-02-21 15:44:18 +00:00
"linkifyjs": "^2.1.5",
"lodash-es": "^4.17.4",
"markdown-it": "11.x",
2018-08-27 09:45:58 +00:00
"node-sass": "^4.9.3",
2017-12-11 16:36:46 +00:00
"npm-font-source-sans-pro": "^1.0.2",
"p2p-media-loader-hlsjs": "^0.6.2",
"path-browserify": "^1.0.0",
2020-02-07 09:10:18 +00:00
"primeng": "^9.0.0-rc.4",
"process": "^0.11.10",
2020-06-26 06:37:26 +00:00
"protractor": "~7.0.0",
2017-10-09 12:40:05 +00:00
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
2020-03-31 13:43:17 +00:00
"raw-loader": "^4.0.0",
2019-07-24 14:05:59 +00:00
"rxjs": "^6.5.2",
2018-08-27 09:45:58 +00:00
"sanitize-html": "^1.18.4",
2020-01-21 13:28:28 +00:00
"sass-lint": "^1.13.1",
2020-03-31 13:43:17 +00:00
"sass-loader": "8.0.2",
2018-11-15 09:25:33 +00:00
"sass-resources-loader": "^2.0.0",
"sha.js": "^2.4.11",
2019-01-08 10:26:41 +00:00
"socket.io-client": "^2.2.0",
2020-05-06 12:48:49 +00:00
"stream-browserify": "^3.0.0",
2018-11-15 09:25:33 +00:00
"stream-http": "^3.0.0",
2020-05-06 12:48:49 +00:00
"terser-webpack-plugin": "^3.0.0",
2020-06-26 06:37:26 +00:00
"ts-loader": "^8.0.2",
2020-06-05 08:05:29 +00:00
"tslib": "^2.0.0",
2020-06-26 06:37:26 +00:00
"tslint": "~6.1.0",
2019-07-25 08:44:21 +00:00
"tslint-angular": "^3.0.2",
2020-03-31 13:43:17 +00:00
"tslint-config-standard": "^9.0.0",
2020-06-26 06:37:26 +00:00
"typescript": "~3.9.5",
2018-09-21 07:18:28 +00:00
"video.js": "^7",
"videojs-contextmenu-ui": "^5.0.0",
"videojs-contrib-quality-levels": "^2.0.9",
2016-11-07 21:35:37 +00:00
"videojs-dock": "^2.0.2",
2020-08-03 06:56:17 +00:00
"videojs-hotkeys": "^0.2.27",
2019-10-21 14:53:46 +00:00
"videostream": "~3.2.1",
2018-09-21 07:18:28 +00:00
"webpack-bundle-analyzer": "^3.0.2",
2018-07-17 08:25:09 +00:00
"webpack-cli": "^3.0.8",
2020-04-02 12:13:10 +00:00
"webtorrent": "^0.108.1",
2018-09-21 07:18:28 +00:00
"whatwg-fetch": "^3.0.0",
2020-02-07 09:00:34 +00:00
"zone.js": "~0.10.2"
}
2020-02-07 09:00:34 +00:00
}