-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
84 lines (84 loc) · 3.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "sunbird-video-player-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --project=sunbird-video-player-app",
"build": "ng build sunbird-video-player --watch=true",
"test": "ng test sunbird-video-player --code-coverage --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"link-sdk": "npm link @project-sunbird/sunbird-player-sdk && cd projects/sunbird-video-player && npm link @project-sunbird/sunbird-player-sdk && cd ../..",
"link-player": "cd dist/sunbird-video-player && npm link && cd ../.. && npm link @project-sunbird/sunbird-video-player-v9",
"build-lib": "ng build sunbird-video-player",
"build-lib-link": "npm run build-lib && npm run link-player",
"postbuild-lib": "node assets-copy.js",
"mybuild": "npm run build",
"serve": "node assets-copy.js && npm link ./dist/sunbird-video-player && ng serve",
"build-web-component": "npm run build-lib-link && ng build video-player-wc --output-hashing none && node ./build-wc.js",
"schematics:build": "tsc -p tsconfig.schematics.json",
"postschematics:build": "./node_modules/.bin/copyfiles schematics/*/schema.json schematics/*/files/** schematics/collection.json ./dist/sunbird-video-player/"
},
"private": true,
"dependencies": {
"@angular/animations": "14.2.12",
"@angular/common": "14.2.12",
"@angular/compiler": "14.2.12",
"@angular/core": "14.2.12",
"@angular/elements": "^14.2.12",
"@angular/forms": "14.2.12",
"@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "14.2.12",
"@project-sunbird/client-services": "^4.0.1",
"@project-sunbird/sb-styles": "0.0.7",
"@project-sunbird/sunbird-quml-player-v9": "4.9.7",
"@project-sunbird/telemetry-sdk": "0.0.26",
"core-js": "^2.5.4",
"document-register-element": "^1.7.2",
"express-http-proxy": "^1.6.2",
"lodash-es": "^4.17.21",
"ngx-bootstrap": "^6.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"video.js": "7.18.1",
"videojs-contrib-quality-levels": "2.1.0",
"videojs-http-source-selector": "1.1.6",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.2.10",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "14.2.10",
"@angular/compiler-cli": "14.2.12",
"@angular/language-service": "14.2.12",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/video.js": "7.3.11",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"concat": "^1.0.3",
"copyfiles": "^2.4.1",
"eslint": "^8.17.0",
"fs-extra": "^9.1.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-mocha-reporter": "2.2.5",
"ng-packagr": "^14.2.2",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tsickle": "^0.39.1",
"typescript": "~4.6.4"
}
}