-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.92 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
{
"name": "wci-frontend",
"version": "1.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:local": "ng serve --host local.weclimb.it --ssl --ssl-key ./certs/local.weclimb.it.key --ssl-cert ./certs/local.weclimb.it.crt",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier --write src/**/*.{ts,js,css,html}",
"ngcc": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.1",
"@angular/cdk": "^13.1.1",
"@angular/common": "^13.1.1",
"@angular/compiler": "^13.1.1",
"@angular/core": "^13.1.1",
"@angular/flex-layout": "github:angular/flex-layout-builds",
"@angular/forms": "^13.1.1",
"@angular/material": "^13.1.1",
"@angular/platform-browser": "^13.1.1",
"@angular/platform-browser-dynamic": "^13.1.1",
"@angular/router": "^13.1.1",
"@apollo/client": "^3.5.6",
"@fortawesome/angular-fontawesome": "^0.10.1",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.0",
"@mapbox/togeojson": "^0.16.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"angularx-social-login": "^4.0.1",
"apollo-link-retry": "^2.2.16",
"geolib": "^3.3.3",
"graphql": "^15.5.1",
"js-cookie": "^3.0.1",
"mapbox-gl": "^2.7.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"ng5-slider": "^1.2.6",
"ngx-ellipsis": "^3.1.6",
"ngx-mapbox-gl": "^7.1.2",
"ngx-moment": "^6.0.2",
"ngx-perfect-scrollbar": "^10.1.1",
"ngx-sharebuttons": "^8.0.5",
"ngx-simple-state": "^0.0.2",
"rxjs": "^7.5.5",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.2",
"@angular/cli": "^13.1.2",
"@angular/compiler-cli": "^13.1.1",
"@angular/language-service": "^13.1.1",
"@types/jasmine": "~3.6.3",
"@types/jasminewd2": "~2.0.8",
"@types/lodash": "^4.14.179",
"@types/mapbox-gl": "^2.6.3",
"@types/googlemaps": "^3.43.3",
"@types/node": "^14.14.22",
"codelyzer": "^6.0.2",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^10.5.3",
"ng-packagr": "^13.0.0",
"prettier": "2.3.2",
"protractor": "~7.0.0",
"raw-loader": "^4.0.2",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "prettier --write"
}
}