-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.31 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.31 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
106
{
"name": "fleetrouting-app-frontend",
"description": "Angular frontend for Fleet Routing App",
"version": "0.0.0",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"demo": "npm install && ng serve -o",
"start": "ng serve --configuration dev",
"build": "ng build",
"test": "ng test",
"test-coverage": "ng test --no-watch --code-coverage",
"lint": "ng lint",
"style-check": "npx prettier --check .",
"style-fix": "npx prettier --write .",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.12",
"@angular/cdk": "16.2.14",
"@angular/common": "17.3.12",
"@angular/compiler": "17.3.12",
"@angular/core": "17.3.12",
"@angular/forms": "17.3.12",
"@angular/material": "16.2.14",
"@angular/platform-browser": "17.3.12",
"@angular/platform-browser-dynamic": "17.3.12",
"@angular/router": "17.3.12",
"@deck.gl/core": "~8.6.8",
"@deck.gl/google-maps": "~8.6.8",
"@deck.gl/layers": "~8.6.8",
"@googlemaps/routeoptimization": "^0.6.0",
"@ngrx/effects": "^17.2.0",
"@ngrx/entity": "^17.2.0",
"@ngrx/router-store": "^17.2.0",
"@ngrx/schematics": "^17.2.0",
"@ngrx/store": "^17.2.0",
"@ngrx/store-devtools": "^17.2.0",
"@turf/along": "^6.3.0",
"@turf/boolean-crosses": "^6.3.0",
"@turf/boolean-within": "^6.3.0",
"@turf/buffer": "^6.3.0",
"@turf/length": "^6.3.0",
"@turf/line-intersect": "^6.3.0",
"@turf/line-slice": "^6.3.0",
"@turf/simplify": "^6.3.0",
"cheap-ruler": "^2.5.1",
"google-gax": "^4.4.1",
"grpc-web": "^1.2.1",
"jspdf": "^3.0.3",
"jspdf-autotable": "^5.0.2",
"jszip": "^3.5.0",
"lodash": "^4.18.1",
"long": "^5.3.1",
"marked": "^4.0.15",
"nouislider": "^14.6.3",
"pako": "^2.1.0",
"papaparse": "^5.3.1",
"protobufjs": "^7.4.0",
"rxjs": "^6.6.7",
"split.js": "^1.6.2",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.16",
"@angular-eslint/builder": "17.5.3",
"@angular-eslint/eslint-plugin": "17.5.3",
"@angular-eslint/eslint-plugin-template": "17.5.3",
"@angular-eslint/schematics": "17.5.3",
"@angular-eslint/template-parser": "17.5.3",
"@angular/cli": "17.3.15",
"@angular/compiler-cli": "17.3.12",
"@angular/language-service": "17.3.12",
"@angular/service-worker": "17.3.12",
"@types/google.maps": "^3.58.1",
"@types/jasmine": "^5.1.7",
"@types/jasminewd2": "~2.0.3",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.30",
"@types/nouislider": "^9.0.7",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"jasmine-core": "^5.6.0",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "~5.0.0",
"prettier": "2.7.0",
"protractor": "~7.0.0",
"puppeteer": "^24.6.1",
"sass": "^1.86.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}