-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
85 lines (85 loc) · 3.07 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
{
"name": "quantified-self",
"version": "6.14.1",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"ng": "ng",
"start": "ng serve",
"clean": "rm -rf dist",
"build": "ng build --verbose",
"build-beta": "ng build --verbose --configuration beta",
"build-production": "ng build --verbose --configuration production",
"firebase-hosting-beta": "firebase deploy --only hosting:beta",
"firebase-hosting-production": "firebase deploy --only hosting:production",
"build-and-deploy-beta": "npm run clean && npm run build-beta && npm run firebase-hosting-beta",
"build-prod-and-deploy-beta": "npm run clean && npm run build-production && npm run firebase-hosting-beta",
"build-and-deploy-prod": "npm run clean && npm run build-production && npm run firebase-hosting-production",
"test": "ng test --watch=false",
"test-coverage": "ng test --watch=false --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points --tsconfig './src/tsconfig.app.json'"
},
"private": true,
"dependencies": {
"@agm/core": "^3.0.0-beta.0",
"@amcharts/amcharts4": "4.10.22",
"@angular/animations": "12.2.7",
"@angular/cdk": "^12.2.7",
"@angular/common": "12.2.7",
"@angular/compiler": "12.2.7",
"@angular/core": "12.2.7",
"@angular/fire": "7.0.4",
"@angular/forms": "12.2.7",
"@angular/material": "^12.2.7",
"@angular/material-moment-adapter": "^12.2.7",
"@angular/platform-browser": "12.2.7",
"@angular/platform-browser-dynamic": "12.2.7",
"@angular/platform-server": "12.2.7",
"@angular/router": "12.2.7",
"@angular/service-worker": "12.2.7",
"@googlemaps/markerclustererplus": "^1.1.0",
"@sentry/angular": "^6.13.2",
"@sentry/tracing": "^6.13.2",
"@sports-alliance/sports-lib": "^5.4.24",
"@types/pako": "^1.0.2",
"fast-deep-equal": "^3.1.3",
"firebase": "^9.1.0",
"leaflet": "^1.7.1",
"leaflet-easybutton": "^2.4.0",
"leaflet-fullscreen": "^1.0.2",
"leaflet-image": "^0.4.0",
"leaflet-providers": "^1.12.0",
"lz-string": "^1.4.4",
"material-design-icons-iconfont": "^6.1.0",
"moment": "^2.29.1",
"rxjs": "^7.3.0",
"webpack": "^5.54.0",
"weeknumber": "^1.2.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.7",
"@angular/cli": "^12.2.7",
"@angular/compiler-cli": "12.2.7",
"@types/googlemaps": "3.39.12",
"@types/jasmine": "3.9.1",
"@types/leaflet": "^1.7.5",
"@types/leaflet-providers": "^1.2.1",
"@types/node": "^16.10.1",
"codelyzer": "^6.0.2",
"first-input-delay": "^0.1.3",
"jasmine-core": "~3.9.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"ts-node": "~10.2.1",
"tslint": "~6.1.3",
"typescript": "4.3.5"
}
}