-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.98 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
{
"name": "chalender-frontend",
"version": "1.0.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"dev:ssr": "ng run chalender-frontend:serve-ssr",
"serve:ssr": "node dist/chalender-frontend/server/main.js",
"build:ssr": "ng build && ng run chalender-frontend:server",
"build:ssr:staging": "ng build -c=staging && ng run chalender-frontend:server:staging",
"build:ssr:prod": "ng build -c=prod && ng run chalender-frontend:server:prod",
"prerender": "ng run chalender-frontend:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.6",
"@angular/cdk": "^17.3.6",
"@angular/common": "^17.3.6",
"@angular/compiler": "^17.3.6",
"@angular/core": "^17.3.6",
"@angular/forms": "^17.3.6",
"@angular/platform-browser": "^17.3.6",
"@angular/platform-browser-dynamic": "^17.3.6",
"@angular/platform-server": "^17.3.6",
"@angular/router": "^17.3.6",
"@angular/service-worker": "^17.3.6",
"@angular/ssr": "^17.3.6",
"@auth0/angular-jwt": "^5.1.2",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@popperjs/core": "^2.11.6",
"autolinker": "^4.0.0",
"bootstrap": "^5.2.3",
"dayjs": "^1.11.9",
"diff-match-patch": "^1.0.5",
"express": "^4.15.2",
"iframe-resizer": "^4.3.9",
"jwt-decode": "^3.1.2",
"ngx-bootstrap": "^12.0.0",
"ngx-cookie-service-ssr": "^17.1.0",
"ngx-device-detector": "^7.0.0",
"ngx-file-drop": "^16.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.6",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.6",
"@angular/compiler-cli": "^17.3.6",
"@angular/localize": "^17.3.6",
"@types/diff-match-patch": "^1.0.32",
"@types/express": "^4.17.0",
"@types/iframe-resizer": "^3.5.13",
"@types/jasmine": "~5.1.4",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"browser-sync": "^3.0.0",
"eslint": "^8.53.0",
"jasmine-core": "~5.1.2",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.0.1",
"typescript": "5.3.3"
}
}