-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.5 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.5 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
{
"name": "mastercoach-fe",
"version": "0.0.0",
"author": "Innovant",
"license": "ISC",
"scripts": {
"serve": "ng serve -o --proxy-config proxy.conf.json",
"serve:staging": "ng serve --host 0.0.0.0 --port 4200 --configuration staging",
"serve:prod": "ng serve --host 0.0.0.0 --port 4200 --configuration production",
"start:staging": "pm2 start 'npm run serve:staging' --name 'ng' --time",
"deploy:staging": "npm run start:staging && pm2 log ng",
"pm2:clean": "pm2 delete all",
"build": "ng build --verbose --progress",
"start": "http-server dist --cors",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format": "prettier --write \"**/*.{ts,scss,html,json,md,css}\""
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "^13.3.5",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/material": "^13.3.5",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@ctrl/ngx-emoji-mart": "^6.2.0",
"@fullcalendar/angular": "^5.11.0",
"@fullcalendar/daygrid": "^5.11.0",
"@fullcalendar/interaction": "^5.11.0",
"@ng-select/ng-select": "^8.3.0",
"@twilio/conversations": "^2.1.0",
"@types/gapi": "0.0.42",
"@types/gapi.auth2": "0.0.56",
"angular2-multiselect-dropdown": "^5.0.4",
"angular2-select": "^1.0.0-beta.3",
"bootstrap": "^5.1.3",
"jquery": "^3.6.0",
"moment": "^2.29.3",
"moment-timezone": "^0.5.34",
"ngx-bootstrap": "^8.0.0",
"ngx-countdown": "^13.0.0",
"ngx-moment": "^6.0.2",
"ngx-smart-modal": "^7.4.1",
"pm2": "^5.2.0",
"popper.js": "^1.16.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"twilio-video": "^2.21.3",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.3",
"@angular/cli": "^14.1.2",
"@angular/compiler-cli": "~13.3.0",
"@types/jasmine": "~3.10.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^17.0.41",
"@types/offscreencanvas": "^2019.7.0",
"@types/twilio-video": "^2.11.0",
"http-server": "^14.1.1",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"prettier": "^2.7.1",
"typescript": "~4.6.2"
}
}