-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.16 KB
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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "rallypointtech",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --prod=true",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"dev:ssr": "ng run rallypointtech:serve-ssr",
"serve:ssr": "node dist/rallypointtech/server/main.js",
"build:ssr": "ng build --prod --aot=true --optimization=true --outputHashing=all && ng run rallypointtech:server:production",
"prerender": "ng run rallypointtech:prerender",
"analyze": "ng build --statsJson=true --namedChunks=false && webpack-bundle-analyzer dist/rallypointtech/browser/stats.json"
},
"private": true,
"dependencies": {
"@angular-material-components/datetime-picker": "^4.0.5",
"@angular-material-components/moment-adapter": "^4.0.1",
"@angular/animations": "^10.1.4",
"@angular/cdk": "^10.2.3",
"@angular/common": "^10.1.4",
"@angular/compiler": "^10.1.4",
"@angular/core": "^10.1.4",
"@angular/forms": "^10.1.4",
"@angular/localize": "^10.1.4",
"@angular/material": "^10.2.3",
"@angular/platform-browser": "^10.1.4",
"@angular/platform-browser-dynamic": "^10.1.4",
"@angular/platform-server": "^10.1.4",
"@angular/router": "^10.1.4",
"@c3voc/clappr-level-selector": "^0.2.1",
"@clappr/hlsjs-playback": "^0.4.1",
"@nguniversal/express-engine": "^10.1.0",
"@types/codeflask": "^1.4.2",
"@types/jwt-decode": "^2.2.1",
"@types/prismjs": "^1.16.1",
"@types/showdown": "^1.9.3",
"@types/socket.io-client": "^1.4.34",
"angular-google-tag-manager": "^1.2.0",
"bootstrap": "^4.5.2",
"clappr": "^0.3.13",
"clappr-ga-events-plugin": "^2.2.0",
"codeflask": "^1.4.1",
"codemirror": "^5.58.1",
"datebook": "^4.1.11",
"domino": "^2.1.6",
"escape-html": "^1.0.3",
"express": "^4.15.2",
"font-awesome": "^4.7.0",
"jwt-decode": "2.2.0",
"moment": "^2.29.0",
"mux.js": "^5.6.4",
"ngx-markdown-editor": "^3.2.4",
"ngx-mat-codemirror": "^9.0.2",
"ngx-scrollbar": "^7.3.0",
"p2p-media-loader-core": "^0.6.2",
"p2p-media-loader-hlsjs": "^0.6.2",
"p2p-media-loader-shaka": "^0.6.2",
"prismjs": "^1.21.0",
"rxjs": "~6.5.4",
"shaka-player": "^3.0.4",
"showdown": "^1.9.1",
"socket.io-client": "^2.3.1",
"tslib": "^2.0.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1000.8",
"@angular/cli": "^10.1.4",
"@angular/compiler-cli": "^10.1.4",
"@nguniversal/builders": "^10.1.0",
"@types/codemirror": "0.0.97",
"@types/events": "^3.0.0",
"@types/express": "^4.17.8",
"@types/jasmine": "^3.5.14",
"@types/jasminewd2": "~2.0.3",
"@types/overlayscrollbars": "^1.12.0",
"codelyzer": "^6.0.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "~3.9.7",
"webpack-bundle-analyzer": "^3.9.0"
}
}