-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
108 lines (108 loc) · 3.92 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "sormas",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "concurrently \"ng serve --proxy-config proxy.conf.json\" \"npm run start-proxy\"",
"start-proxy": "npm run start --prefix projects/api-proxy",
"build": "ng build --configuration production --base-href /sormas-angular/",
"analyze-bundle": "ng build --configuration production --stats-json && webpack-bundle-analyzer dist/app/stats.json ",
"extract": "ngx-translate-extract --input ./src --output ./src/assets/i18n/en.json ./src/assets/i18n/de.json --clean --sort --format namespaced-json --format-indentation ' ' --marker _",
"test": "ng test sormas",
"test:ci": "ng test sormas --no-watch --no-progress --browsers=ChromeHeadlessCI",
"e2e": "concurrently \"npm run start-proxy\" \"ng e2e\"",
"e2e:ci": "ng e2e --protractor-config=e2e/protractor-ci.conf.js",
"lint": "ng lint sormas --cache",
"lint:styles": "stylelint \"**/*.scss\"",
"format": "prettier --config ./.prettierrc --write \"src/{app,enviroonments}/**/*{.ts,.html,.scss}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.3",
"@angular/cdk": "^14.0.3",
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/core": "^14.0.3",
"@angular/forms": "^14.0.3",
"@angular/material": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@angular/router": "^14.0.3",
"@asymmetrik/ngx-leaflet": "^8.1.0",
"@bepo65/leaflet.fullscreen": "^2.0.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"alertifyjs": "^1.13.1",
"ckeditor4-angular": "^3.1.0",
"concurrently": "^5.3.0",
"date-fns": "^2.27.0",
"echarts": "^5.2.2",
"leaflet": "^1.7.1",
"leaflet.fullscreen": "^2.2.0",
"lint-staged": "^10.5.3",
"ng-table-virtual-scroll": "^1.3.5",
"ngx-date-fns": "^8.3.0",
"ngx-echarts": "^8.0.1",
"ngx-translate-extract": "^1.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.3",
"@angular-eslint/builder": "^14.0.0-alpha.4",
"@angular-eslint/eslint-plugin": "^14.0.0-alpha.4",
"@angular-eslint/eslint-plugin-template": "^14.0.0-alpha.4",
"@angular-eslint/schematics": "^14.0.0-alpha.4",
"@angular-eslint/template-parser": "^14.0.0-alpha.4",
"@angular/cli": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@angular/localize": "^14.0.3",
"@types/jasmine": "~3.6.0",
"@types/leaflet": "^1.5.19",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"keycloak-angular": "^9.0.0",
"keycloak-js": "^15.1.1",
"ng-packagr": "^14.0.2",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"ts-node": "~8.3.0",
"typescript": "~4.7.4",
"webpack-bundle-analyzer": "^4.4.0"
},
"husky": {},
"lint-staged": {
"*.{ts,html}": [
"npm run format",
"eslint --fix"
],
"**/*.scss": [
"npm run lint:styles"
]
}
}