-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
126 lines (126 loc) · 4 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "green-city-client",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"config": "ts-node ./scripts/setenv.ts",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"build-stage": "ng build --configuration=stage",
"test": "ng test",
"coverage": "ng test --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"stylelint": "npx stylelint \"src/**/*.scss\"",
"precommit": "lint-staged && ts-node ./scripts/make-private-public.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/google-maps": "16.2.12",
"@angular/localize": "^16.2.12",
"@angular/material": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular/service-worker": "^16.2.12",
"@ctrl/ngx-emoji-mart": "^9.2.0",
"@ng-bootstrap/ng-bootstrap": "^15.0.0",
"@ng-select/ng-select": "^11.2.0",
"@ngrx/effects": "16.3.0",
"@ngrx/router-store": "16.3.0",
"@ngrx/store": "16.3.0",
"@ngrx/store-devtools": "16.3.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@popperjs/core": "^2.11.8",
"@stomp/stompjs": "^6.0.0",
"@types/google-one-tap": "^1.2.6",
"@types/sockjs-client": "^1.5.0",
"@types/stompjs": "^2.3.9",
"angular-imask": "^7.5.0",
"bootstrap": "^4.3.1",
"chart.js": "^2.9.3",
"chartjs-plugin-labels": "^1.1.0",
"google-libphonenumber": "^3.2.34",
"google-oauth-gsi": "^4.0.1",
"hammerjs": "^2.0.8",
"moment": "^2.30.1",
"ng2-file-upload": "^5.0.0",
"ng2-pdf-viewer": "^10.0.0",
"ng2-search-filter": "^0.5.1",
"ng5-slider": "^1.2.4",
"ngx-bootstrap": "^11.0.0",
"ngx-image-cropper": "7.2.1",
"ngx-infinite-scroll": "^16.0.0",
"ngx-page-scroll": "^11.0.0",
"ngx-page-scroll-core": "11.0.0",
"ngx-pagination": "^6.0.3",
"ngx-quill": "23.0.2",
"npm-check-updates": "^16.14.17",
"quill": "^1.3.7",
"quill-blot-formatter": "^1.0.5",
"quill-emoji": "^0.2.0",
"quill-image-resize": "^3.0.9",
"quill-image-resize-module": "^3.0.0",
"quill-mention": "^4.1.0",
"rxjs": "^7.8.1",
"sockjs-client": "^1.5.0",
"tslib": "^2.6.0",
"xlsx": "^0.17.1",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.11",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "^16.2.10",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@types/google-libphonenumber": "^7.4.30",
"@types/google.maps": "^3.55.5",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^18.19.0",
"@types/quill": "^1.3.7",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"codelyzer": "^6.0.2",
"eslint": "^8.57.0",
"husky": "^4.3.8",
"jasmine-core": "5.1.2",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"protractor": "^7.0.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.0",
"typescript": "~4.9.5"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run lint && npm run stylelint && ng test --watch=false --progress=false --code-coverage=true --browsers=ChromeHeadless"
}
}
}