forked from SORMAS-Foundation/SORMAS-Angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.8 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
{
"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 api-client && ng build --prod --base-href /sormas-angular/",
"analyze-bundle": "ng build --prod --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 --webdriverUpdate=false",
"lint": "ng lint sormas --cache",
"tslint": "tslint --project tsconfig.json",
"lint:styles": "stylelint \"**/*.scss\"",
"format": "prettier --config ./.prettierrc --write \"src/{app,enviroonments}/**/*{.ts,.html,.scss}\""
},
"private": true,
"dependencies": {
"@angular/animations": "~11.1.1",
"@angular/cdk": "^11.0.3",
"@angular/common": "~11.1.1",
"@angular/compiler": "~11.1.1",
"@angular/core": "~11.1.1",
"@angular/forms": "~11.1.1",
"@angular/material": "^11.0.3",
"@angular/platform-browser": "~11.1.1",
"@angular/platform-browser-dynamic": "~11.1.1",
"@angular/router": "~11.1.1",
"@asymmetrik/ngx-leaflet": "^8.1.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"alertifyjs": "^1.13.1",
"concurrently": "^5.3.0",
"keycloak-angular": "^8.0.1",
"keycloak-js": "^12.0.1",
"leaflet": "^1.7.1",
"lint-staged": "^10.5.3",
"ng-table-virtual-scroll": "^1.3.5",
"ngx-translate-extract": "^1.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1101.2",
"@angular-eslint/builder": "0.8.0-beta.5",
"@angular-eslint/eslint-plugin": "1.1.0",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.5",
"@angular-eslint/schematics": "^1.1.0",
"@angular-eslint/template-parser": "0.8.0-beta.5",
"@angular/cli": "~11.0.4",
"@angular/compiler-cli": "~11.1.1",
"@angular/localize": "^11.1.1",
"@types/jasmine": "~3.6.0",
"@types/leaflet": "^1.5.19",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"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.0.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^11.0.0",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"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",
"tslint": "~6.1.0",
"typescript": "~4.0.2",
"webpack-bundle-analyzer": "^4.4.0"
},
"husky": {},
"lint-staged": {
"*.{ts,html}": [
"npm run format",
"eslint --fix"
],
"**/*.scss": [
"npm run lint:styles"
]
}
}