-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 3.27 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
{
"name": "proximap",
"version": "1.0.0",
"license": "SEE LICENSE IN 'COPYING'",
"repository": {
"type": "git",
"url": "https://github.com/water-fountains/proximap"
},
"description": "Proximap is a responsive web app for finding nearby public infrastructure, and uses drinking fountains as a showcase example.",
"scripts": {
"ng": "ng",
"prestart": "node git.version.js",
"start": "ng serve",
"prebuild": "node git.version.js",
"build": "ng build --configuration production",
"sync_datablue": "node fromDataBlue.js",
"test": "ng test",
"extract-translations": "ngx-translate-extract --input ./src --output ./src/assets/i18n/en.json ./src/assets/i18n/de.json --sort --format namespaced-json --marker _",
"format": "prettier --write 'src/**/*.{js,ts,css,scss,html,json,yml}' && prettier --write '.github/**/*.yml' && prettier --write '*.{js,ts,css,scss,html,json,yml}'",
"lint": "eslint '*/**/*.{js,ts,html}' --fix --cache",
"pr": "npm run format && npm run lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.0.2",
"@angular/cdk": "^12.0.2",
"@angular/common": "^12.0.2",
"@angular/compiler": "^12.0.2",
"@angular/core": "^12.0.2",
"@angular/forms": "^12.0.2",
"@angular/material": "^12.0.2",
"@angular/platform-browser": "^12.0.2",
"@angular/platform-browser-dynamic": "^12.0.2",
"@angular/router": "^12.0.2",
"@kolkov/ngx-gallery": "^1.2.3",
"@ngx-progressbar/core": "5.2.1",
"@ngx-progressbar/http": "5.2.1",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"axios": "^0.21.2",
"core-js": "^2.6.12",
"font-awesome": "^4.7.0",
"geojson": "^0.5.0",
"git-repo-info": "^2.1.1",
"haversine": "^1.1.0",
"js-md5": "^0.7.3",
"lodash": "^4.17.21",
"mapbox-gl": "^2.6.1",
"rxjs": "^6.6.7",
"tassign": "^1.0.0",
"ts-md5": "^1.2.8",
"tslib": "^2.0.0",
"typescript": "4.2.4",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.11",
"@angular-eslint/builder": "12.6.1",
"@angular-eslint/eslint-plugin": "12.1.0",
"@angular-eslint/eslint-plugin-template": "12.6.1",
"@angular-eslint/schematics": "12.1.0",
"@angular-eslint/template-parser": "12.1.0",
"@angular/cli": "^12.0.2",
"@angular/compiler-cli": "^12.0.2",
"@angular/language-service": "^12.0.2",
"@types/geojson": "^7946.0.8",
"@types/hammerjs": "^2.0.40",
"@types/haversine": "^1.1.0",
"@types/jasmine": "^3.10.1",
"@types/jasminewd2": "^2.0.9",
"@types/js-md5": "^0.4.3",
"@types/leaflet": "^1.7.0",
"@types/lodash": "^4.14.175",
"@types/mapbox-gl": "^2.6.0",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-file-progress": "^1.1.1",
"eslint-plugin-unused-imports": "^1.1.2",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.3.6",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "2.4.1",
"surge": "^0.23.0"
}
}