openvidu/openvidu-components-angular/package.json

111 lines
6.0 KiB
JSON
Raw Normal View History

{
2023-03-15 23:00:53 +01:00
"dependencies": {
2024-09-23 09:55:54 +02:00
"@angular/animations": "18.2.5",
"@angular/cdk": "18.2.5",
"@angular/common": "18.2.5",
"@angular/core": "18.2.5",
"@angular/forms": "18.2.5",
"@angular/material": "18.2.5",
"@angular/platform-browser": "18.2.5",
"@angular/platform-browser-dynamic": "18.2.5",
"@angular/router": "18.2.5",
2024-07-02 19:19:05 +02:00
"@livekit/track-processors": "0.3.2",
2023-03-15 23:00:53 +01:00
"autolinker": "4.0.0",
2024-09-23 09:55:54 +02:00
"livekit-client": "2.5.2",
"rxjs": "7.8.1",
"tslib": "2.7.0",
"zone.js": "^0.14.6"
2023-03-15 23:00:53 +01:00
},
"devDependencies": {
2024-09-23 09:55:54 +02:00
"@angular-devkit/build-angular": "18.2.5",
"@angular/cli": "18.2.5",
"@angular/compiler": "18.2.5",
"@angular/compiler-cli": "18.2.5",
"@angular/elements": "18.2.5",
2024-07-02 19:19:05 +02:00
"@compodoc/compodoc": "^1.1.25",
"@types/dom-mediacapture-transform": "0.1.9",
"@types/dom-webcodecs": "0.1.11",
2024-10-10 20:30:02 +02:00
"@types/jasmine": "^5.1.4",
2024-09-23 09:55:54 +02:00
"@types/node": "20.12.14",
"@types/selenium-webdriver": "4.1.16",
2024-09-23 09:55:54 +02:00
"@types/ws": "^8.5.12",
"chromedriver": "132.0.0",
2023-03-15 23:00:53 +01:00
"concat": "^1.0.3",
"cross-env": "^7.0.3",
2024-09-23 09:55:54 +02:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
2023-03-15 23:00:53 +01:00
"http-server": "14.1.1",
2024-09-23 09:55:54 +02:00
"husky": "^9.1.6",
"jasmine": "^5.3.1",
2024-09-23 09:55:54 +02:00
"jasmine-core": "5.3.0",
2023-03-15 23:00:53 +01:00
"jasmine-spec-reporter": "7.0.0",
2024-09-23 09:55:54 +02:00
"karma": "^6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "^2.2.1",
2023-03-15 23:00:53 +01:00
"karma-coverage-istanbul-reporter": "3.0.3",
2024-09-23 09:55:54 +02:00
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
2023-03-15 23:00:53 +01:00
"karma-junit-reporter": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-notify-reporter": "1.3.0",
2024-09-23 09:55:54 +02:00
"lint-staged": "^15.2.10",
"ng-packagr": "18.2.1",
"npm-watch": "^0.13.0",
"prettier": "3.3.3",
"selenium-webdriver": "4.25.0",
"ts-node": "10.9.2",
2023-03-15 23:00:53 +01:00
"tslint": "6.1.3",
2024-07-02 19:19:05 +02:00
"typescript": "5.4.5",
2024-09-23 09:55:54 +02:00
"webpack-bundle-analyzer": "^4.10.2"
2023-03-15 23:00:53 +01:00
},
"name": "openvidu-components-testapp",
"private": true,
2024-07-02 19:19:05 +02:00
"watch": {
"doc:serve": {
"patterns": [
"projects",
"src"
],
"extensions": "ts,html,scss,css,md",
"quiet": false
}
},
2023-03-15 23:00:53 +01:00
"scripts": {
2024-07-30 18:06:44 +02:00
"start": "ng serve --configuration development --open",
"start-prod": "npx http-server ./dist/openvidu-components-testapp/browser --port 4200",
"start:ssl": "ng serve --ssl --configuration development --host 0.0.0.0 --port 5080",
2023-03-15 23:00:53 +01:00
"build": "ng build openvidu-components-testapp --configuration production",
"bundle-report": "ng build openvidu-webcomponent --stats-json --configuration production && webpack-bundle-analyzer dist/openvidu-webcomponent/stats.json",
2024-07-02 19:19:05 +02:00
"doc:build": "npx compodoc -c ./projects/openvidu-components-angular/doc/.compodocrc.json",
"doc:generate-directives-tutorials": "node ./projects/openvidu-components-angular/doc/scripts/generate-directive-tutorials.js",
"doc:generate-directive-tables": "node ./projects/openvidu-components-angular/doc/scripts/generate-directive-tables.js",
2024-10-15 15:56:47 +02:00
"doc:clean-copy": "rm -rf ../../openvidu.io/docs/docs/reference-docs/openvidu-components-angular && cp -r ./docs/openvidu-components-angular/ ../../openvidu.io/docs/docs/reference-docs/openvidu-components-angular",
2024-07-02 19:19:05 +02:00
"doc:serve": "npx compodoc -c ../openvidu-components-angular/projects/openvidu-components-angular/doc/.compodocrc.json --serve --port 7000",
"doc:serve-watch": "npm-watch doc:serve",
"lib:serve": "ng build openvidu-components-angular --watch",
2024-07-30 18:06:44 +02:00
"lib:build": "ng build openvidu-components-angular --configuration production && cd ./dist/openvidu-components-angular",
2024-07-24 17:02:15 +02:00
"lib:pack": "cd ./dist/openvidu-components-angular && npm pack",
2025-01-27 17:04:11 +01:00
"lib:copy": "cp dist/openvidu-components-angular/openvidu-components-angular-*.tgz ../../openvidu-call/frontend",
2024-07-02 19:19:05 +02:00
"lib:test": "ng test openvidu-components-angular --no-watch --code-coverage",
"e2e:nested-all": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/nested-components/*.test.js",
"e2e:nested-events": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/nested-components/events.test.js",
"e2e:nested-directives": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/nested-components/directives.test.js",
"e2e:webcomponent-all": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/**/*.test.js",
"e2e:webcomponent-directives": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/api-directives.test.js",
"e2e:webcomponent-captions": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/captions.test.js",
"e2e:webcomponent-chat": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/chat.test.js",
"e2e:webcomponent-events": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/events.test.js",
"e2e:webcomponent-media-devices": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/media-devices.test.js",
"e2e:webcomponent-panels": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/panels.test.js",
"e2e:webcomponent-screensharing": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/screensharing.test.js",
"e2e:webcomponent-stream": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/stream.test.js",
"e2e:webcomponent-toolbar": "tsc --project ./e2e && npx jasmine --fail-fast ./e2e/dist/webcomponent-e2e/toolbar.test.js",
2024-07-02 19:19:05 +02:00
"webcomponent:testing-build": "./node_modules/@angular/cli/bin/ng.js build openvidu-webcomponent --configuration testing && node ./openvidu-webcomponent-build.js",
2023-03-15 23:00:53 +01:00
"webcomponent:build": "./node_modules/@angular/cli/bin/ng.js build openvidu-webcomponent --configuration production && node ./openvidu-webcomponent-build.js",
2024-07-29 11:33:18 +02:00
"webcomponent:serve-testapp": "npx http-server ./e2e/webcomponent-app/",
2024-07-30 18:06:44 +02:00
"simulate:multiparty": "livekit-cli load-test --url ws://localhost:7880 --api-key devkey --api-secret secret --room daily-call --publishers 8 --audio-publishers 8 --identity-prefix Participant --identity publisher",
"husky": "cd .. && husky install"
2023-03-15 23:00:53 +01:00
},
"version": "3.1.0"
}