2022-01-19 17:24:11 +01:00
|
|
|
{
|
|
|
|
"name": "openvidu-components-testapp",
|
2022-05-13 14:41:39 +02:00
|
|
|
"version": "2.22.0",
|
2022-01-19 17:24:11 +01:00
|
|
|
"scripts": {
|
|
|
|
"ng": "ng",
|
2022-05-13 12:29:55 +02:00
|
|
|
"start": "ng serve --ssl --configuration development",
|
2022-03-21 16:49:24 +01:00
|
|
|
"start-prod": "npx http-server ./dist/openvidu-components-testapp/ --port 4200",
|
2022-03-21 16:44:52 +01:00
|
|
|
"build": "ng build openvidu-components-testapp --configuration production",
|
2022-01-20 09:58:12 +01:00
|
|
|
"lib:serve": "ng build openvidu-angular --watch",
|
|
|
|
"lib:build": "ng build openvidu-angular --configuration production && cd ./dist/openvidu-angular && npm pack",
|
2022-04-08 13:52:12 +02:00
|
|
|
"lib:copy": "cp dist/openvidu-angular/openvidu-angular-*.tgz ../../openvidu-tutorials/openvidu-call/openvidu-call-front",
|
2022-01-20 09:58:12 +01:00
|
|
|
"lib:test": "ng test openvidu-angular --no-watch --code-coverage",
|
2022-03-21 14:23:50 +01:00
|
|
|
"lib:e2e": "tsc --project ./e2e && npx mocha --recursive --timeout 30000 ./e2e/dist/angular.test.js",
|
2022-03-21 16:33:09 +01:00
|
|
|
"lib:e2e-ci": "cross-env LAUNCH_MODE=CI npm run lib:e2e",
|
2022-04-08 13:52:12 +02:00
|
|
|
"doc:build": "cd projects/openvidu-angular && npx compodoc -p ./doc/tsconfig.doc.json -c ./doc/.compodocrc.json",
|
2022-04-28 13:09:42 +02:00
|
|
|
"doc:clean-copy": "rm -rf ../../openvidu.io-docs/docs/api/openvidu-angular && cp -r ./docs/openvidu-angular/ ../../openvidu.io-docs/docs/api/openvidu-angular",
|
2022-04-08 13:52:12 +02:00
|
|
|
"doc:serve": "cd projects/openvidu-angular && npx compodoc -p ./doc/tsconfig.doc.json --watch --serve -c ./doc/.compodocrc.json",
|
2022-01-24 11:18:23 +01:00
|
|
|
"webcomponent:build": "./node_modules/@angular/cli/bin/ng.js build openvidu-webcomponent --configuration production && node ./openvidu-webcomponent-build.js",
|
2022-03-21 14:23:50 +01:00
|
|
|
"webcomponent:serve-testapp": "npx http-server ./e2e/webcomponent-app/",
|
|
|
|
"webcomponent:e2e": "tsc --project ./e2e && npx mocha --recursive --timeout 30000 ./e2e/dist/webcomponent.test.js",
|
|
|
|
"webcomponent:e2e-ci": "cross-env LAUNCH_MODE=CI npm run webcomponent:e2e",
|
2022-01-24 11:18:23 +01:00
|
|
|
"bundle-report": "ng build openvidu-webcomponent --stats-json --configuration production && webpack-bundle-analyzer dist/openvidu-webcomponent/stats.json",
|
2022-03-21 14:23:50 +01:00
|
|
|
"lint": "ng lint"
|
2022-01-19 17:24:11 +01:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
|
|
|
"@angular/animations": "13.0.0",
|
|
|
|
"@angular/cdk": "13.0.0",
|
|
|
|
"@angular/common": "13.0.0",
|
|
|
|
"@angular/core": "13.0.0",
|
2022-01-24 11:18:23 +01:00
|
|
|
"@angular/flex-layout": "13.0.0-beta.36",
|
2022-01-19 17:24:11 +01:00
|
|
|
"@angular/forms": "13.0.0",
|
|
|
|
"@angular/material": "13.0.0",
|
|
|
|
"@angular/platform-browser": "13.0.0",
|
|
|
|
"@angular/platform-browser-dynamic": "13.0.0",
|
|
|
|
"@angular/router": "13.0.0",
|
|
|
|
"autolinker": "3.14.3",
|
2022-05-13 14:41:39 +02:00
|
|
|
"openvidu-browser": "2.22.0",
|
2022-03-22 16:14:24 +01:00
|
|
|
"rxjs": "7.5.4",
|
2022-01-19 17:24:11 +01:00
|
|
|
"tslib": "2.3.1",
|
|
|
|
"zone.js": "0.11.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-16 12:15:22 +01:00
|
|
|
"@angular-devkit/build-angular": "13.2.5",
|
2022-01-19 17:24:11 +01:00
|
|
|
"@angular/cli": "13.0.1",
|
2022-01-24 11:18:23 +01:00
|
|
|
"@angular/compiler": "13.0.0",
|
2022-01-19 17:24:11 +01:00
|
|
|
"@angular/compiler-cli": "13.0.0",
|
2022-01-24 11:18:23 +01:00
|
|
|
"@angular/elements": "13.0.0",
|
2022-03-23 13:48:17 +01:00
|
|
|
"@compodoc/compodoc": "^1.1.19",
|
2022-03-21 14:23:50 +01:00
|
|
|
"@types/chai": "4.3.0",
|
|
|
|
"@types/mocha": "9.1.0",
|
2022-01-19 17:24:11 +01:00
|
|
|
"@types/node": "16.11.6",
|
2022-05-09 11:13:53 +02:00
|
|
|
"@types/selenium-webdriver": "4.0.20",
|
2022-03-21 14:23:50 +01:00
|
|
|
"chai": "4.3.6",
|
2022-05-09 11:13:53 +02:00
|
|
|
"chromedriver": "101.0.0",
|
2022-01-19 17:24:11 +01:00
|
|
|
"codelyzer": "6.0.2",
|
2022-01-24 11:18:23 +01:00
|
|
|
"concat": "^1.0.3",
|
2022-03-21 14:23:50 +01:00
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"http-server": "14.1.0",
|
2022-01-19 17:24:11 +01:00
|
|
|
"jasmine-core": "3.10.1",
|
|
|
|
"jasmine-spec-reporter": "7.0.0",
|
|
|
|
"karma": "^6.3.9",
|
|
|
|
"karma-chrome-launcher": "3.1.0",
|
|
|
|
"karma-coverage": "^2.0.3",
|
|
|
|
"karma-coverage-istanbul-reporter": "3.0.3",
|
|
|
|
"karma-jasmine": "4.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "1.7.0",
|
|
|
|
"karma-junit-reporter": "2.0.1",
|
|
|
|
"karma-mocha-reporter": "2.2.5",
|
|
|
|
"karma-notify-reporter": "1.3.0",
|
2022-03-21 14:23:50 +01:00
|
|
|
"mocha": "9.2.2",
|
2022-01-19 17:24:11 +01:00
|
|
|
"ng-packagr": "13.0.3",
|
2022-05-09 11:13:53 +02:00
|
|
|
"selenium-webdriver": "4.1.2",
|
2022-01-19 17:24:11 +01:00
|
|
|
"ts-node": "10.4.0",
|
|
|
|
"tslint": "6.1.3",
|
2022-01-24 11:18:23 +01:00
|
|
|
"typescript": "4.4.4",
|
|
|
|
"webpack-bundle-analyzer": "^4.5.0"
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|
|
|
|
}
|