forked from sitcomlab/simport-learning-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.53 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.53 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "simport-learning",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "cd dev && npx ts-node -r tsconfig-paths/register generate_test_trajectory.ts ; ng test",
"test:inferences": "ng test --include src/app/shared-services/inferences/",
"lint": "prettier --loglevel=warn --write src/app && tslint -p . \"src/app/**/*.ts\"",
"e2e": "ng e2e",
"postinstall": "jetifier"
},
"private": true,
"dependencies": {
"@angular/common": "~10.0.0",
"@angular/core": "~10.0.0",
"@angular/forms": "~10.0.0",
"@angular/platform-browser": "~10.0.0",
"@angular/platform-browser-dynamic": "~10.0.0",
"@angular/router": "~10.0.0",
"@asymmetrik/ngx-leaflet": "^8.1.0",
"@babel/helper-validator-option": "^7.12.17",
"@capacitor-community/sqlite": "^2.4.2-5",
"@capacitor/android": "^2.4.0",
"@capacitor/core": "2.4.2",
"@capacitor/ios": "^2.4.0",
"@ionic-native/android-permissions": "^5.31.1",
"@ionic-native/background-geolocation": "^5.28.0",
"@ionic-native/core": "^5.0.0",
"@ionic-native/local-notifications": "^5.28.0",
"@ionic-native/social-sharing": "^5.31.1",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^5.0.0",
"@mapbox/polyline": "^1.1.1",
"@mauron85/cordova-plugin-background-geolocation": "git+https://github.com/noerw/cordova-plugin-background-geolocation.git#e08ab0f491f1cce738e986c0a493378eb3d6ff85",
"@types/moment": "^2.13.0",
"capacitor-file-selector": "0.0.5",
"cordova-plugin-android-permissions": "^1.1.2",
"cordova-plugin-badge": "^0.8.8",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-local-notification": "git+https://github.com/timkellypa/cordova-plugin-local-notifications.git",
"cordova-plugin-x-socialsharing": "^6.0.3",
"density-clustering": "^1.3.0",
"es6-promise-plugin": "^4.2.2",
"gps-to-gpx": "^1.5.1",
"haversine-distance": "^1.2.1",
"leaflet": "^1.7.1",
"leaflet-heatmap": "^1.0.0",
"moment": "^2.29.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.0",
"@angular/cli": "~10.0.5",
"@angular/compiler": "~10.0.0",
"@angular/compiler-cli": "~10.0.0",
"@angular/language-service": "~10.0.0",
"@capacitor/cli": "2.4.0",
"@ionic/angular-toolkit": "^2.3.0",
"@ionic/lab": "3.2.10",
"@turf/distance": "^6.3.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/leaflet": "^1.5.17",
"@types/node": "^12.11.1",
"@types/uuid": "^8.3.0",
"codelyzer": "^6.0.0",
"gpx-parse": "^0.10.4",
"husky": "^4.3.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jetifier": "^1.6.6",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tsconfig-paths": "^3.9.0",
"tslint": "~6.1.0",
"typescript": "~3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/app/**/*.ts": [
"prettier --write",
"tslint -p ."
],
"**/*.{js,html,css,scss,md,json}": "prettier --write"
},
"description": "An Ionic project"
}