This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.27 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.27 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
107
108
{
"name": "webapp",
"version": "2.1.0",
"scripts": {
"analyze": "ng build --prod --stats-json && webpack-bundle-analyzer dist/webapp/stats.json",
"build": "ng build",
"build:prod": "NODE_ENV=production ng build --prod",
"e2e": "ng e2e",
"format": "prettier --config .prettierrc --write \"src/**/*.{js,ts,json,md,css,html}\"",
"generate-icons": "svg-to-ts",
"lint": "eslint --color --fix -c .eslintrc.js --ext .ts ./src/app",
"ng": "ng",
"start": "ng serve",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular-material-components/datetime-picker": "^4.0.7",
"@angular/animations": "~10.2.4",
"@angular/cdk": "~10.2.4",
"@angular/common": "~10.2.4",
"@angular/compiler": "~10.2.4",
"@angular/core": "~10.2.4",
"@angular/forms": "~10.2.4",
"@angular/material": "^10.2.4",
"@angular/platform-browser": "~10.2.4",
"@angular/platform-browser-dynamic": "~10.2.4",
"@angular/router": "~10.2.4",
"@auth0/angular-jwt": "^5.0.2",
"@deck.gl/core": "^8.4.8",
"@deck.gl/layers": "^8.4.8",
"@deck.gl/mapbox": "^8.4.8",
"@types/file-saver": "^2.0.1",
"@types/lodash-es": "^4.17.4",
"autoprefixer": "^10.2.4",
"chart.js": "^2.9.4",
"file-saver": "^2.0.5",
"keycloak-angular": "^8.1.0",
"keycloak-js": "^10.0.2",
"lodash-es": "^4.17.21",
"luxon": "^1.26.0",
"mapbox-gl": "^1.13.1",
"ngx-clipboard": "~12.2.0",
"ngx-mapbox-gl": "^4.8.1",
"postcss": "^8.2.6",
"rxjs": "~6.6.6",
"tailwindcss": "^2.0.3",
"tslib": "^2.1.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.1",
"@angular-devkit/build-angular": "~0.1002.3",
"@angular-eslint/eslint-plugin": "^1.2.0",
"@angular/cli": "^10.2.3",
"@angular/compiler-cli": "~10.2.4",
"@angular/language-service": "~10.2.4",
"@ngneat/svg-icon": "^2.3.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/mapbox-gl": "^2.1.0",
"@types/node": "^12.20.4",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~5.2.3",
"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",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.1.0",
"postcss-scss": "^3.0.4",
"protractor": "~7.0.0",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"svg-to-ts": "^5.0.0",
"ts-node": "~9.0.0",
"typescript": "~4.0.7"
},
"svg-to-ts": {
"generateType": "false",
"delimiter": "KEBAB",
"conversionType": "files",
"iconsFolderName": "svg",
"prefix": "app",
"srcFiles": [
"./src/assets/svg/*.svg"
],
"outputDirectory": "./src/app",
"svgoConfig": {
"plugins": [
{
"removeDimensions": true,
"cleanupAttrs": true
}
]
}
}
}