-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.21 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
{
"name": "theatre-front",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"build": "ng build -c production-uk",
"test": "ng test",
"lint": "ng lint",
"lint-css": "stylelint --config .stylelintrc 'src/**/*.scss' --fix",
"e2e": "ng e2e",
"bundle-report": "ng build -c production-uk --stats-json && webpack-bundle-analyzer dist/theatre-front/browser/uk/stats.json",
"build:uk-ua": "ng build -c production-uk",
"build:en-us": "ng build -c production-en",
"dev:ssr": "ng run theatre-front:serve-ssr",
"build:ssr:uk-ua": "ng build -c production-uk && ng run theatre-front:server:production-uk",
"build:ssr:en-us": "ng build -c production-en && ng run theatre-front:server:production-en",
"serve:ssr": "env PORT=4040 LANGUAGE=en node dist/theatre-front/server/en/main.js",
"serve:ssr:uk": "env PORT=4041 LANGUAGE=uk node dist/theatre-front/server/uk/main.js",
"prerender": "ng run theatre-front:prerender",
"i18n": "ng run theatre-front:extract-i18n",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.0.7",
"@angular/cdk": "^11.2.12",
"@angular/common": "^11.0.7",
"@angular/compiler": "^11.0.7",
"@angular/core": "^11.0.7",
"@angular/forms": "^11.0.7",
"@angular/localize": "^11.0.7",
"@angular/platform-browser": "^11.0.7",
"@angular/platform-browser-dynamic": "^11.0.7",
"@angular/platform-server": "^11.0.7",
"@angular/router": "^11.0.7",
"@kolkov/ngx-gallery": "^1.2.3",
"@ng-bootstrap/ng-bootstrap": "^9.1.0",
"@ngu/carousel": "^3.0.2",
"@nguniversal/express-engine": "^11.0.1",
"@types/jquery": "^3.5.5",
"angular-bootstrap-md": "^11.0.0",
"angular-breadcrumb": "^0.5.0",
"angular-calendar": "^0.28.22",
"bootstrap": "^4.3.1",
"class-transformer": "^0.3.1",
"core-js": "^3.1.4",
"date-fns": "^2.0.0-beta.3",
"express": "^4.15.2",
"hammerjs": "^2.0.8",
"jquery": "^3.6.0",
"lottie-web": "^5.7.11",
"ngx-device-detector": "^2.1.1",
"ngx-google-analytics": "^11.1.0",
"ngx-infinite-scroll": "^7.1.1",
"ngx-lottie": "^7.0.1",
"ngx-skeleton-loader": "^4.0.0",
"popper.js": "^1.16.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"rxjs-compat": "^6.5.2",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.12",
"@angular/cli": "^11.2.9",
"@angular/compiler-cli": "^11.0.7",
"@angular/language-service": "^11.0.7",
"@nguniversal/builders": "^11.0.1",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"stylelint": "^13.12.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "4.0.5",
"webpack-bundle-analyzer": "^3.9.0"
}
}